/external/v8/test/mjsunit/ |
debug-scopes.js | 250 // Empty local scope with use of eval. 254 eval(''); 267 // Local introducing local variable using eval. 271 eval('var i = 5'); 285 // using eval. 291 eval('var i = 5'); 292 eval('var j = 6'); 519 // functions arguments. In the presence of eval all arguments and locals 528 eval(''); 575 // Two closures. In the presence of eval all information is provided as th [all...] |
debug-referenced-by.js | 72 // Use closure with eval - creates arguments array. 75 eval(s); 77 return function e(s) { eval(s); };
|
mirror-script.js | 88 testScriptMirror(eval('(function(){})'), null, 1, 2, 1, '(function(){})', 87); 89 testScriptMirror(eval('(function(){\n })'), null, 2, 2, 1, '(function(){\n })', 88); 94 var mirror = debug.MakeMirror(eval('(function(){\n 1;\n})')).script();
|
/external/bison/m4/ |
lib-prefix_gl.m4 | 32 eval additional_includedir=\"$includedir\" 33 eval additional_libdir=\"$libdir\" 44 eval additional_includedir=\"$includedir\" 45 eval additional_libdir=\"$libdir\" 63 AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) 94 AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) 138 eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
|
/external/jpeg/ |
configure | 69 eval "$ac_prev=\$ac_option" 113 eval "enable_${ac_feature}=no" ;; 126 eval "enable_${ac_feature}='$ac_optarg'" ;; 357 eval "with_${ac_package}='$ac_optarg'" ;; 366 eval "with_${ac_package}=no" ;; 397 eval "$varname='$val'" 398 eval "export $varname" ;; 538 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 567 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 628 if { (eval echo configure:629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; the [all...] |
/external/qemu/distrib/sdl-1.2.12/ |
Makefile.android | 292 $(eval $(call install-target,objs/sdl-config,$(target)/bin/sdl-config)) \ 293 $(eval $(call install-target,objs/SDL_config.h,$(target)/include/SDL/SDL_config.h)) \ 294 $(eval $(call install-target,objs/libSDL.a,$(target)/lib/libSDL.a)) \ 295 $(eval $(call install-target,objs/libSDLmain.a,$(target)/lib/libSDLmain.a)) \ 297 $(eval $(call install-target,include/$(header),$(target)/include/SDL/$(header))) \
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.7-3.js | 75 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 0 )") ); 80 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 1 )") ); 85 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 2 )") ); 90 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r', 10 )") ); 95 eval("var b = true; b.__proto__.lastIndexOf = String.prototype.lastIndexOf; b.lastIndexOf('r' )") );
|
15.5.3.2-2.js | 57 "var MYSTRING = String.fromCharCode(eval(\"var args=''; for ( i = 0x0020; i < 0x007f; i++ ) { args += ( i == 0x007e ) ? i : i + ', '; } args;\")); MYSTRING", 59 eval( "var MYSTRING = String.fromCharCode(" + eval("var args=''; for ( i = 0x0020; i < 0x007f; i++ ) { args += ( i == 0x007e ) ? i : i + ', '; } args;") +"); MYSTRING" ));
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
regress-131964.js | 39 * Function declarations in eval scope are not {DontDelete}. 106 * Try the same test in eval scope - here we EXPECT the function to be deleted (?) 127 eval(s); 131 * Define the function in eval scope, but delete it in global scope - 139 eval(s);
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-110286.js | 55 actual = eval("/* /* */3"); 60 actual = eval("3/* /* */"); 65 actual = eval("/* 3/* */"); 70 actual = eval("/* /*3 */"); 78 eval("/* blah blah /* blah blah */");
|
regress-152646.js | 57 * We will form an eval string to set the result-variable |actual|. 58 * To get a feel for this, suppose N were 3. Then the eval string is 59 * 'actual = (((0)));' The expected value for this after eval() is 0. 79 eval(sEval); 84 * An exception during this eval is OK, as the runtime can throw one
|
regress-192414.js | 55 * We will form an eval string to set the result-variable |actual|. 56 * To get a feel for this, suppose N were 3. Then the eval string is 57 * 'actual = (1&(1&(1&1)));' The expected value after eval() is 1. 66 eval(str); 71 * An exception during this eval is OK, as the runtime can throw one
|
regress-131510-001.js | 61 * Put these examples in eval scope 64 eval(s); 67 eval(s);
|
regress-68498-001.js | 22 * SUMMARY: var self = global JS object, outside any eval, is DontDelete 29 * "Demonstrate that variable statement outside any eval creates a 34 var summary ='Testing that variable statement outside any eval creates' +
|
/external/v8/src/ |
scopes.cc | 164 // eval scopes (by walking the stack and reading the scope info). 337 ASSERT(outer_scope_ == NULL); // eval or global scopes only 340 // If we are in an eval scope, we may have other outer scopes about 342 // and assume they may invoke eval themselves. Eventually we could capture 400 case Scope::EVAL_SCOPE: return "eval"; 481 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n"); 482 if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n"); 483 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n"); 485 Indent(n1, "// outer scope is 'eval' scope\n"); 545 // another variable that is introduced dynamically via an 'eval' cal [all...] |
/external/clearsilver/autom4te.cache/ |
output.0 | 44 if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then 45 eval $as_var=C; export $as_var 357 eval "$ac_prev=\$ac_option" 401 eval "enable_$ac_feature=no" ;; 414 eval "enable_$ac_feature='$ac_optarg'" ;; 596 eval "with_$ac_package='$ac_optarg'" ;; 605 eval "with_$ac_package=no" ;; 637 eval "$ac_envvar='$ac_optarg'" 660 eval ac_val=$`echo $ac_var` 672 eval ac_val=$`echo $ac_var [all...] |
/external/e2fsprogs/ |
configure | 108 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 109 eval $as_var=C; export $as_var 155 if (eval ":") 2>/dev/null; then 161 if test $as_have_required = yes && (eval ": 366 (eval "as_func_return () { 530 eval sh -c '\'' 545 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" 548 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 846 eval $ac_prev=\$ac_option 901 eval enable_$ac_feature=no ; [all...] |
/build/core/tasks/ |
apicheck.mk | 24 # eval this to define a rule that runs apicheck. 53 $(eval $(call check-api, \ 65 $(eval $(call check-api, \
|
/external/opencore/tools_v2/build/make/ |
prog.mk | 13 $(eval $(call set-src-and-obj-names,$(SRCS),$(LOCAL_SRCDIR))) 52 $(foreach srcdir, $(strip $(REMOTE_DIRS)), $(eval $(call OBJ_TEMPLATE,$(srcdir),$(OBJDIR)))) 80 $(eval $(TARGET)_LIBDEPS := $(TMPDEPS))
|
/external/webkit/JavaScriptCore/debugger/ |
Debugger.cpp | 104 RefPtr<EvalExecutable> eval = EvalExecutable::create(globalCallFrame, makeSource(script)); local 105 JSObject* error = eval->compile(globalCallFrame, globalCallFrame->scopeChain()); 109 return globalObject->globalData()->interpreter->execute(eval.get(), globalCallFrame, globalObject, globalCallFrame->scopeChain(), &exception);
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.4-1.js | 74 testcases[tc].actual = eval( INPUT ); 93 array[item++] = new TestCase( "SECTION", "with MyObject, eval should return square of " ); 99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
|
10.1.4-2.js | 75 testcases[tc].actual = eval( INPUT ); 95 array[item++] = new TestCase( "SECTION", "with MyObject, eval should return square of " ); 101 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.2.1-1.js | 71 array[item++] = new TestCase( SECTION, "var OBJ = new MyObject(true); OBJ.valueOf()", true, eval("var OBJ = new MyObject(true); OBJ.valueOf()") ); 73 array[item++] = new TestCase( SECTION, "OBJ.toString = Object.prototype.toString; OBJ.toString()", "[object Object]", eval("OBJ.toString = Object.prototype.toString; OBJ.toString()") ); 74 array[item++] = new TestCase( SECTION, "MyObject.toString = Object.prototype.toString; MyObject.toString()", "[object Function]", eval("MyObject.toString = Object.prototype.toString; MyObject.toString()") );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/NativeObjects/ |
15-2.js | 60 array[item++] = new TestCase( SECTION, "eval.__proto__", Function.prototype, eval.__proto__ ); 68 testcases[tc].actual = eval( testcases[tc].actual );
|
/ndk/build/core/ |
setup-app.mk | 34 $(eval NDK_$(__name) := $(call get,$(_map),$(__name)))\ 74 $(eval TARGET_ARCH_ABI := $(_abi))\ 75 $(eval include $(BUILD_SYSTEM)/setup-abi.mk) \
|