Searched refs:load (Results 76 - 100 of 117) sorted by last modified time

12345

/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: " +
H A DSoundPool.java40 * to ship with compressed streams without having to suffer the CPU load
81 * through the list of sounds calling the appropriate SoundPool.load()
154 public int load(String path, int priority) method in class:SoundPool
178 * Note that the extension is dropped. For example, if you want to load
190 public int load(Context context, int resId, int priority) { method in class:SoundPool
212 public int load(AssetFileDescriptor afd, int priority) { method in class:SoundPool
238 public int load(FileDescriptor fd, long offset, long length, int priority) { method in class:SoundPool
250 * returned by the load() function. Returns true if the sound is
253 * @param soundID a soundID returned by the load() function
262 * returned by the load() functio
[all...]
/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
H A DVideoEditorImpl.java167 load();
965 private void load() throws FileNotFoundException, XmlPullParserException, IOException { method in class:VideoEditorImpl
999 Log.w(TAG, "Cannot load media item: " + mediaItemId, ex);
1019 Log.w(TAG, "Cannot load transition", ex);
1027 Log.w(TAG, "Cannot load overlay", ex);
1070 Log.w(TAG, "Cannot load effect", ex);
1078 Log.w(TAG, "Cannot load audio track", ex);
/frameworks/base/media/jni/soundpool/
H A Dandroid_media_SoundPool.cpp51 int id = ap->load(s, priority);
63 return ap->load(jniGetFDFromFileDescriptor(env, fileDescriptor),
/frameworks/base/core/tests/coretests/src/android/util/
H A DKeyUtils.java62 final KeyCharacterMap keyCharMap = KeyCharacterMap.load(pushMenuKey.getDeviceId());
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DomxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s98 ;load alpha1,beta1 somewhere to avoid more loads
H A DomxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s114 ;load alpha1,beta1 somewhere to avoid more loads
/frameworks/av/services/audioflinger/
H A DAndroid.mk63 # uncomment to display CPU load adjusted for CPU frequency
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java154 KeyCharacterMap kcm = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD);
/frameworks/base/core/java/android/app/
H A DInstrumentation.java838 KeyCharacterMap keyCharacterMap = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD);
/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/core/java/android/os/
H A DDebug.java1100 tp.load(r);
/frameworks/base/core/java/android/view/
H A DKeyEvent.java2444 * @see KeyCharacterMap#load
2447 return KeyCharacterMap.load(mDeviceId);
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/android/view/inputmethod/
H A DBaseInputConnection.java544 mKeyCharacterMap = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD);
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java533 mKeyCharacterMap = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD);
2410 * @param stream The {@link InputStream} to load from
2428 Log.e(LOGTAG, "Failed to load view state!");
/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
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java179 KeyEvent[] events = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD).getEvents(
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp832 layer->getTransform().load(*matrix);
H A Dandroid_view_PointerIcon.cpp36 jmethodID load; member in struct:android::__anon995
63 gPointerIconClassInfo.load, contextObj);
143 GET_METHOD_ID(gPointerIconClassInfo.load, gPointerIconClassInfo.clazz,
144 "load", "(Landroid/content/Context;)Landroid/view/PointerIcon;");
/frameworks/av/include/media/
H A DSoundPool.h167 int load(const char* url, int priority);
168 int load(int fd, int64_t offset, int64_t length, int priority);
/frameworks/av/media/libmedia/
H A DSoundPool.cpp206 int SoundPool::load(const char* path, int priority) function in class:android::SoundPool
208 ALOGV("load: path=%s, priority=%d", path, priority);
216 int SoundPool::load(int fd, int64_t offset, int64_t length, int priority) function in class:android::SoundPool
218 ALOGV("load: fd=%d, offset=%lld, length=%lld, priority=%d",
511 ALOGE("Unable to load sample: %s", mUrl);

Completed in 492 milliseconds

12345