Searched defs:load (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/base/test-runner/src/android/test/
H A DSimpleCache.java25 protected abstract V load(K key); method in class:SimpleCache
31 V value = load(key);
/frameworks/base/test-runner/src/junit/runner/
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 DTestSuiteLoader.java7 abstract public Class load(String suiteClassName) throws ClassNotFoundException; method in interface:TestSuiteLoader
H A DReloadingTestSuiteLoader.java9 public Class load(String suiteClassName) throws ClassNotFoundException { method in class:ReloadingTestSuiteLoader
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorFactory.java29 * existing project {@link #load(String)}.
87 public static VideoEditor load(String projectPath, boolean generatePreview) method in class:VideoEditorFactory
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTextureRenderTarget.java47 void load() { method in class:TextureRenderTarget
H A DTextureBase.java35 tex.load();
51 abstract void load(); method in class:TextureBase
H A DTexture2D.java74 void load() { method in class:Texture2D
99 load();
H A DTextureCube.java75 void load() { method in class:TextureCube
100 load();
/frameworks/rs/
H A DrsMatrix2x2.cpp36 void Matrix2x2::load(const float *v) { function in class:Matrix2x2
40 void Matrix2x2::load(const rs_matrix2x2 *v) { function in class:Matrix2x2
H A DrsMatrix3x3.cpp40 void Matrix3x3::load(const float *v) { function in class:Matrix3x3
44 void Matrix3x3::load(const rs_matrix3x3 *v) { function in class:Matrix3x3
/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.java274 public void load(InputStream stream) throws IOException { method in class:GestureStore
275 load(stream, false);
278 public void load(InputStream stream, boolean closeStream) throws IOException { method in class:GestureStore
/frameworks/base/media/java/android/media/
H A DMediaActionSound.java119 public synchronized void load(int soundName) { method in class:MediaActionSound
125 mSoundPool.load(SOUND_FILES[soundName], 1);
144 * <p>If the sound has not been loaded by {@link #load} before calling play,
145 * play will load the sound at the cost of some additional latency before
164 mSoundPool.load(SOUND_FILES[soundName], 1);
181 Log.e(TAG, "Unable to load sound for playback (status: " +
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.cpp36 jmethodID load; member in struct:android::__anon1020
63 gPointerIconClassInfo.load, contextObj);
143 GET_METHOD_ID(gPointerIconClassInfo.load, gPointerIconClassInfo.clazz,
144 "load", "(Landroid/content/Context;)Landroid/view/PointerIcon;");
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix2f.java95 * @param src matrix to load the values from
97 public void load(Matrix2f src) { method in class:Matrix2f
158 load(tmp);
H A DMatrix3f.java101 * @param src matrix to load the values from
103 public void load(Matrix3f src) { method in class:Matrix3f
235 load(tmp);
H A DMatrix4f.java109 * @param src matrix to load the values from
111 public void load(Matrix4f src) { method in class:Matrix4f
321 load(m1);
332 load(tmp);
/frameworks/base/libs/androidfw/
H A DVirtualKeyMap.cpp48 status_t VirtualKeyMap::load(const String8& filename, VirtualKeyMap** outMap) { function in class:android::VirtualKeyMap
H A DKeyLayoutMap.cpp50 status_t KeyLayoutMap::load(const String8& filename, sp<KeyLayoutMap>* outMap) { function in class:android::KeyLayoutMap
H A DKeyboard.cpp42 status_t KeyMap::load(const InputDeviceIdentifier& deviceIdenfifier, function in class:android::KeyMap
115 status_t status = KeyLayoutMap::load(path, &keyLayoutMap);
132 status_t status = KeyCharacterMap::load(path,
/frameworks/native/libs/utils/
H A DPropertyMap.cpp118 status_t PropertyMap::load(const String8& filename, PropertyMap** outMap) { function in class:android::PropertyMap
/frameworks/base/core/java/android/view/
H A DPointerIcon.java216 public PointerIcon load(Context context) { method in class:PointerIcon
245 * @see #load(Context)
267 * @see #load(Context)
281 * @see #load(Context)
295 * @see #load(Context)
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java393 * @param r The Reader to load properties from
397 public void load(Reader r) throws IOException { method in class:TypedProperties

Completed in 472 milliseconds

12