Home | History | Annotate | Download | only in xml

Lines Matching refs:Step

59     WebCore::XPath::Step::Axis axis;
60 WebCore::XPath::Step::NodeTest* nodeTest;
67 WebCore::XPath::Step* step;
92 %type <step> Step
94 %type <step> DescendantOrSelf
99 %type <step> AbbreviatedStep
158 Step
166 RelativeLocationPath '/' Step
172 RelativeLocationPath DescendantOrSelf Step
181 Step:
185 $$ = new Step(Step::ChildAxis, *$1, *$2);
188 $$ = new Step(Step::ChildAxis, *$1);
203 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2);
206 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
214 $$ = new Step($1, *$2, *$3);
217 $$ = new Step($1, *$2);
232 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$3);
235 $$ = new Step($1, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
248 $$ = Step::AttributeAxis;
256 $$ = new Step::NodeTest(Step::NodeTest::AnyNodeTest);
258 $$ = new Step::NodeTest(Step::NodeTest::TextNodeTest);
260 $$ = new Step::NodeTest(Step::NodeTest::CommentNodeTest);
268 $$ = new Step::NodeTest(Step::NodeTest::ProcessingInstructionNodeTest);
275 $$ = new Step::NodeTest(Step::NodeTest::ProcessingInstructionNodeTest, $3->stripWhiteSpace());
317 $$ = new Step(Step::DescendantOrSelfAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest));
325 $$ = new Step(Step::SelfAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest));
331 $$ = new Step(Step::ParentAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest));