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

1 2 3 4 5 6 7 8 91011>>

  /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/v8/test/mjsunit/regress/
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));
  /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/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/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetLoader.java 40 * 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/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/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/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;
CacheLoader.java 1 package com.bumptech.glide.load.engine;
5 import com.bumptech.glide.load.Key;
6 import com.bumptech.glide.load.ResourceDecoder;
7 import com.bumptech.glide.load.engine.cache.DiskCache;
20 public <Z> Resource<Z> load(Key key, ResourceDecoder<File, Z> decoder, int width, int height) { method in class:CacheLoader
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
ModelLoader.java 1 package com.bumptech.glide.load.model;
3 import com.bumptech.glide.load.data.DataFetcher;
24 * @param <Y> The type of the data that can be used by a {@link com.bumptech.glide.load.ResourceDecoder} to decode a
36 * exception during the load process.
43 * cached, or null if no valid {@link com.bumptech.glide.load.data.DataFetcher} could be constructed.
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/file_descriptor/
FileDescriptorModelLoader.java 1 package com.bumptech.glide.load.model.file_descriptor;
5 import com.bumptech.glide.load.model.ModelLoader;
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
StreamModelLoader.java 1 package com.bumptech.glide.load.model.stream;
3 import com.bumptech.glide.load.model.ModelLoader;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileResource.java 1 package com.bumptech.glide.load.resource.file;
3 import com.bumptech.glide.load.resource.SimpleResource;
8 * A simple {@link com.bumptech.glide.load.engine.Resource} that wraps a {@link File}.
  /frameworks/base/test-runner/src/junit/runner/
ReloadingTestSuiteLoader.java 9 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureBase.java 35 tex.load();
51 abstract void load(); method in class:TextureBase
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_StructuredPhoneticName.java 66 rawContact1.load();
67 name1.load();
70 TestContact contact = rawContact1.getContact().load();
84 rawContact1.load();
85 name1.load();
94 rawContact2.load();
95 name2.load();
102 rawContact1.load();
103 rawContact2.load();
107 TestContact contact = rawContact2.getContact().load();
    [all...]

Completed in 704 milliseconds

1 2 3 4 5 6 7 8 91011>>