/external/apache-xml/src/main/java/org/apache/xpath/patterns/ |
D | ContextMatchStepPattern.java | 90 XObject score = NodeTest.SCORE_NONE; in executeRelativePathPattern() 121 if (score != NodeTest.SCORE_NONE) in executeRelativePathPattern() 128 score = NodeTest.SCORE_NONE; in executeRelativePathPattern() 149 if (score != NodeTest.SCORE_NONE) in executeRelativePathPattern() 154 if (score != NodeTest.SCORE_NONE) in executeRelativePathPattern()
|
D | StepPattern.java | 39 public class StepPattern extends NodeTest implements SubContextList, ExpressionOwner 343 return NodeTest.SCORE_NONE; in execute() 386 if (m_whatToShow == NodeTest.SHOW_BYFUNCTION) in execute() 393 return NodeTest.SCORE_NONE; in execute() 400 if (score == NodeTest.SCORE_NONE) in execute() 401 return NodeTest.SCORE_NONE; in execute() 406 return NodeTest.SCORE_NONE; in execute() 444 if (NodeTest.SCORE_NONE != super.execute(xctxt, child)) in checkProximityPosition() 543 if (NodeTest.SCORE_NONE != super.execute(xctxt, child)) in getProximityPosition() 669 XObject score = NodeTest.SCORE_NONE; in executeRelativePathPattern() [all …]
|
D | NodeTest.java | 38 public class NodeTest extends Expression class 199 public NodeTest(int whatToShow, String namespace, String name) in NodeTest() method in NodeTest 210 public NodeTest(int whatToShow) in NodeTest() method in NodeTest 223 NodeTest nt = (NodeTest)expr; in deepEquals() 257 public NodeTest(){} in NodeTest() method in NodeTest
|
D | UnionPattern.java | 127 if (score != NodeTest.SCORE_NONE) in execute() 138 bestScore = NodeTest.SCORE_NONE; in execute()
|
D | NodeTestFilter.java | 38 void setNodeTest(NodeTest nodeTest); in setNodeTest()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | DescendantIterator.java | 33 import org.apache.xpath.patterns.NodeTest; 272 || NodeTest.WILD.equals(localName) in setRoot() 273 || NodeTest.WILD.equals(namespace)) in setRoot() 313 || localName == NodeTest.WILD in asNode() 314 || namespace == NodeTest.WILD) in asNode()
|
D | UnionChildIterator.java | 26 import org.apache.xpath.patterns.NodeTest; 123 if (score != NodeTest.SCORE_NONE) in acceptNode()
|
D | MatchPatternIterator.java | 31 import org.apache.xpath.patterns.NodeTest; 310 System.out.println("skip: "+(score == NodeTest.SCORE_NONE)); in acceptNode() 314 return (score == NodeTest.SCORE_NONE) ? DTMIterator.FILTER_SKIP in acceptNode()
|
D | PredicatedNodeTest.java | 32 import org.apache.xpath.patterns.NodeTest; 34 public abstract class PredicatedNodeTest extends NodeTest implements SubContextList 473 if (score != NodeTest.SCORE_NONE) in acceptNode()
|
D | WalkerFactory.java | 35 import org.apache.xpath.patterns.NodeTest; 905 pat.setLocalName(NodeTest.WILD); in loadSteps()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tree.Tests.pas | 1314 NodeTest: IRewriteRuleNodeStream; 1317 NodeTest := TRewriteRuleNodeStream.Create(CreateTreeAdaptor, Description); 1319 CheckFalse(NodeTest.HasNext); 1320 CheckEquals(Description, NodeTest.Description); 1321 CheckEquals(NodeTest.Size, 0); 1322 NodeTest.Reset; 1323 CheckEquals(NodeTest.Size, 0); 1324 NodeTest.NextNode; 1331 NodeTest: IRewriteRuleNodeStream; 1334 NodeTest := TRewriteRuleNodeStream.Create(CreateTreeAdaptor, Description); [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 31 import org.apache.xpath.patterns.NodeTest; 84 public boolean visitStep(ExpressionOwner owner, NodeTest step) in visitStep()
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | OpMap.java | 25 import org.apache.xpath.patterns.NodeTest; 404 return NodeTest.WILD; in getStepNS() 450 return NodeTest.WILD; in getStepLocalName()
|
D | Compiler.java | 61 import org.apache.xpath.patterns.NodeTest; 782 return NodeTest.SHOW_BYFUNCTION; in getWhatToShow()
|
D | XPathParser.java | 1786 NodeTest(axesType); in Basis() 1830 protected void NodeTest(int axesType) throws javax.xml.transform.TransformerException in NodeTest() method in XPathParser 2357 NodeTest(axesType); in AbbreviatedNodeTestStep()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | TemplateList.java | 36 import org.apache.xpath.patterns.NodeTest; 398 if (ex instanceof NodeTest) in getPriorityOrScore() 400 return ((NodeTest) ex).getDefaultScore(); in getPriorityOrScore() 559 if ((head.m_stepPattern.execute(xctxt, targetNode, dtm, expTypeID) != NodeTest.SCORE_NONE) in getTemplateFast() 617 if ((head.m_stepPattern.execute(xctxt, targetNode) != NodeTest.SCORE_NONE) in getTemplate() 688 if ((head.m_stepPattern.execute(xctxt, targetNode) != NodeTest.SCORE_NONE) in getTemplate()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/ |
D | NodeTest.java | 22 public class NodeTest extends TestCase { class
|