HomeSort by relevance Sort by last modified time
    Searched refs:NodeTest (Results 1 - 25 of 26) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
NodeTestFilter.java 35 * @param nodeTest Reference to a NodeTest that may be used to predetermine
38 void setNodeTest(NodeTest nodeTest);
ContextMatchStepPattern.java 52 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
53 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
54 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
55 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
56 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
77 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
78 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
79 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
80 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
81 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}
    [all...]
StepPattern.java 39 public class StepPattern extends NodeTest implements SubContextList, ExpressionOwner
141 * Reference to nodetest and predicate for
178 * Set the reference to nodetest and predicate for
194 * Get the reference to nodetest and predicate for
322 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
323 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
324 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
325 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
326 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
343 return NodeTest.SCORE_NONE
    [all...]
NodeTest.java 19 * $Id: NodeTest.java 468655 2006-10-28 07:12:06Z minchau $
38 public class NodeTest extends Expression
155 * The match score if the pattern consists of just a NodeTest.
178 * other than just a NodeTest or just a qname.
192 * Construct an NodeTest that tests for namespaces and node names.
199 public NodeTest(int whatToShow, String namespace, String name)
205 * Construct an NodeTest that doesn't test for node names.
210 public NodeTest(int whatToShow)
223 NodeTest nt = (NodeTest)expr
    [all...]
UnionPattern.java 109 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
110 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
111 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
112 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
113 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
127 if (score != NodeTest.SCORE_NONE)
138 bestScore = NodeTest.SCORE_NONE;
  /external/webkit/Source/WebCore/xml/
XPathGrammar.y 62 Step::NodeTest* nodeTest;
97 %type <nodeTest> NodeTest
184 NodeTest OptionalPredicateList
205 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI), *$2);
208 $$ = new Step(Step::ChildAxis, Step::NodeTest(Step::NodeTest::NameTest, localName, namespaceURI));
213 AxisSpecifier NodeTest OptionalPredicateLis
    [all...]
XPathStep.h 53 class NodeTest {
60 NodeTest(Kind kind) : m_kind(kind) {}
61 NodeTest(Kind kind, const String& data) : m_kind(kind), m_data(data) {}
62 NodeTest(Kind kind, const String& data, const String& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) {}
79 Step(Axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates = Vector<Predicate*>());
87 const NodeTest& nodeTest() const { return m_nodeTest; }
95 String namespaceFromNodetest(const String& nodeTest) const;
98 NodeTest m_nodeTest
    [all...]
XPathParser.h 91 void registerNodeTest(Step::NodeTest*);
92 void deleteNodeTest(Step::NodeTest*);
125 HashSet<Step::NodeTest*> m_nodeTests;
XPathStep.cpp 44 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates)
46 , m_nodeTest(nodeTest)
78 && first->m_nodeTest.kind() == Step::NodeTest::AnyNodeTest
85 // Optimize the common case of "//" AKA /descendant-or-self::node()/child::NodeTest to /descendant::NodeTest.
88 first->m_nodeTest = Step::NodeTest(second->m_nodeTest.kind(), second->m_nodeTest.data(), second->m_nodeTest.namespaceURI());
155 // Evaluate NodeTest without considering merged predicates.
156 static inline bool nodeMatchesBasicTest(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 31 import org.apache.xpath.patterns.NodeTest;
84 public boolean visitStep(ExpressionOwner owner, NodeTest step)
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionChildIterator.java 26 import org.apache.xpath.patterns.NodeTest;
55 * @param test reference to a NodeTest, which will be added
123 if (score != NodeTest.SCORE_NONE)
DescendantIterator.java 33 import org.apache.xpath.patterns.NodeTest;
270 // NodeTest.debugWhatToShow(what);
272 || NodeTest.WILD.equals(localName)
273 || NodeTest.WILD.equals(namespace))
311 // NodeTest.debugWhatToShow(what);
313 || localName == NodeTest.WILD
314 || namespace == NodeTest.WILD)
MatchPatternIterator.java 31 import org.apache.xpath.patterns.NodeTest;
310 System.out.println("skip: "+(score == NodeTest.SCORE_NONE));
314 return (score == NodeTest.SCORE_NONE) ? DTMIterator.FILTER_SKIP
PredicatedNodeTest.java 32 import org.apache.xpath.patterns.NodeTest;
34 public abstract class PredicatedNodeTest extends NodeTest implements SubContextList
473 if (score != NodeTest.SCORE_NONE)
WalkerFactory.java 35 import org.apache.xpath.patterns.NodeTest;
679 // ? namespace.equals(NodeTest.WILD) : false;
681 // boolean isWild = (null != localname) ? localname.equals(NodeTest.WILD) : false;
905 pat.setLocalName(NodeTest.WILD);
941 // We need to keep the new nodetest from affecting the score...
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java 25 import org.apache.xpath.patterns.NodeTest;
389 * @return The step's namespace, NodeTest.WILD, or null for null namespace.
404 return NodeTest.WILD;
450 return NodeTest.WILD;
Compiler.java 61 import org.apache.xpath.patterns.NodeTest;
782 return NodeTest.SHOW_BYFUNCTION;
919 // We need to keep the new nodetest from affecting the score...
    [all...]
XPathParser.java     [all...]
  /libcore/luni/src/test/java/libcore/xml/
NodeTest.java 33 public class NodeTest extends TestCase {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 36 import org.apache.xpath.patterns.NodeTest;
381 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
382 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
383 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
384 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
385 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}, or
398 if (ex instanceof NodeTest)
400 return ((NodeTest) ex).getDefaultScore();
559 if ((head.m_stepPattern.execute(xctxt, targetNode, dtm, expTypeID) != NodeTest.SCORE_NONE)
617 if ((head.m_stepPattern.execute(xctxt, targetNode) != NodeTest.SCORE_NONE
    [all...]
  /prebuilts/tools/common/m2/internal/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /external/jdiff/
xerces.jar 

Completed in 1267 milliseconds

1 2