HomeSort by relevance Sort by last modified time
    Searched defs:load (Results 1 - 25 of 1522) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/regress/
regress-crbug-425519.js 7 function load(a, i) { function
11 load([]);
12 load(0);
13 load("x", 0);
14 %OptimizeFunctionOnNextCall(load);
15 load([], 0);
regress-crbug-354391.js 7 function load(a, i) { function
12 return load(arguments, index);
17 load([11, 22, 33], 0);
20 %OptimizeFunctionOnNextCall(load);
regress-331416.js 30 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));
regress-4296.js 8 function load(o, i) { return o[i]; } function
12 load(o, 2);
15 assertEquals("a", load(o, 0));
21 function load(o, i) { return o[i]; }
25 load(o, 2);
28 assertEquals("a", load(o, 0));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRFileStream.as 11 load(file, encoding);
14 public function load(file:File, encoding:String = null):void { function
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
import.rb 8 def load( grammar ) method in class:TestImportedGrammars
27 load inline_grammar( <<-'END' )
59 load inline_grammar( <<-'END' )
94 load inline_grammar( <<-'END' )
137 load inline_grammar( <<-'END' )
181 load inline_grammar( <<-'END' )
216 load inline_grammar( <<-'END' )
244 load inline_grammar( <<-'END' )
271 load inline_grammar( <<-'END' )
299 load inline_grammar( <<-'END'
    [all...]
  /external/jsilver/src/org/clearsilver/
CSFileLoader.java 34 public String load(HDF hdf, String filename) throws IOException; method in interface:CSFileLoader
  /external/opencv3/modules/cudacodec/src/
video_writer.cpp 54 void cv::cudacodec::EncoderParams::load(const String&) { throw_no_cuda(); } function in class:cv::cudacodec::EncoderParams
836 load(configFile);
839 void cv::cudacodec::EncoderParams::load(const String& configFile)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceEncoder.java 1 package com.bumptech.glide.load;
3 import com.bumptech.glide.load.engine.Resource;
Encoder.java 1 package com.bumptech.glide.load;
ResourceDecoder.java 1 package com.bumptech.glide.load;
3 import com.bumptech.glide.load.engine.Resource;
Transformation.java 1 package com.bumptech.glide.load;
3 import com.bumptech.glide.load.engine.Resource;
  /external/junit/src/junit/runner/
StandardTestSuiteLoader.java 7 * 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
TestSuiteLoader.java 9 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
  /external/v8/test/mjsunit/asm/
float32array-outofbounds.js 8 function load(i) {
18 return { load: load, store: store };
27 assertEquals(42.0, m.load(0));
29 assertEquals(NaN, m.load(i * 4 * 32 * 1024));
float64array-outofbounds.js 8 function load(i) {
18 return { load: load, store: store };
27 assertEquals(3.12, m.load(0));
29 assertEquals(NaN, m.load(i * 8 * 32 * 1024));
int32array-outofbounds.js 8 function load(i) {
18 return { load: load, store: store };
27 assertEquals(0x12345678, m.load(0));
29 assertEquals(0, m.load(i * 4 * 32 * 1024));
int32array-unaligned.js 8 function load(i) {
18 return { load: load, store: store };
27 assertEquals(0x12345678, m.load(i));
30 assertEquals(-1, m.load(i));
35 assertEquals(0x12345678, m.load(i));
38 assertEquals(0x11223344, m.load(i));
41 assertEquals(-1, m.load(i));
uint8array-outofbounds.js 8 function load(i) {
18 return { load: load, store: store };
27 assertEquals(255, m.load(0));
29 assertEquals(0, m.load(i * 1 * 32 * 1024));
  /external/v8/test/mjsunit/compiler/
property-static.js 33 // 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/v8/test/mjsunit/
load_poly_effect.js 34 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));
  /external/v8/test/simdjs/
harness-adapt.js 9 var _oldLoad = load; function
11 // Filter load paths in the ecmascript_simd tests that
14 load = function(filename) {
24 // To enable SIMD polyfill, load ecmascript_simd.js here,
28 load('base.js');
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRInputStream.java 68 load(isr, size, readBufferSize); method
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRFileStream.pm 48 sub load { subroutine
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineKeyFactory.java 1 package com.bumptech.glide.load.engine;
3 import com.bumptech.glide.load.Encoder;
4 import com.bumptech.glide.load.Key;
5 import com.bumptech.glide.load.ResourceDecoder;
6 import com.bumptech.glide.load.ResourceEncoder;
7 import com.bumptech.glide.load.Transformation;
8 import com.bumptech.glide.load.resource.transcode.ResourceTranscoder;

Completed in 345 milliseconds

1 2 3 4 5 6 7 8 91011>>