HomeSort by relevance Sort by last modified time
    Searched refs:eval (Results 476 - 500 of 747) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-156354.js 92 // let's try one via eval(), too -
94 eval("actual = obj.propertyIsEnumerable('prop2')");
regress-159334.js 42 * string literals. The following will evaluate, via eval(), a script like this:
66 // Create big string for eval recursively to avoid N*N behavior
73 eval(long_eval);
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
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-208496-001.js 81 * EVAL SCOPE
104 eval(s);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/String/
regress-179068.js 42 * For that the script passes to eval() "str ='LONG_STRING_LITERAL';" where
54 * > eval("str='".concat(long_str, "';"));
59 * > uses eval() simply to assign the value of |long_str| to |str|. Why is
67 * > Or do we specifically need to test eval() to exercise the interpreter?
69 * The reason for eval is to test string literals like in 'a string literal
71 * run time where lengths > 64K. Without eval it would be necessary to have
78 * > you have done: |eval("str='".concat(long_str, "';"))|, or can we simply
79 * > do |eval("str = long_str;")| ?
81 * The concat is a replacement for eval("str='"+long_str+"';"), but as
105 // Generate 200K long string and assign it to |str| via eval()
    [all...]
  /external/webkit/Source/WebCore/css/
MediaQueryList.cpp 72 setMatches(evaluator->eval(m_media.get()));
  /libcore/
CaCerts.mk 44 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
54 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
  /sdk/anttasks/src/com/android/ant/
IfElseTask.java 110 mCondition = mAnd.eval();
  /external/v8/test/mjsunit/
array-constructor.js 91 var a = eval('[' + str + ']');
92 var b = eval('new Array(' + str + ')')
93 var c = eval('Array(' + str + ')')
debug-referenced-by.js 72 // Use closure with eval - creates arguments array.
75 eval(s);
77 return function e(s) { eval(s); };
dont-reinit-global-var.js 44 eval('var baz;');
46 eval('var baz = "hest";');
function-without-prototype.js 40 eval(name + ".prototype = 42;");
44 testPrototype(eval);
newline-in-string.js 40 assertEquals('asdfasdf', eval(code));
44 assertEquals('asdfasdf', eval(code));
  /ndk/build/core/
setup-app.mk 34 $(eval NDK_$(__name) := $(call get,$(_map),$(__name)))\
81 $(eval TARGET_ARCH_ABI := $(_abi))\
82 $(eval include $(BUILD_SYSTEM)/setup-abi.mk) \
add-platform.mk 31 $(eval NDK_PLATFORM_$(_platform)_$(_abi)_SYSROOT := $(NDK_PLATFORMS_ROOT)/$(_platform)/arch-$(_abi))\
  /external/icu4c/i18n/
astro.h 648 virtual double eval(CalendarAstronomer&) = 0;
658 virtual void eval(Equatorial& result, CalendarAstronomer&) = 0;
  /external/mksh/
Android.mk 28 LOCAL_SRC_FILES:= src/lalloc.c src/edit.c src/eval.c src/exec.c \
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 128 if ((rc = EE_Init(&impl->eval)) != ESR_SUCCESS)
165 EE_Free(impl->eval);
    [all...]
  /external/v8/test/mjsunit/compiler/
expression-trees.js 79 eval(identifiers[j] + "+= ''");
82 eval(identifiers[j] + "= +" + identifiers[j]);
102 eval(identifiers[j] + "+= ''");
105 eval(identifiers[j] + "= +" + identifiers[j]);
regress-closures-with-eval.js 28 // Verifies that closures in presence of eval work fine.
37 var o = eval(expr);
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
remove-item.js 5 storage = eval(storageString);
  /external/webkit/Source/JavaScriptCore/API/tests/
testapi.js 46 evalA = eval(a);
61 eval(a);
  /external/webkit/Source/WebCore/dom/
StyleElement.cpp 147 if (screenEval.eval(mediaList.get()) || printEval.eval(mediaList.get())) {
  /ndk/toolchains/arm-linux-androideabi-4.4.3/
setup.mk 88 $(eval __arm_sources := $(call get-src-files-with-tag,arm)) \
89 $(eval __thumb_sources := $(call get-src-files-without-tag,arm)) \
90 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
91 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
  /system/core/sh/
Android.mk 11 eval.c \

Completed in 730 milliseconds

<<11121314151617181920>>