/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathExpression.java | 37 * If a request is made to evaluate the expression in the absence 85 * <p>Evaluate the compiled XPath expression in the specified context and return the result as the specified type.</p> 108 public Object evaluate(Object item, QName returnType) method in interface:XPathExpression 112 * <p>Evaluate the compiled XPath expression in the specified context and return the result as a <code>String</code>.</p> 114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of 131 public String evaluate(Object item) method in interface:XPathExpression 135 * <p>Evaluate the compiled XPath expression in the context of the specified <code>InputSource</code> and return the result as the 139 * {@link #evaluate(Object item, QName returnType)} on the resulting document object.</p> 150 * @param source The <code>InputSource</code> of the document to evaluate over. 160 public Object evaluate(InputSource source, QName returnType method in interface:XPathExpression 183 public String evaluate(InputSource source) method in interface:XPathExpression [all...] |
XPathFunction.java | 35 * <p>Evaluate the function with the specified arguments.</p> 48 public Object evaluate(List args) method in interface:XPathFunction
|
XPath.java | 38 * If a request is made to evaluate the expression in the absence 184 * <p>Evaluate an <code>XPath</code> expression in the specified context and return the result as the specified type.</p> 213 public Object evaluate(String expression, Object item, QName returnType) method in interface:XPath 217 * <p>Evaluate an XPath expression in the specified context and return the result as a <code>String</code>.</p> 219 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of 239 public String evaluate(String expression, Object item) method in interface:XPath 243 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code> 247 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p> 259 * @param source The input source of the document to evaluate over. 269 public Object evaluate( method in interface:XPath 297 public String evaluate(String expression, InputSource source) method in interface:XPath [all...] |
/frameworks/base/core/java/android/animation/ |
TypeEvaluator.java | 42 public T evaluate(float fraction, T startValue, T endValue); method in interface:TypeEvaluator
|
FloatEvaluator.java | 38 public Float evaluate(float fraction, Number startValue, Number endValue) { method in class:FloatEvaluator
|
IntEvaluator.java | 38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) { method in class:IntEvaluator
|
/external/webkit/Source/WebCore/xml/ |
XPathFunctions.cpp | 77 virtual Value evaluate() const; 84 virtual Value evaluate() const; 91 virtual Value evaluate() const; 96 virtual Value evaluate() const; 101 virtual Value evaluate() const; 108 virtual Value evaluate() const; 115 virtual Value evaluate() const; 122 virtual Value evaluate() const; 129 virtual Value evaluate() const; 134 virtual Value evaluate() const 308 Value FunLast::evaluate() const function in class:WebCore::XPath::FunLast 313 Value FunPosition::evaluate() const function in class:WebCore::XPath::FunPosition 318 Value FunId::evaluate() const function in class:WebCore::XPath::FunId 381 Value FunLocalName::evaluate() const function in class:WebCore::XPath::FunLocalName 395 Value FunNamespaceURI::evaluate() const function in class:WebCore::XPath::FunNamespaceURI 409 Value FunName::evaluate() const function in class:WebCore::XPath::FunName 423 Value FunCount::evaluate() const function in class:WebCore::XPath::FunCount 430 Value FunString::evaluate() const function in class:WebCore::XPath::FunString 437 Value FunConcat::evaluate() const function in class:WebCore::XPath::FunConcat 450 Value FunStartsWith::evaluate() const function in class:WebCore::XPath::FunStartsWith 461 Value FunContains::evaluate() const function in class:WebCore::XPath::FunContains 472 Value FunSubstringBefore::evaluate() const function in class:WebCore::XPath::FunSubstringBefore 488 Value FunSubstringAfter::evaluate() const function in class:WebCore::XPath::FunSubstringAfter 500 Value FunSubstring::evaluate() const function in class:WebCore::XPath::FunSubstring 531 Value FunStringLength::evaluate() const function in class:WebCore::XPath::FunStringLength 538 Value FunNormalizeSpace::evaluate() const function in class:WebCore::XPath::FunNormalizeSpace 549 Value FunTranslate::evaluate() const function in class:WebCore::XPath::FunTranslate 572 Value FunBoolean::evaluate() const function in class:WebCore::XPath::FunBoolean 577 Value FunNot::evaluate() const function in class:WebCore::XPath::FunNot 582 Value FunTrue::evaluate() const function in class:WebCore::XPath::FunTrue 587 Value FunLang::evaluate() const function in class:WebCore::XPath::FunLang 620 Value FunFalse::evaluate() const function in class:WebCore::XPath::FunFalse 625 Value FunNumber::evaluate() const function in class:WebCore::XPath::FunNumber 632 Value FunSum::evaluate() const function in class:WebCore::XPath::FunSum 649 Value FunFloor::evaluate() const function in class:WebCore::XPath::FunFloor 654 Value FunCeiling::evaluate() const function in class:WebCore::XPath::FunCeiling 670 Value FunRound::evaluate() const function in class:WebCore::XPath::FunRound [all...] |
XPathPath.h | 47 virtual Value evaluate() const; 62 virtual Value evaluate() const; 63 void evaluate(NodeSet& nodes) const; // nodes is an input/output parameter 80 virtual Value evaluate() const;
|
XPathExpression.idl | 27 [OldStyleObjC] XPathResult evaluate(in Node contextNode,
|
XPathPredicate.h | 43 virtual Value evaluate() const; 53 virtual Value evaluate() const; 61 virtual Value evaluate() const; 72 virtual Value evaluate() const; 82 virtual Value evaluate() const; 97 virtual Value evaluate() const; 104 virtual Value evaluate() const; 113 bool evaluate() const;
|
XPathPredicate.cpp | 49 Value Number::evaluate() const function in class:WebCore::XPath::Number 59 Value StringExpression::evaluate() const function in class:WebCore::XPath::StringExpression 64 Value Negative::evaluate() const function in class:WebCore::XPath::Negative 66 Value p(subExpr(0)->evaluate()); 77 Value NumericOp::evaluate() const function in class:WebCore::XPath::NumericOp 79 Value lhs(subExpr(0)->evaluate()); 80 Value rhs(subExpr(1)->evaluate()); 196 Value EqTestOp::evaluate() const function in class:WebCore::XPath::EqTestOp 198 Value lhs(subExpr(0)->evaluate()); 199 Value rhs(subExpr(1)->evaluate()); 219 Value LogicalOp::evaluate() const function in class:WebCore::XPath::LogicalOp 232 Value Union::evaluate() const function in class:WebCore::XPath::Union 266 bool Predicate::evaluate() const function in class:WebCore::XPath::Predicate [all...] |
XPathVariableReference.cpp | 43 Value VariableReference::evaluate() const function in class:WebCore::XPath::VariableReference
|
XPathVariableReference.h | 42 virtual Value evaluate() const;
|
XPathPath.cpp | 55 Value Filter::evaluate() const function in class:WebCore::XPath::Filter 57 Value v = m_expr->evaluate(); 74 if (m_predicates[i]->evaluate()) 94 Value LocationPath::evaluate() const function in class:WebCore::XPath::LocationPath 106 evaluate(nodes); 112 void LocationPath::evaluate(NodeSet& nodes) const function in class:WebCore::XPath::LocationPath 133 step->evaluate(nodes[j], matches); 196 Value Path::evaluate() const function in class:WebCore::XPath::Path 198 Value v = m_filter->evaluate(); 201 m_path->evaluate(nodes) [all...] |
XMLTreeViewer.cpp | 80 m_document->frame()->script()->evaluate(ScriptSourceCode(scriptString)); 82 m_document->frame()->script()->evaluate(ScriptSourceCode("prepareWebKitXMLViewer('" + noStyleMessage + "');"));
|
XPathEvaluator.cpp | 55 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, function in class:WebCore::XPathEvaluator 72 return expr->evaluate(contextNode, type, result, ec);
|
XPathEvaluator.idl | 28 XPathResult evaluate(in DOMString expression,
|
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/ |
tst_qscriptvalue_generated_init.cpp | 116 case 85: return QPair<QString, QScriptValue>("engine->evaluate(\"[]\")", engine->evaluate("[]")); 117 case 86: return QPair<QString, QScriptValue>("engine->evaluate(\"{}\")", engine->evaluate("{}")); 118 case 87: return QPair<QString, QScriptValue>("engine->evaluate(\"Object.prototype\")", engine->evaluate("Object.prototype")); 119 case 88: return QPair<QString, QScriptValue>("engine->evaluate(\"Date.prototype\")", engine->evaluate("Date.prototype")); 120 case 89: return QPair<QString, QScriptValue>("engine->evaluate(\"Array.prototype\")", engine->evaluate("Array.prototype")) [all...] |
tst_qscriptvalue.cpp | 303 QScriptValue object = engine.evaluate(code); 353 QScriptValue object = engine.evaluate("o = {13: 0, 'aaa': 3, 'bbb': 1}"); 369 QScriptValue object = engine.evaluate("new Object"); 379 QScriptValue o1 = engine.evaluate("o1 = new Object; o1"); 380 QScriptValue o2 = engine.evaluate("o2 = new Object; o2"); 381 QVERIFY(engine.evaluate("o1.__proto__ = o2; o1.__proto__ === o2").toBool()); 382 QVERIFY(engine.evaluate("o2.foo = 22; o1.foo == 22").toBool()); 385 QVERIFY(engine.evaluate("o1.foo == 456").toBool()); 393 QScriptValue object1 = engine.evaluate("o1 = new Object();"); 394 QScriptValue object2 = engine.evaluate("o2 = new Object(); o1.__proto__ = o2; o2") [all...] |
/external/llvm/lib/MC/MCDisassembler/ |
EDOperand.h | 55 /// evaluate - Returns the numeric value of an operand to the extent possible, 63 int evaluate(uint64_t &result, 83 /// evaluate - Like evaluate for a callback, but uses a block instead 84 int evaluate(uint64_t &result,
|
/external/webkit/Source/WebCore/bindings/v8/ |
WorkerScriptController.h | 54 ScriptValue evaluate(const ScriptSourceCode&); 55 ScriptValue evaluate(const ScriptSourceCode&, ScriptValue* exception);
|
WorkerScriptController.cpp | 64 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode) function in class:WebCore::WorkerScriptController 66 return evaluate(sourceCode, 0); 69 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception) function in class:WebCore::WorkerScriptController 75 ScriptValue result = m_proxy->evaluate(sourceCode.source(), sourceCode.url().string(), WTF::toZeroBasedTextPosition(sourceCode.startPosition()), &state);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorClient.cpp | 62 scriptController->evaluate(ScriptSourceCode(dispatchToFrontend));
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
util.js | 17 return document.evaluate(expression, node,
|
/external/webkit/Source/WebCore/bindings/js/ |
WorkerScriptController.h | 59 ScriptValue evaluate(const ScriptSourceCode&); 60 ScriptValue evaluate(const ScriptSourceCode&, ScriptValue* exception);
|