Searched refs:xPathExpression (Results 1 – 5 of 5) sorted by relevance
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/xml/ |
D | HasXPath.java | 38 public HasXPath(String xPathExpression, Matcher<String> valueMatcher) { in HasXPath() argument 39 this(xPathExpression, NO_NAMESPACE_CONTEXT, valueMatcher); in HasXPath() 48 …public HasXPath(String xPathExpression, NamespaceContext namespaceContext, Matcher<String> valueMa… in HasXPath() argument 49 this(xPathExpression, namespaceContext, valueMatcher, STRING); in HasXPath() 52 …private HasXPath(String xPathExpression, NamespaceContext namespaceContext, Matcher<String> valueM… in HasXPath() argument 53 this.compiledXPath = compiledXPath(xPathExpression, namespaceContext); in HasXPath() 54 this.xpathString = xPathExpression; in HasXPath() 96 …private static XPathExpression compiledXPath(String xPathExpression, NamespaceContext namespaceCon… 102 return xPath.compile(xPathExpression); 104 throw new IllegalArgumentException("Invalid XPath : " + xPathExpression, e);
|
/external/objenesis/tck/src/test/java/org/objenesis/tck/ |
D | OsgiTest.java | 80 XPathExpression xPathExpression; in getImplementationVersion() local 82 xPathExpression = xPath.compile("/project/parent/version"); in getImplementationVersion() 92 version = xPathExpression.evaluate(doc); in getImplementationVersion()
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
D | ByXPath.java | 71 private final XPathExpression xPathExpression; field in ByXPath 76 xPathExpression = XPATH_COMPILER.compile(xPathString); in ByXPath() 92 Element foundNode = (Element) xPathExpression.evaluate(domNode, XPathConstants.NODE); in find()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | XPathExpressionParser.java | 171 …public void iterateThroughNodeSet(String xPathExpression, NodeHandlingInterface handler) throws XP… in iterateThroughNodeSet() argument 172 iterate(xPathExpression, XPathConstants.NODESET, handler); in iterateThroughNodeSet()
|
D | LDMLUtilities.java | 2294 XPathExpression xPathExpression = xPath.compile(xpath); in XPathAPI_selectNodeList() local 2295 return (NodeList) xPathExpression.evaluate(node, XPathConstants.NODESET); in XPathAPI_selectNodeList() 2307 XPathExpression xPathExpression = xPath.compile(xpath); in XPathAPI_selectNodeList() local 2308 return (NodeList) xPathExpression.evaluate(doc, XPathConstants.NODESET); in XPathAPI_selectNodeList() 2320 XPathExpression xPathExpression = xPath.compile(xpath); in XPathAPI_selectNodeList() local 2321 return (NodeList) xPathExpression.evaluate(context, XPathConstants.NODESET); in XPathAPI_selectNodeList()
|