HomeSort by relevance Sort by last modified time
    Searched refs:load (Results 101 - 125 of 2660) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
megamorphic-callbacks.js 28 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");
omit-constant-mapcheck.js 32 function load() { function
36 assertEquals(1, load());
37 assertEquals(1, load());
38 %OptimizeFunctionOnNextCall(load);
39 assertEquals(1, load());
41 assertEquals(undefined, load());
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheLoader.java 31 * <p>Most implementations will only need to implement {@link #load}. Other methods may be
50 public abstract V load(K key) throws Exception; method in class:CacheLoader
91 public V load(K key) { method in class:CacheLoader.FunctionToCacheLoader
115 public V load(Object key) { method in class:CacheLoader.SupplierToCacheLoader
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
ImageLoader.java 43 * An image loader class. It uses three loaders (AWTLoader, TGALoader and DDSLoader) in an attempt to load the image from the given
54 * This method loads the image from the blender file itself. It tries each loader to load the image.
102 result = this.load(inputStream, flipY);
104 LOGGER.info("Unable to load image using AWT loader!");
109 result = ddsLoader.load(inputStream);
111 LOGGER.info("Unable to load image using DDS loader!");
116 result = TGALoader.load(inputStream, flipY);
118 LOGGER.info("Unable to load image using TGA loader!");
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 28 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");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 54 doc = (Document) load("staffNS", builder);
70 doc = (Document) load("staffNS", builder);
91 doc = (Document) load("staffNS", builder);
ElementHasAttributeNS.java 79 doc = (Document) load("staffNS", builder);
92 doc = (Document) load("staff", builder);
107 doc = (Document) load("staff", builder);
NamespaceURI.java 83 // doc = (Document) load("staffNS", builder);
97 doc = (Document) load("staffNS", builder);
111 doc = (Document) load("staffNS", builder);
123 doc = (Document) load("staffNS", builder);
  /dalvik/vm/mterp/armv5te/
OP_AGET.S 1 %default { "load":"ldr", "shift":"2" }
23 FETCH_ADVANCE_INST(2) @ advance rPC, load rINST
24 $load r2, [r0, #offArrayObject_contents] @ r2<- vBB[vCC]
OP_PACKED_SWITCH.S 27 FETCH_ADVANCE_INST_RB(r1) @ update rPC, load rINST
32 FETCH_ADVANCE_INST_RB(r1) @ update rPC, load rINST
  /dalvik/vm/mterp/mips/
OP_AGET.S 1 %default { "load":"lw", "shift":"2" }
27 FETCH_ADVANCE_INST(2) # advance rPC, load rINST
28 $load a2, offArrayObject_contents(a0) # a2 <- vBB[vCC]
OP_GOTO_32.S 23 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
26 FETCH_ADVANCE_INST_RB(a1) # update rPC, load rINST
  /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/ObjC/Framework/
ANTLRFileStream.h 33 * since we know the exact size of the object to load. We can avoid lots
45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore3Test.java 88 mockKeyStore.load(null);
100 mockKeyStore.load(null, null);
105 mockKeyStore.load(null, null);
111 mockKeyStore.load(null, null);
117 mockKeyStore.load(null, null);
139 mockKeyStore.load(null, null);
148 mockKeyStore.load(null, null);
158 mockKeyStore.load(null, null);
171 ks.load(fis, pwd);
  /external/chromium_org/chrome/browser/resources/chromeos/
slow.js 43 function load() { function
48 document.addEventListener('DOMContentLoaded', load);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSVGDocumentValue.cpp 48 DocumentResource* CSSSVGDocumentValue::load(ResourceFetcher* loader) function in class:WebCore::CSSSVGDocumentValue
CSSSVGDocumentValue.h 42 DocumentResource* load(ResourceFetcher*);
  /external/chromium_org/third_party/WebKit/Source/core/events/
WindowEventContext.cpp 40 // We don't dispatch load events to the window. This quirk was originally
41 // added because Mozilla doesn't propagate load events to the window object.
42 if (event->type() == EventTypeNames::load)
  /external/guava/guava/src/com/google/common/cache/
CacheLoader.java 35 * <p>Most implementations will only need to implement {@link #load}. Other methods may be
55 public abstract V load(K key) throws Exception; method in class:CacheLoader
62 * <p>This implementation synchronously delegates to {@link #load}. It is recommended that it be
76 return Futures.immediateFuture(load(key));
118 public V load(K key) { method in class:CacheLoader.FunctionToCacheLoader
142 public V load(Object key) { method in class:CacheLoader.SupplierToCacheLoader
  /external/jmonkeyengine/engine/src/android/com/jme3/texture/plugins/
AndroidImageLoader.java 12 public Object load(AssetInfo info) throws IOException { method in class:AndroidImageLoader
  /external/openssh/regress/
putty-transfer.sh 22 env HOME=$PWD ${PLINK} -load compression_$c -batch \
33 env HOME=$PWD ${PLINK} -load compression_$c \
  /external/oprofile/gui/
oprof_start_config.h 38 void load(std::istream & in);
  /external/srec/srec/Semproc/include/
SR_SemanticGraph.h 62 ESR_ReturnCode(*load)(struct SR_SemanticGraph_t* self, wordmap* ilabels, const LCHAR* basename, int num_words_to_add); member in struct:SR_SemanticGraph_t
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
clone_test.S 13 mov $499,%rcx # load counter
61 mov $499997,%rcx # load counter
70 mov $999997,%rcx # load counter
85 mov $250000,%rcx # load counter

Completed in 3334 milliseconds

1 2 3 45 6 7 8 91011>>