HomeSort by relevance Sort by last modified time
    Searched refs:mBundle (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
Test.java 10 private Bundle mBundle;
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/support/mediarouter/src/main/java/androidx/mediarouter/media/
MediaSessionStatus.java 52 final Bundle mBundle;
87 mBundle = bundle;
97 return mBundle.getLong(KEY_TIMESTAMP);
107 return mBundle.getInt(KEY_SESSION_STATE, SESSION_STATE_INVALIDATED);
116 return mBundle.getBoolean(KEY_QUEUE_PAUSED);
125 return mBundle.getBundle(KEY_EXTRAS);
160 return mBundle;
177 private final Bundle mBundle;
186 mBundle = new Bundle();
200 mBundle = new Bundle(status.mBundle)
    [all...]
MediaItemStatus.java 68 final Bundle mBundle;
200 mBundle = bundle;
210 return mBundle.getLong(KEY_TIMESTAMP);
223 return mBundle.getInt(KEY_PLAYBACK_STATE, PLAYBACK_STATE_ERROR);
233 return mBundle.getLong(KEY_CONTENT_POSITION, -1);
243 return mBundle.getLong(KEY_CONTENT_DURATION, -1);
252 return mBundle.getBundle(KEY_EXTRAS);
298 return mBundle;
315 private final Bundle mBundle;
324 mBundle = new Bundle()
    [all...]
MediaRouteDescriptor.java 66 final Bundle mBundle;
70 mBundle = bundle;
83 return mBundle.getString(KEY_ID);
96 return mBundle.getStringArrayList(KEY_GROUP_MEMBER_IDS);
107 return mBundle.getString(KEY_NAME);
118 return mBundle.getString(KEY_DESCRIPTION);
128 String iconUri = mBundle.getString(KEY_ICON_URI);
136 return mBundle.getBoolean(KEY_ENABLED, true);
145 return mBundle.getBoolean(KEY_CONNECTING, false);
157 return mBundle.getInt(KEY_CONNECTION_STATE
    [all...]
MediaRouteDiscoveryRequest.java 31 private final Bundle mBundle;
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;
MediaRouteProviderDescriptor.java 35 private final Bundle mBundle;
39 mBundle = bundle;
53 ArrayList<Bundle> routeBundles = mBundle.<Bundle>getParcelableArrayList(KEY_ROUTES);
103 return mBundle;
120 private final Bundle mBundle;
127 mBundle = new Bundle();
139 mBundle = new Bundle(descriptor.mBundle);
186 mBundle.remove(KEY_ROUTES);
203 mBundle.putParcelableArrayList(KEY_ROUTES, routeBundles)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 56 private Bundle mBundle;
62 mBundle = new Bundle();
85 mBundle.putBoolean("android", true);
87 mBundle.readFromParcel(p);
88 assertTrue(mBundle.isEmpty());
93 mBundle.putBoolean("android", true);
94 mBundle.putBoolean(KEY, true);
95 assertFalse(mBundle.isEmpty());
96 mBundle.clear();
97 assertTrue(mBundle.isEmpty())
    [all...]
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeSettings.java 45 private final PersistableBundle mBundle;
49 mBundle = parcel.readPersistableBundle();
58 return mBundle.getBoolean(FULLSCREEN_MODE_ALLOWED, defaultValue);
63 return mBundle.getInt(BACKGROUND_COLOR_KEY, defaultColor);
67 return mBundle.keySet().contains(NAVIGATION_BAR_COLOR_KEY);
72 return mBundle.getInt(NAVIGATION_BAR_COLOR_KEY);
76 return mBundle.getInt(INPUT_VIEW_HEIGHT_WITHOUT_SYSTEM_WINDOW_INSET, defaultHeight);
80 return mBundle.getInt(WINDOW_FLAGS, defaultFlags);
84 return mBundle.getInt(WINDOW_FLAGS_MASK, defaultFlags);
88 return mBundle.getInt(INPUT_VIEW_SYSTEM_UI_VISIBILITY, defaultFlags)
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaItemStatus.java 67 final Bundle mBundle;
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;
323 mBundle = new Bundle()
    [all...]
MediaRouteDescriptor.java 62 final Bundle mBundle;
66 mBundle = bundle;
79 return mBundle.getString(KEY_ID);
92 return mBundle.getStringArrayList(KEY_GROUP_MEMBER_IDS);
103 return mBundle.getString(KEY_NAME);
114 return mBundle.getString(KEY_DESCRIPTION);
124 String iconUri = mBundle.getString(KEY_ICON_URI);
132 return mBundle.getBoolean(KEY_ENABLED, true);
141 return mBundle.getBoolean(KEY_CONNECTING, false);
153 return mBundle.getInt(KEY_CONNECTION_STATE
    [all...]
MediaSessionStatus.java 51 final Bundle mBundle;
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;
185 mBundle = new Bundle();
199 mBundle = new Bundle(status.mBundle)
    [all...]
MediaRouteDiscoveryRequest.java 31 private final Bundle mBundle;
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;
MediaRouteProviderDescriptor.java 35 private final Bundle mBundle;
39 mBundle = bundle;
53 ArrayList<Bundle> routeBundles = mBundle.<Bundle>getParcelableArrayList(KEY_ROUTES);
103 return mBundle;
120 private final Bundle mBundle;
127 mBundle = new Bundle();
139 mBundle = new Bundle(descriptor.mBundle);
186 mBundle.remove(KEY_ROUTES);
203 mBundle.putParcelableArrayList(KEY_ROUTES, routeBundles)
    [all...]
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
RequestUtils.java 44 private Bundle mBundle;
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;
MediaItem.java 27 private Bundle mBundle;
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);
  /packages/services/Car/car-lib/src/android/car/app/menu/
RootMenu.java 26 private final Bundle mBundle;
46 mBundle = extras;
64 return new Bundle(mBundle);
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaMetadata2Impl.java 108 private final Bundle mBundle;
112 mBundle = bundle;
124 return mBundle.containsKey(key);
132 return mBundle.getCharSequence(key);
145 CharSequence text = mBundle.getCharSequence(key);
157 return mBundle.getLong(key, 0);
168 rating = Rating2.fromBundle(mBundle.getBundle(key));
181 return mBundle.getFloat(key);
191 bmp = mBundle.getParcelable(key);
202 return mBundle.getBundle(METADATA_KEY_EXTRAS)
    [all...]
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
SelectionTracker_InstanceStateTest.java 42 private Bundle mBundle;
48 mBundle = new Bundle();
67 mStringTracker.onSaveInstanceState(mBundle);
68 mLongTracker.onSaveInstanceState(mBundle);
70 Bundle parceled = Bundles.forceParceling(mBundle);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsCallTest.java 38 private Bundle mBundle;
45 mBundle = mTestCallProfile.mCallExtras;
58 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE,
68 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT,
78 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE,
88 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT,
  /frameworks/support/media/src/main/java/android/support/v4/media/
MediaMetadataCompat.java 363 final Bundle mBundle;
368 mBundle = new Bundle(bundle);
369 mBundle.setClassLoader(MediaMetadataCompat.class.getClassLoader());
373 mBundle = in.readBundle();
374 mBundle.setClassLoader(MediaMetadataCompat.class.getClassLoader());
384 return mBundle.containsKey(key);
396 return mBundle.getCharSequence(key);
408 CharSequence text = mBundle.getCharSequence(key);
423 return mBundle.getLong(key, 0);
437 // On platform version 19 or higher, mBundle stores a Rating object. Convert it t
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
RadioMetadata.java 258 private final Bundle mBundle;
261 mBundle = new Bundle();
265 mBundle = new Bundle(bundle);
269 mBundle = in.readBundle();
279 for (String key : mBundle.keySet()) {
288 sb.append(mBundle.get(key));
302 return mBundle.containsKey(key);
313 return mBundle.getString(key);
332 return mBundle.getInt(key, 0);
346 bmp = mBundle.getParcelable(key)
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
BindingTarget.java 46 ResourceBundle.BindingTargetBundle mBundle;
49 mBundle = bundle;
53 return mBundle.isUsed();
64 return mBundle.getInterfaceType() == null ? mBundle.getFullClassName() : mBundle.getInterfaceType();
87 return mBundle.provideScopeLocation();
91 return mBundle.getId();
95 return mBundle.getTag();
99 return mBundle.getOriginalTag()
    [all...]
LayoutBinder.java 66 private ResourceBundle.LayoutFileBundle mBundle;
174 mBundle = layoutBundle;
178 for (ResourceBundle.VariableDeclaration variable : mBundle.getVariables()) {
183 for (ResourceBundle.NameTypeLocation userImport : mBundle.getImports()) {
197 for (BindingTargetBundle targetBundle : mBundle.getBindingTargetBundles()) {
218 Scope.enter(bindingTarget.mBundle);
220 for (BindingTargetBundle.BindingBundle bindingBundle : bindingTarget.mBundle
344 return mBundle.getBindingClassPackage();
348 return mBundle.isMerge();
356 return mBundle.getFileName()
    [all...]
  /frameworks/support/media/src/main/java/androidx/media/
MediaMetadata2.java 620 final Bundle mBundle;
623 mBundle = new Bundle(bundle);
624 mBundle.setClassLoader(MediaMetadata2.class.getClassLoader());
637 return mBundle.containsKey(key);
652 return mBundle.getCharSequence(key);
679 CharSequence text = mBundle.getCharSequence(key);
697 return mBundle.getLong(key, 0);
716 rating = Rating2.fromBundle(mBundle.getBundle(key));
735 return mBundle.getFloat(key);
751 bmp = mBundle.getParcelable(key)
    [all...]
  /frameworks/base/core/java/android/hardware/biometrics/
BiometricPrompt.java 100 private final Bundle mBundle;
110 mBundle = new Bundle();
120 mBundle.putCharSequence(KEY_TITLE, title);
130 mBundle.putCharSequence(KEY_SUBTITLE, subtitle);
140 mBundle.putCharSequence(KEY_DESCRIPTION, description);
163 mBundle.putCharSequence(KEY_POSITIVE_TEXT, text);
187 mBundle.putCharSequence(KEY_NEGATIVE_TEXT, text);
198 final CharSequence title = mBundle.getCharSequence(KEY_TITLE);
199 final CharSequence negative = mBundle.getCharSequence(KEY_NEGATIVE_TEXT);
206 return new BiometricPrompt(mContext, mBundle, mPositiveButtonInfo, mNegativeButtonInfo)
    [all...]

Completed in 650 milliseconds

1 2 3 4 5 6 7 8 9