Searched refs:NodeTest (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathStep.h53 class NodeTest { class in class:WebCore::XPath::Step
58 explicit NodeTest(Kind kind) : m_kind(kind) { } function in class:WebCore::XPath::Step::NodeTest
59 NodeTest(Kind kind, const AtomicString& data) : m_kind(kind), m_data(data) { } function in class:WebCore::XPath::Step::NodeTest
60 NodeTest(Kind kind, const AtomicString& data, const AtomicString& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { } function in class:WebCore::XPath::Step::NodeTest
63 NodeTest(const NodeTest&);
64 void operator=(const NodeTest&);
66 NodeTest(NodeTest&& other) function in class:WebCore::XPath::Step::NodeTest
73 NodeTest
[all...]
H A DXPathGrammar.y78 %union { Step::NodeTest* nodeTest; }
79 %type <nodeTest> NodeTest
80 %destructor { delete $$; } NodeTest
164 NodeTest OptionalPredicateList
166 std::unique_ptr<Step::NodeTest> nodeTest($1);
187 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), WTF::move(*predicateList));
189 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
192 AxisSpecifier NodeTest OptionalPredicateLis
233 NodeTest: label
[all...]
H A DXPathStep.cpp42 Step::Step(Axis axis, NodeTest nodeTest)
48 Step::Step(Axis axis, NodeTest nodeTest, Vector<std::unique_ptr<Expression>> predicates)
82 if (first.m_nodeTest.m_kind != Step::NodeTest::AnyNodeTest)
94 // Optimize the common case of "//" AKA /descendant-or-self::node()/child::NodeTest to /descendant::NodeTest.
168 // Evaluate NodeTest without considering merged predicates.
169 inline bool nodeMatchesBasicTest(Node& node, Step::Axis axis, const Step::NodeTest& nodeTest)
172 case Step::NodeTest::TextNodeTest:
174 case Step::NodeTest::CommentNodeTest:
176 case Step::NodeTest
[all...]
/macosx-10.10/ruby-106/ruby/lib/rexml/parsers/
H A Dxpathparser.rb206 # NodeTest
244 path = NodeTest( path, n)
275 #NodeTest
284 def NodeTest path, parsed method in class:REXML.Parsers.XPathParser
285 #puts "NodeTest with #{path}"
/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Dxmlswitch.tcl376 if {[NodeTest [lindex $path $i] $context] && \
393 if {[NodeTest [lindex $path $i] $context] && \
425 # xmlswitch::NodeTest --
436 proc xmlswitch::NodeTest {step node} {
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddomxpath.c1106 | NodeTest production
1109 Production(NodeTest)
1182 a = New1( AxisChild, Recurse(NodeTest));
1568 AddChild( a, Recurse(NodeTest));
1889 a = New1( t, Recurse(NodeTest));
1906 a = Recurse(NodeTest);

Completed in 289 milliseconds