Searched defs:evaluate (Results 1 - 25 of 83) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dcalc.rb23 evaluate returns [result]: r=expression { $result = $r.result };
67 def evaluate( expression ) method in class:TestCalcParser
70 value = parser.evaluate
87 parser_value, errors = evaluate( expression )
93 val, errors = evaluate "6 - (2*1"
/external/junit/src/org/junit/runners/model/
H A DStatement.java15 public abstract void evaluate() throws Throwable; method in class:Statement
/external/webkit/Source/WebCore/xml/
H A DXPathVariableReference.cpp43 Value VariableReference::evaluate() const function in class:WebCore::XPath::VariableReference
H A DXPathEvaluator.cpp55 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, function in class:WebCore::XPathEvaluator
72 return expr->evaluate(contextNode, type, result, ec);
H A DXPathExpression.cpp62 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());
/external/junit/src/org/junit/internal/runners/statements/
H A DFail.java14 public void evaluate() throws Throwable { method in class:Fail
H A DExpectException.java19 public void evaluate() throws Exception { method in class:ExpectException
22 fNext.evaluate();
H A DInvokeMethod.java19 public void evaluate() throws Throwable { method in class:InvokeMethod
H A DRunAfters.java27 public void evaluate() throws Throwable { method in class:RunAfters
30 fNext.evaluate();
H A DRunBefores.java25 public void evaluate() throws Throwable { method in class:RunBefores
28 fNext.evaluate();
/external/junit/src/org/junit/rules/
H A DRunRules.java17 public void evaluate() throws Throwable { method in class:RunRules
18 statement.evaluate();
H A DExpectedException.java108 public void evaluate() throws Throwable { method in class:ExpectedException.ExpectedExceptionStatement
110 fNext.evaluate();
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.cpp86 JSValue DebuggerCallFrame::evaluate(const UString& script, JSValue& exception) const function in class:JSC::DebuggerCallFrame
/external/webkit/Source/JavaScriptCore/runtime/
H A DCompletion.cpp50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue) function in namespace:JSC
/external/webkit/Source/WebCore/bindings/js/
H A DJSJavaScriptCallFrameCustom.cpp39 JSValue JSJavaScriptCallFrame::evaluate(ExecState* exec) function in class:WebCore::JSJavaScriptCallFrame
42 JSValue result = impl()->evaluate(exec->argument(0).toString(exec), exception);
H A DJavaScriptCallFrame.cpp103 JSValue JavaScriptCallFrame::evaluate(const UString& script, JSValue& exception) const function in class:WebCore::JavaScriptCallFrame
110 return m_debuggerCallFrame.evaluate(script, exception);
H A DJSMainThreadExecState.h51 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);
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerScriptController.cpp64 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/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVTPart.java51 * @param xctxt The XPath context to use to evaluate this AVT.
58 public abstract void evaluate( method in class:AVTPart
H A DAVTPartSimple.java86 public void evaluate(XPathContext xctxt, FastStringBuffer buf, method in class:AVTPartSimple
H A DAVTPartXPath.java130 public void evaluate( method in class:AVTPartXPath
/external/llvm/utils/TableGen/
H A DSetTheory.h121 /// evaluate - Evaluate Expr and append the resulting set to Elts.
122 void evaluate(Init *Expr, RecSet &Elts);
124 /// evaluate - Evaluate a sequence of Inits and append to Elts.
126 void evaluate(Iter begin, Iter end, RecSet &Elts) { function in class:llvm::SetTheory
128 evaluate(*begin++, Elts);
/external/webkit/Source/WebCore/css/
H A DMediaQueryList.cpp69 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/
H A DInspectorRuntimeAgent.cpp52 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);
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java165 public Object evaluate(Object item, QName returnType) method in class:XPathExpressionImpl
207 * <p>This method calls {@link #evaluate(Object item, QName returnType)}
227 public String evaluate(Object item) method in class:XPathExpressionImpl
229 return (String)this.evaluate( item, XPathConstants.STRING );
244 * {@link #evaluate(Object item, QName returnType)} on the resulting
258 * @param source The <code>InputSource</code> of the document to evaluate
272 public Object evaluate(InputSource source, QName returnType) method in class:XPathExpressionImpl
306 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
315 * @param source The <code>InputSource</code> of the document to evaluate over.
323 public String evaluate(InputSourc method in class:XPathExpressionImpl
[all...]

Completed in 2709 milliseconds

1234