/build/core/ |
product.mk | 39 $(eval PRODUCT_MAKEFILES :=) \ 40 $(eval LOCAL_DIR := $(patsubst %/,%,$(dir $(f)))) \ 41 $(eval include $(f)) \ 44 $(eval PRODUCT_MAKEFILES :=) \ 45 $(eval LOCAL_DIR :=) \ 105 $(eval $(v) := $($(v)) $(INHERIT_TAG)$(strip $(1)))) \ 106 $(eval inherit_var := \ 108 $(eval $(inherit_var) := $(sort $($(inherit_var)) $(strip $(1)))) \ 109 $(eval inherit_var:=) \ 110 $(eval ALL_PRODUCTS := $(sort $(ALL_PRODUCTS) $(word 1,$(_include_stack))) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.13.2-1.js | 60 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 *= VAR2", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 *= VAR2") ); 61 array[item++] = new TestCase( SECTION, "VAR1 = NaN; VAR2=1; VAR1 *= VAR2; VAR1", Number.NaN, eval("VAR1 = Number.NaN; VAR2=1; VAR1 *= VAR2; VAR1") ); 64 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 *= VAR2", 0, eval("VAR1 = 0; VAR2=1; VAR1 *= VAR2") ); 65 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2=1; VAR1 *= VAR2;VAR1", 0, eval("VAR1 = 0; VAR2=1; VAR1 *= VAR2;VAR1") ); 67 array[item++] = new TestCase( SECTION, "VAR1 = 0xFF; VAR2 = 0xA, VAR1 *= VAR2", 2550, eval("VAR1 = 0XFF; VAR2 = 0XA, VAR1 *= VAR2") ); 71 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2= Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = 0; VAR2 = Number.POSITIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 72 array[item++] = new TestCase( SECTION, "VAR1 = -0; VAR2= Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = -0; VAR2 = Number.POSITIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 73 array[item++] = new TestCase( SECTION, "VAR1 = -0; VAR2= -Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = -0; VAR2 = Number.NEGATIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 74 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2= -Infinity; VAR1 *= VAR2", Number.NaN, eval("VAR1 = 0; VAR2 = Number.NEGATIVE_INFINITY; VAR1 *= VAR2; VAR1") ); 76 array[item++] = new TestCase( SECTION, "VAR1 = 0; VAR2= Infinity; VAR2 *= VAR1", Number.NaN, eval("VAR1 = 0; VAR2 = Number.POSITIVE_INFINITY; VAR2 *= VAR1; VAR2") ) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.4-4.js | 64 array[item++] = new TestCase( SECTION, "x = null; x.__proto.charAt = String.prototype.charAt; x.charAt(0)", "n", eval("x=null; x.__proto__.charAt = String.prototype.charAt; x.charAt(0)") ); 65 array[item++] = new TestCase( SECTION, "x = null; x.__proto.charAt = String.prototype.charAt; x.charAt(1)", "u", eval("x=null; x.__proto__.charAt = String.prototype.charAt; x.charAt(1)") ); 66 array[item++] = new TestCase( SECTION, "x = null; x.__proto.charAt = String.prototype.charAt; x.charAt(2)", "l", eval("x=null; x.__proto__.charAt = String.prototype.charAt; x.charAt(2)") ); 67 array[item++] = new TestCase( SECTION, "x = null; x.__proto.charAt = String.prototype.charAt; x.charAt(3)", "l", eval("x=null; x.__proto__.charAt = String.prototype.charAt; x.charAt(3)") ); 69 array[item++] = new TestCase( SECTION, "x = undefined; x.__proto.charAt = String.prototype.charAt; x.charAt(0)", "u", eval("x=undefined; x.__proto__.charAt = String.prototype.charAt; x.charAt(0)") ); 70 array[item++] = new TestCase( SECTION, "x = undefined; x.__proto.charAt = String.prototype.charAt; x.charAt(1)", "n", eval("x=undefined; x.__proto__.charAt = String.prototype.charAt; x.charAt(1)") ); 71 array[item++] = new TestCase( SECTION, "x = undefined; x.__proto.charAt = String.prototype.charAt; x.charAt(2)", "d", eval("x=undefined; x.__proto__.charAt = String.prototype.charAt; x.charAt(2)") ); 72 array[item++] = new TestCase( SECTION, "x = undefined; x.__proto.charAt = String.prototype.charAt; x.charAt(3)", "e", eval("x=undefined; x.__proto__.charAt = String.prototype.charAt; x.charAt(3)") ); 74 array[item++] = new TestCase( SECTION, "x = false; x.__proto.charAt = String.prototype.charAt; x.charAt(0)", "f", eval("x=false; x.__proto__.charAt = String.prototype.charAt; x.charAt(0)") ); 75 array[item++] = new TestCase( SECTION, "x = false; x.__proto.charAt = String.prototype.charAt; x.charAt(1)", "a", eval("x=false; x.__proto__.charAt = String.prototype.charAt; x.charAt(1)") ) [all...] |
15.5.4.4-2.js | 61 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(0)", "t", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(0)") ); 62 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(1)", "r", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(1)") ); 63 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(2)", "u", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(2)") ); 64 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(3)", "e", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(3)") ); 65 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(4)", "", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(4)") ); 66 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(-1)", "", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(-1)") ); 68 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(true)", "r", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(true)") ); 69 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(false)", "t", eval("x = new Boolean(true); x.charAt=String.prototype.charAt;x.charAt(false)") ); 71 array[item++] = new TestCase( SECTION, "x = new String(); x.charAt(0)", "", eval("x=new String();x.charAt(0)") ); 72 array[item++] = new TestCase( SECTION, "x = new String(); x.charAt(1)", "", eval("x=new String();x.charAt(1)") ) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/LexicalConventions/ |
keywords-001.js | 19 eval("super;");
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
try-003.js | 47 eval( expression ); 64 "eval( " + expression +" )", 69 "eval( " + expression +" )", 74 "eval( " + expression +" )",
|
try-004.js | 39 result = eval( value ); 46 "eval( " + value +" )",
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Unicode/ |
uc-001-n.js | 34 reportCompare ("error", eval ("'no'\u001C+' error'"), 36 reportCompare ("error", eval ("'no'\u001D+' error'"), 38 reportCompare ("error", eval ("'no'\u001E+' error'"), 40 reportCompare ("error", eval ("'no'\u001F+' error'"),
|
/external/v8/test/mjsunit/regress/ |
regress-1036894.js | 28 xeval = function(s) { eval(s); } 31 foo = function() { eval("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }"); } 34 xeval = function(s) { eval(s); } 35 eval("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }"); 37 xeval = function(s) { eval(s); }
|
regress-221.js | 28 // Test that direct eval calls handle the case where eval has been 33 assertThrows('eval(delete eval)');
|
regress-496.js | 30 // Tests that we do not treat the unaliased eval call in g as an 31 // aliased call to eval. 34 function f() { return eval; } 35 function g() { var x = 44; return eval("x"); }
|
/external/v8/test/mjsunit/ |
debug-compile-event.js | 38 var eval_compilations = 0; // Number of scources compiled through eval. 44 eval(current_source); 62 case Debug.ScriptCompilationType.Eval: 71 // If the compiled source contains 'eval' there will be additional compile 72 // events for the source inside eval. 73 if (current_source.indexOf('eval') == 0) { 74 // For source with 'eval' there will be compile events with substrings 85 // For source without 'eval' there will be a compile events with the 91 var msg = eval('(' + json + ')'); 111 compileSource('eval("a=2")') [all...] |
local-load-from-eval.js | 28 // Tests loads of local properties from eval. 32 eval(source); 37 test("(function() { var y = 42; eval('1'); assertEquals(42, y); })();"); 38 test("(function() { var y = 42; eval('var y = 2; var z = 2;'); assertEquals(2, y); })();");
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.4-1.js | 89 array[item++] = new TestCase( SECTION, "td = new Date(Number.NaN); td.valueOf()", Number.NaN, eval("td = new Date(Number.NaN); td.valueOf()") ); 90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") ); 91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") ); 92 array[item++] = new TestCase( SECTION, "td = new Date(-0); td.valueOf()", -0, eval("td = new Date(-0); td.valueOf()" ) ); 93 array[item++] = new TestCase( SECTION, "td = new Date(0); td.valueOf()", 0, eval("td = new Date(0); td.valueOf()") ); 97 array[item++] = new TestCase( SECTION, "td = new Date(3.14159); td.valueOf()", 3, eval("td = new Date(3.14159); td.valueOf()") ); 98 array[item++] = new TestCase( SECTION, "td = new Date(Math.PI); td.valueOf()", 3, eval("td = new Date(Math.PI); td.valueOf()") ); 99 array[item++] = new TestCase( SECTION, "td = new Date(-Math.PI);td.valueOf()", -3, eval("td = new Date(-Math.PI);td.valueOf()") ); 100 array[item++] = new TestCase( SECTION, "td = new Date(3.14159e2); td.valueOf()", 314, eval("td = new Date(3.14159e2); td.valueOf()") ); 102 array[item++] = new TestCase( SECTION, "td = new Date(.692147e1); td.valueOf()", 6, eval("td = new Date(.692147e1);td.valueOf()") ) [all...] |
9.4-2.js | 89 array[item++] = new TestCase( SECTION, "td = new Date(Number.NaN); td.valueOf()", Number.NaN, eval("td = new Date(Number.NaN); td.valueOf()") ); 90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") ); 91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") ); 92 array[item++] = new TestCase( SECTION, "td = new Date(-0); td.valueOf()", -0, eval("td = new Date(-0); td.valueOf()" ) ); 93 array[item++] = new TestCase( SECTION, "td = new Date(0); td.valueOf()", 0, eval("td = new Date(0); td.valueOf()") ); 97 array[item++] = new TestCase( SECTION, "td = new Date(3.14159); td.valueOf()", 3, eval("td = new Date(3.14159); td.valueOf()") ); 98 array[item++] = new TestCase( SECTION, "td = new Date(Math.PI); td.valueOf()", 3, eval("td = new Date(Math.PI); td.valueOf()") ); 99 array[item++] = new TestCase( SECTION, "td = new Date(-Math.PI);td.valueOf()", -3, eval("td = new Date(-Math.PI);td.valueOf()") ); 100 array[item++] = new TestCase( SECTION, "td = new Date(3.14159e2); td.valueOf()", 314, eval("td = new Date(3.14159e2); td.valueOf()") ); 102 array[item++] = new TestCase( SECTION, "td = new Date(.692147e1); td.valueOf()", 6, eval("td = new Date(.692147e1);td.valueOf()") ) [all...] |
/external/astl/tests/ |
Android.mk | 40 $(eval include $(CLEAR_VARS)) \ 41 $(eval LOCAL_SRC_FILES := $(file)) \ 42 $(eval LOCAL_C_INCLUDES := $(libastl_test_includes)) \ 43 $(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))$(5)) \ 44 $(eval LOCAL_CFLAGS += $(4)) \ 45 $(eval LOCAL_STATIC_LIBRARIES := $(libastl_test$(5)_static_lib)) \ 46 $(eval LOCAL_MODULE_TAGS := $(2) ) \ 47 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)) \ 48 $(eval include $(BUILD_$(3)EXECUTABLE)) \
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.2.1-3.js | 71 MyFunc = new Function( args, "var r=0; for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; else r += eval('arg'+i); }; return r"); 72 MyObject = new Function( args, "for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; eval('this.arg'+i +'=arg'+i); };"); 75 array[item++] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") ); 79 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") ); 80 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") ); 81 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)") );
|
/external/webkit/WebCore/manual-tests/inspector/ |
hidden-evals.html | 4 <p>The following manual test creates functions via <tt>eval()</tt> and the 19 <li>(program): f_named_1.eval 20 <li>(program): f_named_2.eval 21 <li>(program): f_named_3.eval 54 eval([ 59 "//@sourceURL=f_named_1.eval" 62 eval([ 73 "//@sourceURL=f_named_2.eval" 87 "//@sourceURL=f_named_3.eval"
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.4.2.js | 56 eval("myvar = this; myvar.toString = Object.prototype.toString; myvar.toString()") ); 60 eval("myvar = MyObject; myvar.toString = Object.prototype.toString; myvar.toString()") ); 64 eval("myvar = new MyObject( true ); myvar.toString = Object.prototype.toString; myvar.toString()") ); 68 eval("myvar = new Number(0); myvar.toString = Object.prototype.toString; myvar.toString()") ); 72 eval("myvar = new String(''); myvar.toString = Object.prototype.toString; myvar.toString()") ); 76 eval("myvar = Math; myvar.toString = Object.prototype.toString; myvar.toString()") ); 80 eval("myvar = new Function(); myvar.toString = Object.prototype.toString; myvar.toString()") ); 84 eval("myvar = new Array(); myvar.toString = Object.prototype.toString; myvar.toString()") ); 88 eval("myvar = new Boolean(); myvar.toString = Object.prototype.toString; myvar.toString()") ); 92 eval("myvar = new Date(); myvar.toString = Object.prototype.toString; myvar.toString()") ) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/ |
regress-96284-001.js | 28 * Method: define obj2 = eval(obj1.toSource()) and verify that 49 obj2 = eval(obj1.toSource()); 56 obj2 = eval(obj1.toSource()); 63 obj2 = eval(obj1.toSource()); 70 obj2 = eval(obj1.toSource()); 77 obj2 = eval(obj1.toSource()); 84 obj2 = eval(obj1.toSource()); 91 obj2 = eval(obj1.toSource()); 100 obj2 = eval(obj1.toSource()); 107 obj2 = eval(obj1.toSource()) [all...] |
regress-96284-002.js | 28 * Method: define obj2 = eval(uneval(obj1)) and verify that 49 obj2 = eval(uneval(obj1)); 56 obj2 = eval(uneval(obj1)); 63 obj2 = eval(uneval(obj1)); 70 obj2 = eval(uneval(obj1)); 77 obj2 = eval(uneval(obj1)); 84 obj2 = eval(uneval(obj1)); 91 obj2 = eval(uneval(obj1)); 100 obj2 = eval(uneval(obj1)); 107 obj2 = eval(uneval(obj1)) [all...] |
/external/webkit/WebKit/qt/Api/ |
DerivedSources.pro | 35 # Quotes need to be escaped once more when placed in eval() 36 eval(qtheader_module.commands += echo $${DOUBLE_ESCAPED_QUOTE}\$${LITERAL_HASH}include \\\"$$basename(HEADER)\\\"$${DOUBLE_ESCAPED_QUOTE} >> $${qtheader_module.target} &&) 42 eval($${HEADER_TARGET}.target = $${DESTDIR}/$${HEADER_NAME}) 43 eval($${HEADER_TARGET}.depends = $$HEADER) 44 eval($${HEADER_TARGET}.commands = echo $${DOUBLE_ESCAPED_QUOTE}\$${LITERAL_HASH}include \\\"$$HEADER\\\"$${DOUBLE_ESCAPED_QUOTE} > $$eval($${HEADER_TARGET}.target)) 63 eval($$exp) 67 eval($${CLASS_TARGET}.target = $${DESTDIR}/$${EXPORTED_CLASS}) 68 eval($${CLASS_TARGET}.depends = $$eval($${HEADER_TARGET}.target) [all...] |
/bionic/libc/bionic/ |
err.c | 40 err(int eval, const char *fmt, ...) 45 verr(eval, fmt, ap); 50 errx(int eval, const char *fmt, ...) 55 verrx(eval, fmt, ap); 60 verr(int eval, const char *fmt, va_list ap) 71 exit(eval); 76 verrx(int eval, const char *fmt, va_list ap) 82 exit(eval);
|
/build/core/tasks/ |
sdk-addon.mk | 33 $(eval _src := $(call module-stubs-files,$(call word-colon,1,$(cf)))) \ 34 $(if $(_src),,$(eval $(error Unknown or unlinkable module: $(call word-colon,1,$(cf)). Requested by $(INTERNAL_PRODUCT)))) \ 35 $(eval _dest := $(call word-colon,2,$(cf))) \ 36 $(eval files_to_copy += $(_src):$(_dest)) \ 52 $(eval _src := $(call word-colon,1,$(cf))) \ 53 $(eval _dest := $(call append-path,$(staging),$(call word-colon,2,$(cf)))) \ 54 $(eval $(call copy-one-file,$(_src),$(_dest))) \ 55 $(eval sdk_addon_deps += $(_dest)) \
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
exception-008.js | 30 result = eval("continue;"); 37 "eval(\"continue\") [ exception is " + exception +" ]",
|