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

1 2

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-005.js 7 * as try-004, but the eval statement is called from a function, not
32 function Eval( v ) {
33 return eval( v );
44 result = Eval( value );
51 "eval( " + value +" )",
  /external/valgrind/unittest/
thread_wrappers_win.h 114 while(cond.Eval() == false) {
126 while (cond.Eval() == false && GetTimeInMs() - start_time < millis) {
133 if (cond.Eval() == 0) {
thread_wrappers_pthread.h 188 while(cond.Eval() == false) {
203 while (cond.Eval() == false && retcode == 0) {
209 return cond.Eval();
thread_wrappers.h 77 bool Eval() { return func_(arg_); }
  /external/clang/lib/AST/
Decl.cpp     [all...]
ASTImporter.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
DominatorInternals.h 25 // This implements the O(n*log(n)) versions of EVAL and LINK, because it turns
108 Eval(DominatorTreeBase<typename GraphT::NodeType>& DT,
199 typename GraphT::NodeType* U = Eval<GraphT>(DT, V, i + 1);
213 unsigned SemiU = DT.Info[Eval<GraphT>(DT, N, i + 1)].Semi;
Dominators.h 563 friend typename GraphT::NodeType* Eval(
  /external/skia/src/animator/
SkAnimatorScript.h 41 static bool Eval(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
SkAnimatorScript.cpp 57 functionCallBack(Eval, (void*) this);
133 bool SkAnimatorScript::Eval(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
135 if (SK_LITERAL_STR_EQUAL("eval", function, len) == false)
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 170 bool Eval() { return func_(arg_); }
229 while(cond.Eval() == false) {
243 while (cond.Eval() == false && retcode == 0) {
249 return cond.Eval();
  /external/v8/test/mjsunit/
const-redecl.js 45 return eval("(function(){" + s + ";return " + e + "})")();
66 this.eval(code);
88 return eval(s + ";" + e);
108 // No eval.
110 // Eval everything.
111 TestAll("TypeError", 'eval("' + def0 + '; ' + def1 + '")');
112 // Eval first definition.
113 TestAll("TypeError", 'eval("' + def0 +'"); ' + def1);
114 // Eval second definition.
115 TestAll("TypeError", def0 + '; eval("' + def1 + '")')
    [all...]
global-load-from-nested-eval.js 28 // Tests global loads from nested eval.
34 eval('eval(' + source +')');
41 eval('eval(' + source +')');
46 // Shadow variable with an eval-introduced variable.
48 eval('var x = 1');
50 eval('eval('+ source + ')');
56 // Eval that does not shadow
    [all...]
debug-compile-event.js 38 var eval_compilations = 0; // Number of scources compiled through eval.
43 eval(current_source);
61 case Debug.ScriptCompilationType.Eval:
67 // If the compiled source contains 'eval' there will be additional compile
68 // events for the source inside eval.
69 if (current_source.indexOf('eval') == 0) {
70 // For source with 'eval' there will be compile events with substrings
74 // For source without 'eval' there will be a compile events with the
80 var msg = eval('(' + json + ')');
100 compileSource('eval("a=2")')
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.h 55 Eval,
84 jobject eval(jstring script) const;
jni_jsobject.mm 211 case Eval: {
212 result.l = JavaJSObject(nativeHandle).eval(context->string);
306 jobject JavaJSObject::eval(jstring script) const
308 LOG(LiveConnect, "JavaJSObject::eval script = %s", JavaString(script).utf8());
642 context.type = Eval;
  /external/v8/test/preparser/
nonstrict-arguments.js 28 // Eval restrictions should not trigger outside of strict-mode code.
40 // Reading eval and arguments is allowed.
41 eval(arguments);
nonstrict-eval.js 28 // Eval restrictions should not trigger outside of strict-mode code.
30 var eval = 42; variable
31 eval = eval++;
32 eval += --eval;
33 eval -= ++eval;
34 eval *= eval--
35 function eval(eval) {}; function
44 var eval = 42; variable
    [all...]
  /external/v8/src/
preparser.h 231 static Identifier Eval() {
preparser.cc 306 // Strict mode violation, using either reserved word or eval/arguments
    [all...]
  /external/clang/include/clang/AST/
Decl.h     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 318 EnterExpressionEvaluationContext Eval(Actions,
  /external/opencv/ml/src/
mlann_mlp.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 1038 milliseconds

1 2