| /external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
| basic.js | 6 window.storage = eval(storageString);
|
| /external/webkit/LayoutTests/storage/domstorage/script-tests/ |
| complex-values.js | 20 storage = eval(storageString);
|
| /external/webkit/LayoutTests/storage/ |
| execute-sql-args.js | 47 eval('transaction.executeSql(' + parameterList + ')');
|
| /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
| date-format-xparb.js | 45 eval(code.substring(0, code.length - 3) + ";}"); 169 eval(code);
|
| /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
| date-format-xparb.js | 45 eval(code.substring(0, code.length - 3) + ";}"); 169 eval(code);
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
| 11.2.1-1.js | 81 PROPERTY[p++] = new Property( "this", "eval", "function" ); 231 RESULT = eval("typeof " + PROPERTY[i].object + "." + PROPERTY[i].name ); 238 RESULT = eval("typeof " + PROPERTY[i].object + "['" + PROPERTY[i].name +"']");
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
| 15.5.4.11-1.js | 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length", 0, eval("delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length") ); 68 eval("var s = new String( String.fromCharCode("+i+") ); s.toLowerCase()") ); 73 eval("var s = new String( String.fromCharCode(i) ); s.toLowerCase().charCodeAt(0)") );
|
| 15.5.4.11-5.js | 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length", 0, eval("delete String.prototype.toLowerCase.length; String.prototype.toLowerCase.length") ); 69 eval("var s = new String( String.fromCharCode("+i+") ); s.toLowerCase()") ); 74 eval("var s = new String( String.fromCharCode(i) ); s.toLowerCase().charCodeAt(0)") );
|
| 15.5.4.12-1.js | 59 array[item++] = new TestCase( SECTION, "delete String.prototype.toupperCase.length; String.prototype.toupperCase.length", 0, eval("delete String.prototype.toUpperCase.length; String.prototype.toUpperCase.length") ); 75 eval("var s = new String( String.fromCharCode(i) ); s.toUpperCase().charCodeAt(0)") );
|
| /ndk/build/core/ |
| setup-abi.mk | 36 $(eval TARGET_PLATFORM := $$(subst android-$(_plat),android-9,$$(TARGET_PLATFORM)))\
|
| /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
| ndldic.c | 1061 NJ_UINT32 max_value, eval, current; local 1113 eval = current 1938 NJ_UINT32 max_value, eval, current; local [all...] |
| /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
| util.js | 41 * Wrapper for the eval() builtin function to evaluate expressions and
45 * errors. Also protects against other syntax errors in the eval()ed
46 * code and returns null if the eval throws an exception.
55 // eval('(' + expr + ')');
60 // e.g. eval("(function() {})") returns undefined, and not a function
62 return eval('[' + expr + '][0]');
64 log('EVAL FAILED ' + expr + ': ' + e);
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
| util.js | 41 * Wrapper for the eval() builtin function to evaluate expressions and 45 * errors. Also protects against other syntax errors in the eval()ed 46 * code and returns null if the eval throws an exception. 55 // eval('(' + expr + ')'); 60 // e.g. eval("(function() {})") returns undefined, and not a function 62 return eval('[' + expr + '][0]'); 64 log('EVAL FAILED ' + expr + ': ' + e);
|
| /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
| jstemplate_compiled.js | 127 * Wrapper for the eval() builtin function to evaluate expressions and 131 * errors. Also protects against other syntax errors in the eval()ed 132 * code and returns null if the eval throws an exception. 139 return eval('[' + expr + '][0]'); 147 * Wrapper for the eval() builtin function to execute statements. This 151 * javascript's eval semantics is murky in that it confounds 160 eval(stmt); 169 * Wrapper for eval with a context. NOTE: The style guide 170 * deprecates eval, so this is the exception that proves the 184 return eval('[' + expr + '][0]') [all...] |
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| ChrootChecker.cpp | 41 class ChrootChecker : public Checker<eval::Call, check::PreStmt<CallExpr> > {
|
| OSAtomicChecker.cpp | 25 class OSAtomicChecker : public Checker<eval::Call> {
|
| /external/v8/test/mjsunit/ |
| debug-clearbreakpointgroup.js | 41 return eval('(' + code + ')'); 85 eval(source);
|
| debug-liveedit-check-stack.js | 38 this.ChooseAnimal = eval( 45 // Prevents eval script caching.
|
| div-mod.js | 44 var div_func = this.eval("(function(left) { return left / " + divisor + "; })"); 45 var mod_func = this.eval("(function(left) { return left % " + divisor + "; })");
|
| mirror-regexp.js | 43 var tmp = eval('(' + json_refs + ')'); 82 var fromJSON = eval('(' + json + ')');
|
| mirror-unresolved-function.js | 32 var tmp = eval('(' + json_refs + ')'); 69 var fromJSON = eval('(' + json + ')');
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
| 15.1.2.5-3.js | 120 String.fromCharCode(eval("0x"+ (ToUnicodeString(CHARCODE)).substring(0,2))) +
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
| 9.2.js | 51 testcases[tc++] = new TestCase( SECTION, "Boolean(var x)", false, Boolean(eval("var x")) );
|
| /external/webkit/Source/WebCore/bridge/jni/ |
| jni_jsobject.h | 55 Eval, 84 jobject eval(jstring script) const;
|
| /external/webkit/Source/WebCore/html/parser/ |
| HTMLPreloadScanner.cpp | 111 return mediaQueryEvaluator.eval(mediaList.get());
|