Searched refs:load (Results 1 - 25 of 890) sorted by relevance

1234567891011>>

/external/chromium_org/v8/benchmarks/
H A Drun.js29 load('base.js');
30 load('richards.js');
31 load('deltablue.js');
32 load('crypto.js');
33 load('raytrace.js');
34 load('earley-boyer.js');
35 load('regexp.js');
36 load('splay.js');
37 load('navier-stokes.js');
/external/v8/benchmarks/
H A Drun.js29 load('base.js');
30 load('richards.js');
31 load('deltablue.js');
32 load('crypto.js');
33 load('raytrace.js');
34 load('earley-boyer.js');
35 load('regexp.js');
36 load('splay.js');
37 load('navier-stokes.js');
/external/chromium_org/chrome/browser/resources/extensions/
H A Dextension_info.js11 function load() {
19 load: load
23 window.addEventListener('DOMContentLoaded', extension_info.load);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-331416.js30 function load(a, i) { function
33 load([1, 2, 3], "length");
34 load(3);
35 load([1, 2, 3], 3);
36 load(0, 0);
37 %OptimizeFunctionOnNextCall(load);
38 assertEquals(2, load([1, 2, 3], 1));
39 assertEquals(undefined, load(0, 0));
H A Dregress-545.js40 new IsPrimitive(load())?this.join():String('
').charCodeAt((!this>Math));
/external/v8/test/mjsunit/regress/
H A Dregress-545.js40 new IsPrimitive(load())?this.join():String('
').charCodeAt((!this>Math));
/external/chromium_org/v8/test/mjsunit/
H A Dload_poly_effect.js34 function load(o, o2) { function
42 load({x:1}, o2);
43 load({x:1}, o2);
44 print(load(o, o2));
45 %OptimizeFunctionOnNextCall(load);
47 print(load(o, o2));
H A Dpolymorph-arrays.js45 function load(a, i) {
59 assertEquals(1, load(object_array, 1));
60 assertEquals(1, load(js_array, 1));
61 assertEquals(1, load(sparse_object_array, 1));
62 assertEquals(1, load(sparse_js_array, 1));
64 return load;
77 load = make_polymorphic_load_function();
78 assertEquals(undefined, load(js_array, new Object()));
79 load = make_polymorphic_load_function();
80 assertEquals(undefined, load(object_arra
[all...]
H A Domit-constant-mapcheck.js32 function load() { function
36 assertEquals(1, load());
37 assertEquals(1, load());
38 %OptimizeFunctionOnNextCall(load);
39 assertEquals(1, load());
41 assertEquals(undefined, load());
H A Dmegamorphic-callbacks.js28 function load(o) { function
45 load(o);
58 // Perform the load checks.
59 assertEquals(100, o.x, "normal load");
60 assertEquals(100, load(o), "ic load");
H A Dglobal-load-from-eval.js66 function testDeep(source, load, test) {
73 eval(load);
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dsuccess.js5 function load() { function
15 document.addEventListener('DOMContentLoaded', load);
/external/chromium_org/tools/gyp/tools/emacs/
H A Drun-unit-tests.sh6 --load ert.el --load gyp.el --load gyp-tests.el \
/external/v8/test/mjsunit/
H A Dpolymorph-arrays.js45 function load(a, i) {
59 assertEquals(1, load(object_array, 1));
60 assertEquals(1, load(js_array, 1));
61 assertEquals(1, load(sparse_object_array, 1));
62 assertEquals(1, load(sparse_js_array, 1));
64 return load;
77 load = make_polymorphic_load_function();
78 assertEquals(undefined, load(js_array, new Object()));
79 load = make_polymorphic_load_function();
80 assertEquals(undefined, load(object_arra
[all...]
H A Dmegamorphic-callbacks.js28 function load(o) { function
45 load(o);
58 // Perform the load checks.
59 assertEquals(100, o.x, "normal load");
60 assertEquals(100, load(o), "ic load");
H A Dglobal-load-from-eval.js66 function testDeep(source, load, test) {
73 eval(load);
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-static.js33 // Prepare a highly polymorphic load to be used by all tests.
34 Object.prototype.load = function() { return this.property; };
35 Object.prototype.load.call({ A:0, property:10 });
36 Object.prototype.load.call({ A:0, B:0, property:11 });
37 Object.prototype.load.call({ A:0, B:0, C:0, property:12 });
38 Object.prototype.load.call({ A:0, B:0, C:0, D:0, property:13 });
39 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, property:14 });
40 Object.prototype.load.call({ A:0, B:0, C:0, D:0, E:0, F:0, property:15 });
46 return object.load();
62 return object.load();
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetLoader.java40 * The loader will load the data in the provided {@link AssetInfo} object by
53 public Object load(AssetInfo assetInfo) throws IOException; method in interface:AssetLoader
/external/jsilver/src/org/clearsilver/
H A DCSFileLoader.java34 public String load(HDF hdf, String filename) throws IOException; method in interface:CSFileLoader
/external/junit/src/junit/runner/
H A DTestSuiteLoader.java9 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DStandardTestSuiteLoader.java7 * The standard test suite loader. It can only load the same class once.
12 * Uses the system class loader to load the test class
14 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:StandardTestSuiteLoader
18 * Uses the system class loader to load the test class
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DServiceLoaderTest.java72 ServiceLoader<Service> serviceLoader = ServiceLoader.load(
96 Iterator itr = ServiceLoader.load(Service.class, ucl).iterator();
108 itr = ServiceLoader.load(ServiceForWrongNameTest.class, ucl).iterator();
124 itr = ServiceLoader.load(null).iterator();
127 itr = ServiceLoader.load(null, null).iterator();
130 itr = ServiceLoader.load(null, ClassLoader.getSystemClassLoader())
134 itr = ServiceLoader.load(Service.class, null).iterator();
177 * @tests {@link java.util.ServiceLoader#load(java.lang.Class, java.lang.ClassLoader)}.
184 ServiceLoader serviceLoader = ServiceLoader.load(Service.class, ucl);
192 serviceLoader = ServiceLoader.load(ServiceFinalClas
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dslow.js43 function load() { function
48 document.addEventListener('DOMContentLoaded', load);
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dvp8_sad16x16_armv6.asm38 ldr r6, [r0, #0x0] ; load 4 src pixels (1A)
39 ldr r8, [r2, #0x0] ; load 4 ref pixels (1A)
40 ldr r7, [r0, #0x4] ; load 4 src pixels (1A)
41 ldr r9, [r2, #0x4] ; load 4 ref pixels (1A)
42 ldr r10, [r0, #0x8] ; load 4 src pixels (1B)
43 ldr r11, [r0, #0xC] ; load 4 src pixels (1B)
48 ldr r12, [r2, #0x8] ; load 4 ref pixels (1B)
49 ldr lr, [r2, #0xC] ; load 4 ref pixels (1B)
60 ldr r6, [r0, #0x0] ; load 4 src pixels (2A)
61 ldr r7, [r0, #0x4] ; load
[all...]
/external/valgrind/main/exp-bbv/tests/ppc32-linux/
H A Dmillion.S8 lis 15,499997@ha # load high 16-bits of counter
9 addi 15,15,499997@l # load low 16-bits of counter

Completed in 3455 milliseconds

1234567891011>>