OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2005 Maksim Orlovich <maksim@kde.org> | 2 * Copyright 2005 Maksim Orlovich <maksim@kde.org> |
3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 static Parser* currentParser; | 119 static Parser* currentParser; |
120 | 120 |
121 unsigned m_nextPos; | 121 unsigned m_nextPos; |
122 String m_data; | 122 String m_data; |
123 int m_lastTokenType; | 123 int m_lastTokenType; |
124 RefPtrWillBeMember<XPathNSResolver> m_resolver; | 124 RefPtrWillBeMember<XPathNSResolver> m_resolver; |
125 | 125 |
126 HashSet<ParseNode*> m_parseNodes; | 126 HashSet<ParseNode*> m_parseNodes; |
127 HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors; | 127 HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors; |
128 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors; | 128 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors; |
129 HashSet<String*> m_strings; | 129 HashSet<OwnPtr<String> > m_strings; |
130 HashSet<Step::NodeTest*> m_nodeTests; | 130 HashSet<OwnPtr<Step::NodeTest> > m_nodeTests; |
131 }; | 131 }; |
132 | 132 |
133 } // XPath | 133 } // XPath |
134 | 134 |
135 } // WebCore | 135 } // WebCore |
136 | 136 |
137 #endif | 137 #endif |
OLD | NEW |