Searched refs:bundle (Results 151 - 175 of 208) sorted by relevance

123456789

/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DNewDetailsFragment.java152 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
156 getActivity().startActivity(intent, bundle);
H A DNewDetailsSupportFragment.java154 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
158 getActivity().startActivity(intent, bundle);
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DNewDetailsFragment.java152 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
156 getActivity().startActivity(intent, bundle);
H A DNewDetailsSupportFragment.java154 Bundle bundle = ActivityOptionsCompat.makeSceneTransitionAnimation(
158 getActivity().startActivity(intent, bundle);
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java594 Bundle bundle = transitionArgs.getBundle(name);
595 if (bundle == null) {
598 int scaleTypeInt = bundle.getInt(KEY_SCALE_TYPE, -1);
666 Bundle bundle = new Bundle();
672 captureSharedElementState(sharedElement, name, bundle, tempMatrix, tempBounds);
674 return bundle;
H A DNotification.java767 * touching the extras bundle in the system process is not safe because the bundle may contain
1820 * Make sure this CharSequence is safe to put into a bundle, which basically
1883 // an explicit list of the pending intents in the extras bundle.
5045 Bundle bundle = new Bundle();
5047 bundle.putCharSequence(KEY_TEXT, mText);
5049 bundle.putLong(KEY_TIMESTAMP, mTimestamp);
5051 bundle.putCharSequence(KEY_SENDER, mSender);
5054 bundle.putString(KEY_DATA_MIME_TYPE, mDataMimeType);
5057 bundle
5084 getMessageFromBundle(Bundle bundle) argument
6899 getNotificationArrayFromBundle(Bundle bundle, String key) argument
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DCall.java112 * The key to retrieve the optional {@code PhoneAccount}s Telecom can bundle with its Call
1031 * bundle should be named similar to the event type (e.g. {@code com.example.extra.MY_EXTRA}).
1635 * @param bundle The original bundle.
1636 * @param newBundle The bundle to compare with.
1639 private static boolean areBundlesEqual(Bundle bundle, Bundle newBundle) { argument
1640 if (bundle == null || newBundle == null) {
1641 return bundle == newBundle;
1644 if (bundle.size() != newBundle.size()) {
1648 for(String key : bundle
[all...]
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java183 Bundle bundle = (Bundle)msg.obj;
184 bundle.setClassLoader(getClassLoader());
185 final TestArgs args = (TestArgs)bundle.getParcelable("args");
191 Bundle bundle = new Bundle();
192 bundle.putParcelable("res", new RunResult(mRunner));
193 msg.obj = bundle;
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DMediaSessionCompat.java161 * Argument for use with various actions indicating extra bundle.
858 Bundle bundle = extras.getParcelable(ACTION_ARGUMENT_EXTRAS);
859 Callback.this.onPlayFromUri(uri, bundle);
864 Bundle bundle = extras.getBundle(ACTION_ARGUMENT_EXTRAS);
865 Callback.this.onPrepareFromMediaId(mediaId, bundle);
868 Bundle bundle = extras.getBundle(ACTION_ARGUMENT_EXTRAS);
869 Callback.this.onPrepareFromSearch(query, bundle);
872 Bundle bundle = extras.getBundle(ACTION_ARGUMENT_EXTRAS);
873 Callback.this.onPrepareFromUri(uri, bundle);
2099 public void post(int what, Object obj, Bundle bundle) { argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java299 private static PersistableBundle[] clonePersistableBundle(PersistableBundle[] bundle) { argument
300 if (bundle == null) {
303 final PersistableBundle[] ret = new PersistableBundle[bundle.length];
305 if (bundle[i] != null) {
306 ret[i] = new PersistableBundle(bundle[i]);
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java665 Bundle bundle = super.call(method, arg, extras);
666 if (bundle == null && !TextUtils.isEmpty(method)) {
676 bundle = new Bundle();
677 bundle.putString("DOC_ID", docId);
688 return bundle;
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimator.java188 * PropertyBundle. If the property was a part of this bundle, it returns
193 * @return true if the given property is a part of this bundle and if it
951 PropertyBundle bundle = mAnimatorMap.get(runningAnim);
952 if (bundle.cancel(constantName)) {
957 if (bundle.mPropertyMask == NONE) {
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java357 * @param rootHints An optional bundle of service-specific arguments to send
360 * bundle may affect the information returned when browsing.
411 * @param options A bundle of service-specific arguments sent from the media
413 * affected by the contents of this bundle.
492 * The root hints are service-specific arguments included in an optional bundle sent to the
494 * none. The contents of this bundle may affect the information returned when browsing.
529 * @param options A bundle of service-specific arguments to send
530 * to the media browse. The contents of this bundle may
701 Bundle bundle = new Bundle();
702 bundle
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDocumentsProvider.java579 final Bundle bundle = new Bundle();
580 bundle.putString(DocumentsContract.EXTRA_ERROR, mResources.getString(stringResId));
582 cursor.setExtras(bundle);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyTest.java446 Bundle bundle = new Bundle();
447 bundle.putBoolean(BlockedNumberContract.RES_NUMBER_IS_BLOCKED,
449 return bundle;
/frameworks/base/media/java/android/media/
H A DMediaMetadata.java363 private MediaMetadata(Bundle bundle) { argument
364 mBundle = new Bundle(bundle);
/frameworks/support/core-utils/kitkat/android/support/v4/print/
H A DPrintHelperKitkat.java253 Bundle bundle) {
460 Bundle bundle) {
/frameworks/base/tools/aapt/
H A DXMLNode.h24 status_t parseStyledString(Bundle* bundle,
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DPaletteActivity.java150 public Loader<Cursor> onCreateLoader(int id, Bundle bundle) { argument
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DPaletteActivity.java150 public Loader<Cursor> onCreateLoader(int id, Bundle bundle) { argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java1447 Bundle bundle = new Bundle();
1448 bundle.putParcelable(CUSTOMIZED_SCAN_SETTING, settings);
1449 bundle.putParcelable(CUSTOMIZED_SCAN_WORKSOURCE, workSource);
1450 bundle.putLong(SCAN_REQUEST_TIME, System.currentTimeMillis());
1451 sendMessage(CMD_START_SCAN, callingUid, scanCounter, bundle);
1620 Bundle bundle = (Bundle) message.obj;
1622 if (bundle != null) {
1623 settings = bundle.getParcelable(CUSTOMIZED_SCAN_SETTING);
1624 workSource = bundle.getParcelable(CUSTOMIZED_SCAN_WORKSOURCE);
1669 message.arg1, message.arg2, bundle);
[all...]
/frameworks/base/core/java/android/os/
H A DParcel.java1875 if (Bundle.DEBUG) Log.d(TAG, "null bundle: length=" + length);
1879 final Bundle bundle = new Bundle(this, length);
1881 bundle.setClassLoader(loader);
1883 return bundle;
1904 if (Bundle.DEBUG) Log.d(TAG, "null bundle: length=" + length);
1908 final PersistableBundle bundle = new PersistableBundle(this, length);
1910 bundle.setClassLoader(loader);
1912 return bundle;
H A DBaseBundle.java44 * encountered when unparceling it, leaving an empty bundle in its place.
370 * @param bundle a PersistableBundle
372 public void putAll(PersistableBundle bundle) { argument
374 bundle.unparcel();
375 mMap.putAll(bundle.mMap);
1379 * @param parcel The parcel to copy this bundle to.
1422 * @param parcel The parcel to overwrite this bundle from.
1455 + ": " + length + " bundle bytes starting at " + offset);
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.java1563 Bundle bundle = r.intent.getExtras();
1564 if (bundle != null) {
1565 pw.print(" extras: "); pw.println(bundle.toString());
1623 Bundle bundle = intent.getExtras();
1624 if (bundle != null) {
1625 pw.print(" extras: "); pw.println(bundle.toString());
/frameworks/av/media/libeffects/lvm/lib/
H A DAndroid.mk3 # Music bundle

Completed in 3193 milliseconds

123456789