Searched refs:call (Results 26 - 50 of 3576) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2443.js30 assertThrows(function() { Number.prototype.toExponential.call({}) },
33 assertThrows(function() { Number.prototype.toPrecision.call({}) },
36 assertThrows(function() { Number.prototype.toFixed.call({}) },
39 assertThrows(function() { Number.prototype.toString.call({}) },
42 assertThrows(function() { Number.prototype.toLocaleString.call({}) },
45 assertThrows(function() { Number.prototype.ValueOf.call({}) },
55 Number.prototype.toExponential.call(x_obj, 2));
58 Number.prototype.toPrecision.call(x_obj, 2));
61 Number.prototype.toFixed.call(x_obj, 2));
65 Number.prototype.toExponential.call(
[all...]
H A Dregress-1131.js29 Array.prototype.sort.call(nonArray);
H A Dregress-2273.js60 CheckStringReceiver.call("foo");
61 CheckNumberReceiver.call(42);
62 CheckUndefinedReceiver.call(undefined);
63 CheckNullReceiver.call(null);
70 CheckCoersion.call("foo");
71 CheckCoersion.call(42);
72 CheckCoersion.call(undefined);
73 CheckCoersion.call(null);
83 CheckStringReceiver.call("foo");
84 CheckNumberReceiver.call(4
[all...]
H A Dregress-crbug-242502.js34 function call(o) { function
45 assertEquals(23, call(o1));
46 assertEquals(23, call(o1));
48 assertEquals(23, call(o2));
49 assertEquals(23, call(o3));
50 assertEquals(23, call(o4));
51 assertEquals(23, call(o5));
65 %OptimizeFunctionOnNextCall(call);
66 assertEquals(23, call(oboom));
H A Dregress-485.js35 assertEquals(global, global2, "direct call to local function returns global");
42 assertTrue("[object builtins]" != builtin2(), "Direct call to toString");
43 assertTrue("[object builtins]" != builtin2.call(), "call() to toString");
44 assertTrue("[object builtins]" != builtin2.apply(), "call() to toString");
45 assertTrue("[object builtins]" != builtin2.call.call(builtin2),
46 "call.call() to toString");
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DCallable.java25 V call() throws Exception; method in interface:Callable
/external/llvm/test/MC/ELF/
H A Dweak-relocation.s8 call foo
/external/llvm/test/MC/MachO/
H A Dreloc-pcrel-offset.s15 call _a
/external/svox/PicoLangInstallerDeuDeu/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerEngGbr/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerEngUsa/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerFraFra/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerItaIta/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerSpaEsp/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/picolanginstaller/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/v8/test/mjsunit/regress/
H A Dregress-1131.js29 Array.prototype.sort.call(nonArray);
H A Dregress-485.js35 assertEquals(global, global2, "direct call to local function returns global");
42 assertTrue("[object builtins]" != builtin2(), "Direct call to toString");
43 assertTrue("[object builtins]" != builtin2.call(), "call() to toString");
44 assertTrue("[object builtins]" != builtin2.apply(), "call() to toString");
45 assertTrue("[object builtins]" != builtin2.call.call(builtin2),
46 "call.call() to toString");
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas32/
H A Dgas32-jmpcall.asm0 call foo
1 call foo label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas64-jmpcall.asm0 call foo
1 call foo label
/external/clang/test/CodeGenCXX/
H A Dinstantiate-temporaries.cpp17 void call() { function
22 // CHECK: call void @_ZN1Y3getEv
23 // CHECK-NEXT: call void @_ZN1XD1Ev
25 template void call<int>();
33 // CHECK: call void @_ZN1XC1Ev
34 // CHECK-NEXT: call void @_ZN2X2D1Ev
/external/ganymed-ssh2/
H A DAndroid.mk17 LOCAL_PATH := $(call my-dir)
21 LOCAL_SRC_FILES := $(call all-java-files-under,src)
/external/javassist/
H A DAndroid.mk17 LOCAL_PATH := $(call my-dir)
25 LOCAL_SRC_FILES := $(call all-java-files-under,src/main)
/external/svox/
H A DAndroid.mk1 LOCAL_PATH:= $(call my-dir)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DUIString.js39 return String.vsprintf(string, Array.prototype.slice.call(arguments, 1));
/external/chromium_org/v8/test/mjsunit/
H A Dhas-own-property.js34 assertTrue(Object.prototype.hasOwnProperty.call('', 'length'));
38 assertFalse(Object.prototype.hasOwnProperty.call(123, 'length'));

Completed in 2888 milliseconds

1234567891011>>