Searched refs:bundle (Results 126 - 150 of 208) sorted by relevance

123456789

/frameworks/base/media/java/android/media/
H A DAudioAttributes.java549 * @param bundle a non-null Bundle
553 public Builder addBundle(@NonNull Bundle bundle) { argument
554 if (bundle == null) {
555 throw new IllegalArgumentException("Illegal null bundle");
558 mBundle = new Bundle(bundle);
560 mBundle.putAll(bundle);
753 Log.e(TAG, "Illegal value unmarshalling AudioAttributes, can't initialize bundle");
799 + " bundle=" + (mBundle == null ? "null" : mBundle.toString()));
/frameworks/base/core/java/android/content/
H A DSyncRequest.java97 * Retrieve bundle for this SyncRequest. Will not be null.
171 // For now we merge the sync config extras & the custom extras into one bundle.
207 * TODO: Use this instead of dumping into one bundle. Need to decide if these flags should
277 * contents of the extras bundle.
281 * <p>The bundle for a periodic sync can be queried by applications with the correct
380 * Developer-provided extras handed back when sync actually occurs. This bundle is copied
398 * Only values of the following types may be used in the extras bundle:
409 * If any data is present in the bundle not of this type, build() will
412 * @param bundle extras bundle t
414 setExtras(Bundle bundle) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java575 public void onCellLocationChanged(Bundle bundle) { argument
576 CellLocation location = CellLocation.newFromBundle(bundle);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DBindingTarget.java48 public BindingTarget(ResourceBundle.BindingTargetBundle bundle) { argument
49 mBundle = bundle;
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsFragment.java136 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
140 getActivity().startActivity(intent, bundle);
H A DDetailsSupportFragment.java138 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
142 getActivity().startActivity(intent, bundle);
H A DMainActivity.java127 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity())
129 startActivity(intent, bundle);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/
H A DMainFragment.java172 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity())
174 startActivity(intent, bundle);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/cards/
H A DCardExampleFragment.java82 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity(),
89 startActivity(intent, bundle);
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsFragment.java136 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
140 getActivity().startActivity(intent, bundle);
H A DDetailsSupportFragment.java138 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
142 getActivity().startActivity(intent, bundle);
H A DMainActivity.java127 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity())
129 startActivity(intent, bundle);
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/
H A DMainFragment.java172 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity())
174 startActivity(intent, bundle);
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/cards/
H A DCardExampleFragment.java82 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(getActivity(),
89 startActivity(intent, bundle);
/frameworks/base/core/java/android/app/
H A DSearchDialog.java324 * @return A bundle with the state of the dialog, or {@code null} if the search
331 Bundle bundle = new Bundle();
334 bundle.putParcelable(INSTANCE_KEY_COMPONENT, mLaunchComponent);
335 bundle.putBundle(INSTANCE_KEY_APPDATA, mAppSearchData);
336 bundle.putString(INSTANCE_KEY_USER_QUERY, mUserQuery);
338 return bundle;
342 * Restore the state of the dialog from a previously saved bundle.
H A DDialog.java429 * Saves the state of the dialog into a bundle.
434 * @return A bundle with the state of the dialog.
437 Bundle bundle = new Bundle();
438 bundle.putBoolean(DIALOG_SHOWING_TAG, mShowing);
440 bundle.putBundle(DIALOG_HIERARCHY_TAG, mWindow.saveHierarchyState());
442 return bundle;
446 * Restore the state of the dialog from a previously saved bundle.
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java2285 Bundle bundle = new Bundle();
2287 bundle.putCharSequence(KEY_TEXT, mText);
2289 bundle.putLong(KEY_TIMESTAMP, mTimestamp);
2291 bundle.putCharSequence(KEY_SENDER, mSender);
2294 bundle.putString(KEY_DATA_MIME_TYPE, mDataMimeType);
2297 bundle.putParcelable(KEY_DATA_URI, mDataUri);
2299 return bundle;
2324 static Message getMessageFromBundle(Bundle bundle) { argument
2326 if (!bundle.containsKey(KEY_TEXT) || !bundle
4065 getNotificationArrayFromBundle(Bundle bundle, String key) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java108 Bundle bundle = intent.getExtras();
109 if (bundle != null) {
110 pw.print(prefix); pw.print(" extras: "); pw.println(bundle.toString());
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java166 * All fields are stored in a corresponding key in the persistable bundle.
175 * from a bundle whether the bundle actually contains information about a sync.
176 * @return A persistable bundle containing all information to re-construct the sync operation.
179 // This will be passed as extras bundle to a JobScheduler job.
235 * Reconstructs a sync operation from an extras Bundle. Returns null if the bundle doesn't
437 private static void extrasToStringBuilder(Bundle bundle, StringBuilder sb) { argument
439 for (String key : bundle.keySet()) {
440 sb.append(key).append("=").append(bundle.get(key)).append(" ");
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsObservers.java297 Bundle bundle = new Bundle();
298 bundle.putParcelable(DataUsageRequest.PARCELABLE_KEY, mRequest);
301 msg.setData(bundle);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DOpenExternalDirectoryActivity.java305 final Bundle bundle;
307 bundle = provider.call("getDocIdForFileCreateNewDir", file.getPath(), null);
313 final String docId = bundle == null ? null : bundle.getString("DOC_ID");
/frameworks/native/include/binder/
H A DPersistableBundle.h39 PersistableBundle(const PersistableBundle& bundle) = default; member in class:android::os::PersistableBundle
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/util/
H A DMockWindow.java199 public void restoreHierarchyState(Bundle bundle) { argument
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java276 * @param metadata The media item metadata bundle, or null if none.
277 * @param extras A bundle of extra arguments to be added to the
310 * @param metadata The media item metadata bundle, or null if none.
311 * @param extras A bundle of extra arguments to be added to the
367 * @param extras A bundle of extra arguments to be added to the
399 * @param extras A bundle of extra arguments to be added to the
429 * @param extras A bundle of extra arguments to be added to the
462 * @param extras A bundle of extra arguments to be added to the
489 * @param extras A bundle of extra arguments to be added to the
516 * @param extras A bundle o
862 bundleToString(Bundle bundle) argument
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioMetadata.java219 private RadioMetadata(Bundle bundle) { argument
220 mBundle = new Bundle(bundle);

Completed in 926 milliseconds

123456789