Searched
refs:eval (Results
451 -
475 of
747) sorted by null
<<11121314151617181920>>
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Unicode/ |
| uc-005.js | 83 * Our eval string will be: 106 * Concatenate these and eval() to create the function Z\u02b1 109 eval(sEval); 225 * Note we can't simply do |eval(str)|, since in practice |str| will be an 226 * identifier somewhere in the program (e.g. a function name); thus |eval(str)| 238 * js> eval("'" + '\nHello' + "'"); 246 return eval("'" + str + "'")
|
| /frameworks/base/cmds/am/ |
| Android.mk | 31 $(foreach file,$(files_noticed),$(eval $(call make-notice-file,$(file))))
|
| /system/core/charger/ |
| Android.mk | 39 $(eval $(call _add-charger-image,$(_img))))
|
| /external/chromium/base/ |
| string_util.cc | 975 static bool MatchPatternT(const CHAR* eval, const CHAR* eval_end, 984 EatSameChars(&pattern, pattern_end, &eval, eval_end, next); 988 if (eval == eval_end) { 1002 if (MatchPatternT(eval, eval_end, next_pattern, pattern_end, 1005 const CHAR* next_eval = eval; 1019 while (eval != eval_end) { 1020 if (MatchPatternT(eval, eval_end, next_pattern, pattern_end, 1023 eval++; 1028 if (eval == eval_end) { [all...] |
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| BuiltinFunctionChecker.cpp | 25 class BuiltinFunctionChecker : public Checker<eval::Call> {
|
| /external/v8/test/mjsunit/compiler/ |
| property-simple.js | 35 assertEquals(8, eval(code)); 39 assertEquals(9, eval(code));
|
| /external/v8/test/mjsunit/ |
| function-caller.js | 46 // Check called from eval. 47 eval('f(null)');
|
| /external/v8/test/mjsunit/regress/ |
| regress-35.js | 29 eval("result = 42; while(true)break"); 32 eval("result = 87; while(false)continue");
|
| regress-900055.js | 28 var alias = eval; 37 e('s'); // should throw exception since aliased eval is global
|
| /external/webkit/LayoutTests/storage/domstorage/script-tests/ |
| quota.js | 5 storage = eval(storageString); 51 storage = eval(storageString);
|
| /external/webkit/Source/JavaScriptCore/runtime/ |
| CommonIdentifiers.h | 43 macro(eval) \
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
| 15.4.2.3.js | 53 eval("var arr = new Array(); arr.getClass = Object.prototype.toString; arr.getClass()") );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
| 10.1.5-1.js | 83 if ( eval == null ) { 84 testcases[0].reason += " eval == null";
|
| 10.1.5-3.js | 85 if ( eval == null ) { 86 testcases[0].reason += " eval == null";
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
| 15.3.4-1.js | 61 eval("var myfunc = Function.prototype; myfunc.toString = Object.prototype.toString; myfunc.toString()"));
|
| 15.3.4.js | 60 eval("var myfunc = Function.prototype; myfunc.toString = Object.prototype.toString; myfunc.toString()"));
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/ |
| 15.7.4.2-1.js | 69 testcases[tc].actual= eval(testcases[tc].actual );
|
| 15.7.4.3-1.js | 62 testcases[tc].actual = eval( testcases[tc].actual );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
| 15.5.4.js | 48 eval("String.prototype.getClass = Object.prototype.toString; String.prototype.getClass()") );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/ |
| 15.11.1.1.js | 79 var err4 = eval("Error('msg4')");
|
| 15.11.4.4-1.js | 112 eval('1=2');
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
| regress-49286.js | 93 eval(this.badSyntax);
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Number/ |
| 15.7.4.5-1.js | 113 try {eval(sEval);}
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Operators/ |
| 11.13.1-001.js | 99 * eval scope - 104 eval('z = z');
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
| 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
|
Completed in 750 milliseconds
<<11121314151617181920>>