HomeSort by relevance Sort by last modified time
    Searched defs:evaluate (Results 1 - 25 of 75) sorted by null

1 2 3

  /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
ArgbEvaluator.java 41 public Object evaluate(float fraction, Object startValue, Object endValue) { method in class:ArgbEvaluator
  /external/webkit/Source/WebCore/xml/
XPathEvaluator.cpp 55 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, function in class:WebCore::XPathEvaluator
72 return expr->evaluate(contextNode, type, result, ec);
XPathVariableReference.cpp 43 Value VariableReference::evaluate() const function in class:WebCore::XPath::VariableReference
XPathExpression.cpp 62 PassRefPtr<XPathResult> XPathExpression::evaluate(Node* contextNode, unsigned short type, XPathResult*, ExceptionCode& ec) function in class:WebCore::XPathExpression
74 RefPtr<XPathResult> result = XPathResult::create(contextNode->document(), m_topExpression->evaluate());
  /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...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const function in class:JSC::DebuggerCallFrame
  /external/webkit/Source/JavaScriptCore/runtime/
Completion.cpp 50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue) function in namespace:JSC
  /external/webkit/Source/WebCore/bindings/js/
JavaScriptCallFrame.cpp 102 // Evaluate some JavaScript code in the scope of this frame.
103 JSValue JavaScriptCallFrame::evaluate(const UString& script, JSValue& exception) const function in class:WebCore::JavaScriptCallFrame
110 return m_debuggerCallFrame.evaluate(script, exception);
JSJavaScriptCallFrameCustom.cpp 39 JSValue JSJavaScriptCallFrame::evaluate(ExecState* exec) function in class:WebCore::JSJavaScriptCallFrame
42 JSValue result = impl()->evaluate(exec->argument(0).toString(exec), exception);
JSMainThreadExecState.h 51 static JSC::Completion evaluate(JSC::ExecState* exec, JSC::ScopeChainNode* chain, const JSC::SourceCode& source, JSC::JSValue thisValue) function in class:WebCore::JSMainThreadExecState
54 return JSC::evaluate(exec, chain, source, thisValue);
WorkerScriptController.cpp 102 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode) function in class:WebCore::WorkerScriptController
108 ScriptValue result(evaluate(sourceCode, &exception));
116 ScriptValue WorkerScriptController::evaluate(const ScriptSourceCode& sourceCode, ScriptValue* exception) function in class:WebCore::WorkerScriptController
126 Completion comp = JSC::evaluate(exec, exec->dynamicGlobalObject()->globalScopeChain(), sourceCode.jsSourceCode(), m_workerContextWrapper.get());
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVTPart.java 51 * @param xctxt The XPath context to use to evaluate this AVT.
58 public abstract void evaluate( method in class:AVTPart
AVTPartSimple.java 86 public void evaluate(XPathContext xctxt, FastStringBuffer buf, method in class:AVTPartSimple
AVTPartXPath.java 130 public void evaluate( method in class:AVTPartXPath
  /external/llvm/utils/TableGen/
SetTheory.h 117 /// evaluate - Evaluate Expr and append the resulting set to Elts.
118 void evaluate(Init *Expr, RecSet &Elts);
120 /// evaluate - Evaluate a sequence of Inits and append to Elts.
122 void evaluate(Iter begin, Iter end, RecSet &Elts) { function in class:llvm::SetTheory
124 evaluate(*begin++, Elts);
  /external/skia/src/animator/
SkDump.cpp 49 return evaluate(maker);
66 bool SkDump::evaluate(SkAnimateMaker &maker) { function in class:SkDump
  /external/webkit/Source/WebCore/bindings/v8/
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);
JavaScriptCallFrame.cpp 121 v8::Handle<v8::Value> JavaScriptCallFrame::evaluate(const String& expression) function in class:WebCore::JavaScriptCallFrame
123 v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(m_callFrame.get()->Get(v8String("evaluate")));
  /external/webkit/Source/WebCore/css/
MediaQueryList.cpp 69 void MediaQueryList::evaluate(MediaQueryEvaluator* evaluator, bool& notificationNeeded) function in class:WebCore::MediaQueryList
90 setMatches(m_matcher->evaluate(m_media.get()));
  /external/webkit/Source/WebCore/inspector/
InspectorRuntimeAgent.cpp 52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) function in class:WebCore::InspectorRuntimeAgent
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);

Completed in 4801 milliseconds

1 2 3