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

123

/frameworks/base/test-runner/junit/runner/
H A DTestSuiteLoader.java7 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DStandardTestSuiteLoader.java4 * The standard test suite loader. It can only load the same class once.
9 * Uses the system class loader to load the test class
11 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:StandardTestSuiteLoader
15 * Uses the system class loader to load the test class
H A DReloadingTestSuiteLoader.java9 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
/frameworks/base/test-runner/android/test/
H A DSimpleCache.java25 protected abstract V load(K key); method in class:SimpleCache
31 V value = load(key);
/frameworks/base/libs/rs/
H A DrsMatrix.h39 void load(const float *);
40 void load(const Matrix *);
55 load(&tmp);
H A DrsMatrix.cpp51 void Matrix::load(const float *v) function in class:Matrix
56 void Matrix::load(const Matrix *v) function in class:Matrix
/frameworks/base/core/java/android/gesture/
H A DGestureLibraries.java90 public boolean load() { method in class:GestureLibraries.FileGestureLibrary
95 mStore.load(new FileInputStream(file), true);
98 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
100 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
126 public boolean load() { method in class:GestureLibraries.ResourceGestureLibrary
132 mStore.load(in, true);
135 Log.d(LOG_TAG, "Could not load the gesture library from raw resource " +
H A DGestureLibrary.java32 public abstract boolean load(); method in class:GestureLibrary
H A DGestureStore.java269 public void load(InputStream stream) throws IOException { method in class:GestureStore
270 load(stream, false);
273 public void load(InputStream stream, boolean closeStream) throws IOException { method in class:GestureStore
/frameworks/base/libs/ui/
H A DKeyLayoutMap.h14 status_t load(const char* filename);
/frameworks/base/media/java/android/media/
H A DSoundPool.java36 * to ship with compressed streams without having to suffer the CPU load
77 * through the list of sounds calling the appropriate SoundPool.load()
134 public int load(String path, int priority) method in class:SoundPool
161 * Note that the extension is dropped. For example, if you want to load
173 public int load(Context context, int resId, int priority) { method in class:SoundPool
196 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool
222 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool
234 * returned by the load() function. Returns true if the sound is
237 * @param soundID a soundID returned by the load() function
246 * returned by the load() functio
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/com/android/layoutlib/bridge/
H A DNinePatchTest.java18 mPatch = NinePatch.load(url, false /* convert */);
/frameworks/base/tools/preload/
H A DLoadedClass.java62 for (Operation load : loads) {
63 if (load.process.fromZygote()) {
64 procNames.add(load.process.name);
87 /** Median time to load this class. */
/frameworks/base/include/ui/
H A DKeyCharacterMap.h43 static KeyCharacterMap* load(int id);
/frameworks/base/core/java/android/webkit/
H A DDataLoader.java74 loader.load();
H A DContentLoader.java120 loader.load();
H A DStreamLoader.java32 * The class implements a state machine to load the content into the frame in
39 * it can load it's content. The other method allows the derived class to add
73 * and call mHandler.status() to indicate that the load can occur. If it
82 * load framework. The derived class has the opportunity to add addition
91 * Calling this method starts the load of the content for this StreamLoader.
95 public void load() { method in class:StreamLoader
188 * Close the stream and inform the EventHandler that load is complete.
/frameworks/base/core/java/android/view/
H A DKeyEvent.java903 * @see KeyCharacterMap#load
924 return KeyCharacterMap.load(mDeviceId).getDisplayLabel(mKeyCode);
961 return KeyCharacterMap.load(mDeviceId).get(mKeyCode, meta);
973 return KeyCharacterMap.load(mDeviceId).getKeyData(mKeyCode, results);
992 return KeyCharacterMap.load(mDeviceId).getMatch(mKeyCode, chars, modifiers);
1001 return KeyCharacterMap.load(mDeviceId).getNumber(mKeyCode);
1008 return KeyCharacterMap.load(mDeviceId).isPrintingKey(mKeyCode);
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
H A DJPEGImageReader.java101 source.load();
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/png/
H A DPNGImageReader.java84 source.load();
/frameworks/base/opengl/java/android/opengl/
H A DMaterial.java75 public void load(DataInputStream dis) throws IOException { method in class:Material
H A DObject3D.java69 * the implementation would use AssetManager.load() to
156 public void load(String filename) throws IOException { method in class:Object3D
226 mat.load(dis);
233 g.load(dis);
/frameworks/base/tests/FrameworkTest/src/com/android/frameworktest/util/
H A DKeyUtils.java62 final KeyCharacterMap keyCharMap = KeyCharacterMap.load(pushMenuKey.getDeviceId());
/frameworks/policies/base/mid/com/android/internal/policy/impl/
H A DShortcutManager.java109 KeyCharacterMap kcm = KeyCharacterMap.load(KeyCharacterMap.BUILT_IN_KEYBOARD);
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DShortcutManager.java109 KeyCharacterMap kcm = KeyCharacterMap.load(KeyCharacterMap.BUILT_IN_KEYBOARD);

Completed in 629 milliseconds

123