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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpression.h 47 class XPathExpression : public RefCountedWillBeGarbageCollected<XPathExpression>, public ScriptWrappable {
48 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(XPathExpression);
51 static PassRefPtrWillBeRawPtr<XPathExpression> create()
53 return adoptRefWillBeNoop(new XPathExpression);
56 static PassRefPtrWillBeRawPtr<XPathExpression> createExpression(const String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver>, ExceptionState&);
62 XPathExpression();
XPathExpression.cpp 28 #include "core/xml/XPathExpression.h"
43 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(XPathExpression);
45 XPathExpression::XPathExpression()
49 PassRefPtrWillBeRawPtr<XPathExpression> XPathExpression::createExpression(const String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, ExceptionState& exceptionState)
51 RefPtrWillBeRawPtr<XPathExpression> expr = XPathExpression::create();
61 void XPathExpression::trace(Visitor* visitor)
66 PassRefPtrWillBeRawPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionState& exceptionState
    [all...]
XPathExpression.idl 23 ] interface XPathExpression {
XPathEvaluator.cpp 34 #include "core/xml/XPathExpression.h"
42 PassRefPtrWillBeRawPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver> resolver, ExceptionState& exceptionState)
44 return XPathExpression::createExpression(expression, resolver, exceptionState);
65 RefPtrWillBeRawPtr<XPathExpression> expr = createExpression(expression, resolver, exceptionState);
DocumentXPathEvaluator.h 36 class XPathExpression;
44 static PassRefPtrWillBeRawPtr<XPathExpression> createExpression(DocumentSupplementable&,
XPathEvaluator.h 40 class XPathExpression;
52 PassRefPtrWillBeRawPtr<XPathExpression> createExpression(const String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver>, ExceptionState&);
DocumentXPathEvaluator.idl 22 [MeasureAs=DocumentXPathCreateExpression, RaisesException] XPathExpression createExpression([Default=Undefined] optional DOMString expression,
XPathEvaluator.idl 24 [RaisesException] XPathExpression createExpression([Default=Undefined] optional DOMString expression,
DocumentXPathEvaluator.cpp 30 #include "core/xml/XPathExpression.h"
49 PassRefPtrWillBeRawPtr<XPathExpression> DocumentXPathEvaluator::createExpression(DocumentSupplementable& document,
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 17 // $Id: XPathExpression.java 446598 2006-09-15 12:55:40Z jeremias $
25 * <p><code>XPathExpression</code> provides access to compiled XPath expressions.</p>
27 * <table id="XPathExpression-evaluation" border="1" cellpadding="2">
82 public interface XPathExpression {
87 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
117 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
141 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
170 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation,
XPath.java 180 public XPathExpression compile(String expression)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
XpathResourceXmlLoader.java 8 import javax.xml.xpath.XPathExpression;
22 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile(expression);
StringArrayResourceLoader.java 7 import javax.xml.xpath.XPathExpression;
30 XPathExpression itemXPath = XPathFactory.newInstance().newXPath().compile("item");
PluralResourceLoader.java 7 import javax.xml.xpath.XPathExpression;
37 XPathExpression itemXPath = XPathFactory.newInstance().newXPath().compile("item");
AttrResourceLoader.java 9 import javax.xml.xpath.XPathExpression;
27 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile("/resources/declare-styleable/attr/enum");
  /external/hamcrest/library/src/org/hamcrest/xml/
HasXPath.java 11 import javax.xml.xpath.XPathExpression;
23 private final XPathExpression compiledXPath;
27 * @param xPathExpression XPath expression.
31 public HasXPath(String xPathExpression, Matcher<String> valueMatcher) {
34 compiledXPath = xPath.compile(xPathExpression);
35 this.xpathString = xPathExpression;
38 throw new IllegalArgumentException("Invalid XPath : " + xPathExpression, e);
  /external/objenesis/tck/test/org/objenesis/tck/
OsgiTest.java 25 import javax.xml.xpath.XPathExpression;
51 XPathExpression xPathExpression;
53 xPathExpression = xPath.compile("/project/parent/version");
63 version = xPathExpression.evaluate(doc);
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 28 import javax.xml.xpath.XPathExpression;
391 public XPathExpression compile(String expression)
XPathExpressionImpl.java 48 * The XPathExpression interface encapsulates a (compiled) XPath expression.
53 public class XPathExpressionImpl implements javax.xml.xpath.XPathExpression{
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 46 import javax.xml.xpath.XPathExpression;
71 private final XPathExpression xPathExpression;
76 xPathExpression = XPATH_COMPILER.compile(xPathString);
92 Element foundNode = (Element) xPathExpression.evaluate(domNode, XPathConstants.NODE);
  /external/doclava/src/com/google/doclava/
PageMetadata.java 46 import javax.xml.xpath.XPathExpression;
189 XPathExpression ItempropDescExpr = xpath.compile("/descendant-or-self::*"
200 XPathExpression FirstParaExpr = xpath.compile("//p[not(../../../"
226 XPathExpression ItempropImageExpr = xpath.compile("//*[@itemprop='image']/@src");
233 XPathExpression FirstImgExpr = xpath.compile("//img/@src");
  /external/chromium_org/third_party/WebKit/Source/bindings/core/
core_global_constructors_idls.target.darwin-arm.mk     [all...]
core_global_constructors_idls.target.darwin-arm64.mk     [all...]
core_global_constructors_idls.target.darwin-mips.mk     [all...]
core_global_constructors_idls.target.darwin-mips64.mk     [all...]

Completed in 780 milliseconds

1 2 3 4 5