Searched refs:XPathResult (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathExpression.idl23 [ObjCLegacyUnnamedParameters, RaisesException] XPathResult evaluate([Default=Undefined] optional Node contextNode,
25 [Default=Undefined] optional XPathResult inResult);
H A DXPathExpression.h39 class XPathResult;
50 PassRefPtr<XPathResult> evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode&);
H A DXPathResult.h41 class XPathResult : public RefCounted<XPathResult> { class in namespace:WebCore
56 static PassRefPtr<XPathResult> create(Document* document, const XPath::Value& value) { return adoptRef(new XPathResult(document, value)); }
57 ~XPathResult();
76 XPathResult(Document*, const XPath::Value&);
H A DXPathResult.cpp28 #include "XPathResult.h"
39 XPathResult::XPathResult(Document* document, const Value& value) function in class:WebCore::XPathResult
65 XPathResult::~XPathResult()
69 void XPathResult::convertTo(unsigned short type, ExceptionCode& ec)
115 unsigned short XPathResult::resultType() const
120 double XPathResult::numberValue(ExceptionCode& ec) const
129 String XPathResult::stringValue(ExceptionCode& ec) const
138 bool XPathResult
[all...]
H A DXPathExpression.cpp35 #include "XPathResult.h"
61 PassRefPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode& ec)
73 RefPtr<XPathResult> result = XPathResult::create(&contextNode->document(), m_topExpression->evaluate());
83 if (type != XPathResult::ANY_TYPE) {
H A DXPathEvaluator.h41 class XPathResult;
49 PassRefPtr<XPathResult> evaluate(const String& expression, Node* contextNode,
50 XPathNSResolver*, unsigned short type, XPathResult*, ExceptionCode&);
H A DXPathEvaluator.idl29 [RaisesException] XPathResult evaluate([Default=Undefined] optional DOMString expression,
33 [Default=Undefined] optional XPathResult inResult);
H A DXPathEvaluator.cpp33 #include "XPathResult.h"
52 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression,
56 XPathResult* result,
H A DXPathResult.idl23 ] interface XPathResult {
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DCommandLineAPIModuleSource.js195 var result = doc.evaluate(xpath, context || doc, null, XPathResult.ANY_TYPE, null);
197 case XPathResult.NUMBER_TYPE:
199 case XPathResult.STRING_TYPE:
201 case XPathResult.BOOLEAN_TYPE:
H A DInspectorNodeFinder.cpp42 #include "XPathResult.h"
136 RefPtr<XPathResult> result = parentNode->document().evaluate(m_whitespaceTrimmedQuery, parentNode, nullptr, XPathResult::ORDERED_NODE_SNAPSHOT_TYPE, nullptr, ec);
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOMUtility.mm118 WRAP(XPathResult)
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDocument.idl112 [ObjCLegacyUnnamedParameters, RaisesException] XPathResult evaluate([Default=Undefined] optional DOMString expression,
116 [Default=Undefined] optional XPathResult inResult);
H A DDocument.h161 class XPathResult;
981 PassRefPtr<XPathResult> evaluate(const String& expression,
985 XPathResult* result,
H A DDocument.cpp155 #include "XPathResult.h"
4580 PassRefPtr<XPathResult> Document::evaluate(const String& expression,
4584 XPathResult* result,

Completed in 236 milliseconds