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

1 2

  /external/webkit/Source/JavaScriptGlue/
JSRun.h 55 Completion Evaluate();
JSRun.cpp 70 Completion JSRun::Evaluate()
72 return JSC::evaluate(fGlobalObject->globalExec(), fGlobalObject->globalScopeChain(), makeSource(fSource));
JavaScriptGlue.cpp 295 Completion completion = ptr->Evaluate();
  /frameworks/compile/slang/
slang_rs_export_var.cpp 36 // mInit - Evaluate initializer expression
42 Initializer->Evaluate(mInit, Context->getASTContext());
52 Initializer->Evaluate(mInit, Context->getASTContext());
  /bootable/recovery/edify/
expr.c 29 // - if Evaluate() on any argument returns NULL, return NULL.
35 char* Evaluate(State* state, Expr* expr) {
79 strings[i] = Evaluate(state, argv[i]);
108 char* cond = Evaluate(state, argv[0]);
129 msg = Evaluate(state, argv[0]);
143 char* v = Evaluate(state, argv[i]);
166 char* val = Evaluate(state, argv[0]);
178 char* v = Evaluate(state, argv[i]);
190 char* left = Evaluate(state, argv[0]);
202 char* left = Evaluate(state, argv[0])
    [all...]
main.c 48 result = Evaluate(&state, e);
208 char* result = Evaluate(&state, root);
expr.h 34 // and in writable memory (Evaluate may make temporary changes to
40 // pointer after Evaluate() returns.
65 // evaluate it, return the resulting Value. The caller takes
70 // evaluate it, assert that it is a string, and return the resulting
74 char* Evaluate(State* state, Expr* expr);
131 // Evaluate the expressions in argv, giving 'count' char* (the ... is
136 // Evaluate the expressions in argv, giving 'count' Value* (the ... is
141 // Evaluate the expressions in argv, returning an array of char*
142 // results. If any evaluate to NULL, free the rest and return NULL.
147 // Evaluate the expressions in argv, returning an array of Value
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 25 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 29 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 30 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 30 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 30 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 30 (* Evaluate a top-level expression into an anonymous function. *)
  /bootable/recovery/updater/
updater.c 106 // Evaluate the parsed script.
118 char* result = Evaluate(&state, root);
install.c 269 paths[i] = Evaluate(state, argv[i]);
560 target = Evaluate(state, argv[0]);
667 key = Evaluate(state, argv[0]);
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodegetownerdocument.js 78 Evaluate Node.ownerDocument on the second "p" element.
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodegetownerdocument.js 78 Evaluate Node.ownerDocument on the second "p" element.
  /frameworks/compile/libbcc/runtime/make/
lib_platforms.mk 75 # Evaluate this now so we do not have to worry about order of evaluation.
subdir.mk 76 # Evaluate this now so we do not have to worry about order of evaluation.
  /external/v8/tools/
test.py 739 def Evaluate(self, env, defs):
752 def Evaluate(self, env, defs):
825 def Evaluate(self, env, defs):
827 return self.left.Evaluate(env, defs) or self.right.Evaluate(env, defs)
835 return self.left.Evaluate(env, defs) and self.right.Evaluate(env, defs)
841 if self.right.Evaluate(env, defs): return self.left.GetOutcomes(env, defs)
1042 sections = [s for s in self.sections if s.condition.Evaluate(env, self.defs)]
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 43 /// evaluate the expression regardless of what the RHS is, but C only allows
124 static bool Evaluate(APValue &Result, EvalInfo &Info, const Expr *E);
297 // We don't want to evaluate BlockExprs multiple times, as they generate
352 if (!Evaluate(info.OpaqueValues[opaqueValue], info, value)) {
972 if (!Evaluate(Scratch, Info, E->getSubExpr()))
    [all...]
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 257 bool PluginControllerProxy::evaluate(NPObject* npObject, const String& scriptString, NPVariant* result, bool allowPopups) function in class:WebKit::PluginControllerProxy
270 if (!m_connection->connection()->sendSync(Messages::PluginProxy::Evaluate(npObjectAsNPVariantData, scriptString, allowPopups), Messages::PluginProxy::Evaluate::Reply(returnValue, resultData), m_pluginInstanceID))
  /external/v8/test/mjsunit/
debug-references.js 35 // The base part of all evaluate requests.
85 // Evaluate Point.
86 var evaluate_point = '{"seq":0,"type":"request","command":"evaluate",' +
debug-handle.js 50 // The base part of all evaluate requests.
51 var base_request = '"seq":0,"type":"request","command":"evaluate"'
104 // Evaluate and get some handles.
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 399 // evaluate to 0 or 1, we must assume the value of the RHS evaluates to 0
482 if (OOE->Evaluate(Res, getContext()) && Res.Val.isInt()) {
522 Ex->Evaluate(Result, getContext());

Completed in 441 milliseconds

1 2