/external/javassist/src/main/javassist/convert/ |
TransformBefore.java | 84 Bytecode load = new Bytecode(cp, 0, 0); local 88 load.addAload(var); 89 makeCode2(save, load, 0, len, paramTypes, var + 1); 93 loadCode = load.get(); 96 private void makeCode2(Bytecode save, Bytecode load, 100 int size = load.addLoad(var, paramTypes[i]); 101 makeCode2(save, load, i + 1, n, paramTypes, var + size);
|
/external/chromium_org/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/jmonkeyengine/engine/src/xml/com/jme3/export/xml/ |
XMLImporter.java | 74 public Object load(AssetInfo info) throws IOException{ method in class:XMLImporter 77 Savable obj = load(in); 82 public Savable load(File f) throws IOException { method in class:XMLImporter 86 Savable sav = load(fis); 93 public Savable load(InputStream f) throws IOException { method in class:XMLImporter
|
/frameworks/base/media/java/android/media/ |
SoundPool.java | 42 * to ship with compressed streams without having to suffer the CPU load 83 * through the list of sounds calling the appropriate SoundPool.load() 132 * Load the sound from the specified path. 139 public int load(String path, int priority) { method in class:SoundPool 140 return mImpl.load(path, priority); 144 * Load the sound from the specified APK resource. 146 * Note that the extension is dropped. For example, if you want to load 158 public int load(Context context, int resId, int priority) { method in class:SoundPool 159 return mImpl.load(context, resId, priority); 163 * Load the sound from an asset file descriptor 170 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool 188 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool 412 public int load(String path, int priority); method in interface:SoundPool.SoundPoolDelegate 413 public int load(Context context, int resId, int priority); method in interface:SoundPool.SoundPoolDelegate 414 public int load(AssetFileDescriptor afd, int priority); method in interface:SoundPool.SoundPoolDelegate 415 public int load( method in interface:SoundPool.SoundPoolDelegate 469 public int load(String path, int priority) method in class:SoundPool.SoundPoolImpl 490 public int load(Context context, int resId, int priority) { method in class:SoundPool.SoundPoolImpl 504 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool.SoundPoolImpl 516 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool.SoundPoolImpl 627 public int load(String path, int priority) { method in class:SoundPool.SoundPoolStub 631 public int load(Context context, int resId, int priority) { method in class:SoundPool.SoundPoolStub 635 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool.SoundPoolStub 639 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool.SoundPoolStub [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/ |
residu_asm_neon.s | 51 SUB r8, r9, #4 @load the x[i-2] address 55 SUB r8, r9, #6 @load the x[i-3] address 59 SUB r8, r9, #8 @load the x[i-4] address 63 SUB r8, r9, #10 @load the x[i-5] address 67 SUB r8, r9, #12 @load the x[i-6] address 71 SUB r8, r9, #14 @load the x[i-7] address 75 SUB r8, r9, #16 @load the x[i-8] address 79 SUB r8, r9, #18 @load the x[i-9] address 83 SUB r8, r9, #20 @load the x[i-10] address 87 SUB r8, r9, #22 @load the x[i-11] addres [all...] |
/external/chromium_org/net/disk_cache/v3/ |
block_bitmaps.cc | 73 int load[kFirstAdditionalBlockFile]; local 75 GetFileStats(i, &used_blocks[i], &load[i]); 82 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_0", load[0], 101); 83 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_1", load[1], 101); 84 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_2", load[2], 101); 85 UMA_HISTOGRAM_ENUMERATION("DiskCache.BlockLoad_3", load[3], 101); 159 void BlockBitmaps::GetFileStats(int index, int* used_count, int* load) { 162 *load = 0; 175 *load = *used_count * 100 / max_blocks;
|
/external/guava/guava-tests/test/com/google/common/cache/ |
TestingCacheLoaders.java | 36 * {@link CacheLoader#load} calls to {@code loader}. 41 public V load(K key) throws Exception { 42 return loader.load(key); 49 result.put(key, load(key)); 76 public V load(K key) { 88 public V load(K key) throws Exception { 109 public Object load(Object from) { 127 public V load(K key) { 134 * An {@code Integer} loader that returns the key for {@code load} requests, and increments the 135 * old value on {@code reload} requests. The load counts are accessible via {@link #getLoadCount [all...] |
/external/chromium_org/v8/benchmarks/ |
run.js | 29 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/ |
run.js | 29 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');
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ImportNode.java | 110 doc = (Document) load("staffNS", builder); 111 aNewDoc = (Document) load("staffNS", builder); 143 doc = (Document) load("staffNS", builder); 144 aNewDoc = (Document) load("staffNS", builder); 165 doc = (Document) load("staffNS", builder); 166 aNewDoc = (Document) load("staffNS", builder); 187 doc = (Document) load("staff", builder); 188 aNewDoc = (Document) load("staff", builder); 210 doc = (Document) load("staffNS", builder); 211 aNewDoc = (Document) load("staffNS", builder) [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryImporter.java | 101 public Object load(AssetInfo info){ method in class:BinaryImporter 110 Savable s = load(is); 125 public Savable load(InputStream is) throws IOException { method in class:BinaryImporter 126 return load(is, null, null); 129 public Savable load(InputStream is, ReadListener listener) throws IOException { method in class:BinaryImporter 130 return load(is, listener, null); 133 public Savable load(InputStream is, ReadListener listener, ByteArrayOutputStream baos) throws IOException { method in class:BinaryImporter 254 public Savable load(URL f) throws IOException { method in class:BinaryImporter 255 return load(f, null); 258 public Savable load(URL f, ReadListener listener) throws IOException method in class:BinaryImporter 265 public Savable load(File f) throws IOException { method in class:BinaryImporter 269 public Savable load(File f, ReadListener listener) throws IOException { method in class:BinaryImporter 276 public Savable load(byte[] data) throws IOException { method in class:BinaryImporter [all...] |
/art/runtime/ |
atomic_integer.h | 41 int32_t load() const { function in class:art::AtomicInteger 46 return load();
|
/dalvik/vm/mterp/armv5te/ |
OP_CONST_16.S | 5 FETCH_ADVANCE_INST(2) @ advance rPC, load rINST
|
OP_MOVE_16.S | 6 FETCH_ADVANCE_INST(3) @ advance rPC, load rINST
|
OP_MOVE_FROM16.S | 6 FETCH_ADVANCE_INST(2) @ advance rPC, load rINST
|
OP_MOVE_RESULT.S | 5 FETCH_ADVANCE_INST(1) @ advance rPC, load rINST
|
/dalvik/vm/mterp/mips/ |
OP_CONST_16.S | 5 FETCH_ADVANCE_INST(2) # advance rPC, load rINST
|
OP_CONST_4.S | 5 FETCH_ADVANCE_INST(1) # advance rPC, load rINST
|
OP_CONST_HIGH16.S | 6 FETCH_ADVANCE_INST(2) # advance rPC, load rINST
|
OP_LONG_TO_INT.S | 4 FETCH_ADVANCE_INST(1) # advance rPC, load rINST
|
OP_MOVE.S | 6 FETCH_ADVANCE_INST(1) # advance rPC, load rINST
|
OP_MOVE_16.S | 6 FETCH_ADVANCE_INST(3) # advance rPC, load rINST
|
OP_MOVE_FROM16.S | 6 FETCH_ADVANCE_INST(2) # advance rPC, load rINST
|
OP_MOVE_RESULT.S | 5 FETCH_ADVANCE_INST(1) # advance rPC, load rINST
|
unop.S | 14 FETCH_ADVANCE_INST(1) # advance rPC, load rINST
|