Searched defs:mBundle (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DTest.java10 private Bundle mBundle; field in class:Test
19 mBundle = new Bundle();
25 mBundle.putFloat(key, value);
29 synchronized(mBundle) {
30 mBundle.notify();
37 synchronized(mBundle) {
39 mBundle.wait();
44 getInstrumentation().sendStatus(0, mBundle);
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DMediaItem.java27 private Bundle mBundle; field in class:MediaItem
34 mBundle = in.readBundle();
38 return mBundle.getString(MediaMetadata.METADATA_KEY_TITLE);
42 return mBundle.getString(MediaMetadata.METADATA_KEY_ALBUM_ARTIST);
60 dest.writeBundle(mBundle);
H A DRequestUtils.java44 private Bundle mBundle; field in class:RequestUtils.ContentBuilder
47 mBundle = new Bundle();
51 mBundle.putString(EXTRA_KEY_SOURCE, source);
60 mBundle.putBundle(EXTRA_KEY_METADATA, metadata);
65 mBundle.putSerializable(EXTRA_KEY_HEADERS, headers);
70 return mBundle;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java31 private final Bundle mBundle; field in class:MediaRouteDiscoveryRequest
45 mBundle = new Bundle();
47 mBundle.putBundle(KEY_SELECTOR, selector.asBundle());
48 mBundle.putBoolean(KEY_ACTIVE_SCAN, activeScan);
52 mBundle = bundle;
65 mSelector = MediaRouteSelector.fromBundle(mBundle.getBundle(KEY_SELECTOR));
78 return mBundle.getBoolean(KEY_ACTIVE_SCAN);
120 return mBundle;
H A DMediaRouteProviderDescriptor.java36 private final Bundle mBundle; field in class:MediaRouteProviderDescriptor
41 mBundle = bundle;
55 ArrayList<Bundle> routeBundles = mBundle.<Bundle>getParcelableArrayList(KEY_ROUTES);
105 return mBundle;
122 private final Bundle mBundle; field in class:MediaRouteProviderDescriptor.Builder
129 mBundle = new Bundle();
141 mBundle = new Bundle(descriptor.mBundle);
192 mBundle.putParcelableArrayList(KEY_ROUTES, routeBundles);
194 return new MediaRouteProviderDescriptor(mBundle, mRoute
[all...]
H A DMediaRouteSelector.java49 private final Bundle mBundle; field in class:MediaRouteSelector
58 mBundle = bundle;
74 mControlCategories = mBundle.getStringArrayList(KEY_CONTROL_CATEGORIES);
196 return mBundle;
H A DMediaSessionStatus.java51 private final Bundle mBundle; field in class:MediaSessionStatus
86 mBundle = bundle;
96 return mBundle.getLong(KEY_TIMESTAMP);
106 return mBundle.getInt(KEY_SESSION_STATE, SESSION_STATE_INVALIDATED);
115 return mBundle.getBoolean(KEY_QUEUE_PAUSED);
124 return mBundle.getBundle(KEY_EXTRAS);
159 return mBundle;
176 private final Bundle mBundle; field in class:MediaSessionStatus.Builder
185 mBundle = new Bundle();
199 mBundle
[all...]
H A DMediaItemStatus.java67 private final Bundle mBundle; field in class:MediaItemStatus
199 mBundle = bundle;
209 return mBundle.getLong(KEY_TIMESTAMP);
222 return mBundle.getInt(KEY_PLAYBACK_STATE, PLAYBACK_STATE_ERROR);
232 return mBundle.getLong(KEY_CONTENT_POSITION, -1);
242 return mBundle.getLong(KEY_CONTENT_DURATION, -1);
251 return mBundle.getBundle(KEY_EXTRAS);
297 return mBundle;
314 private final Bundle mBundle; field in class:MediaItemStatus.Builder
323 mBundle
[all...]
H A DMediaRouteDescriptor.java55 private final Bundle mBundle; field in class:MediaRouteDescriptor
59 mBundle = bundle;
72 return mBundle.getString(KEY_ID);
83 return mBundle.getString(KEY_NAME);
94 return mBundle.getString(KEY_DESCRIPTION);
101 return mBundle.getBoolean(KEY_ENABLED, true);
108 return mBundle.getBoolean(KEY_CONNECTING, false);
118 return mBundle.getBoolean(KEY_CAN_DISCONNECT, false);
129 return mBundle.getParcelable(KEY_SETTINGS_INTENT);
142 mControlFilters = mBundle
259 private final Bundle mBundle; field in class:MediaRouteDescriptor.Builder
[all...]
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java240 private final Bundle mBundle; field in class:SpellCheckerService.InternalISpellCheckerSession
247 mBundle = bundle;
303 return mBundle;
/frameworks/base/media/java/android/media/
H A DMediaMetadata.java324 private final Bundle mBundle; field in class:MediaMetadata
328 mBundle = new Bundle(bundle);
332 mBundle = in.readBundle();
342 return mBundle.containsKey(key);
354 return mBundle.getCharSequence(key);
382 return mBundle.getLong(key, 0);
395 rating = mBundle.getParcelable(key);
413 bmp = mBundle.getParcelable(key);
428 dest.writeBundle(mBundle);
437 return mBundle
546 private final Bundle mBundle; field in class:MediaMetadata.Builder
[all...]
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaMetadataCompat.java255 private final Bundle mBundle; field in class:MediaMetadataCompat
260 mBundle = new Bundle(bundle);
264 mBundle = in.readBundle();
274 return mBundle.containsKey(key);
286 return mBundle.getCharSequence(key);
298 CharSequence text = mBundle.getCharSequence(key);
313 return mBundle.getLong(key, 0);
326 rating = mBundle.getParcelable(key);
344 bmp = mBundle.getParcelable(key);
426 dest.writeBundle(mBundle);
565 private final Bundle mBundle; field in class:MediaMetadataCompat.Builder
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java804 listener.mScLocale, listener.mScListener, listener.mBundle);
918 private final Bundle mBundle; field in class:TextServicesManagerService.InternalServiceConnection
923 mBundle = bundle;
962 public final Bundle mBundle; field in class:TextServicesManagerService.InternalDeathRecipient
971 mBundle = bundle;
/frameworks/base/tools/aapt/
H A DResourceTable.h589 Bundle* mBundle; member in class:ResourceTable
H A DResource.cpp336 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) {
340 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL);
348 const Bundle* mBundle; member in class:PreProcessImageWorkUnit

Completed in 328 milliseconds