Searched refs:getExtras (Results 1 - 25 of 164) sorted by relevance

1234567

/frameworks/support/media-compat/api22/android/support/v4/media/session/
H A DPlaybackStateCompatApi22.java26 public static Bundle getExtras(Object stateObj) { method in class:PlaybackStateCompatApi22
27 return ((PlaybackState)stateObj).getExtras();
/frameworks/support/compat/gingerbread/android/support/v4/app/
H A DRemoteInputCompatBase.java28 protected abstract Bundle getExtras(); method in class:RemoteInputCompatBase.RemoteInput
/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DActionSendMultipleConsumerActivity.java52 customIntent.putExtras(intent.getExtras());
98 mQueue.put(intent.getExtras());
113 Bundle getExtras() { method in class:ActionSendMultipleConsumerActivity.CustomActionSendMultipleListener
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProvider.java62 Bundle extras = intent.getExtras();
70 Bundle extras = intent.getExtras();
76 Bundle extras = intent.getExtras();
89 Bundle extras = intent.getExtras();
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DTrackTimeReceiver.java29 Bundle data = intent.getExtras();
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DShortcutManagerTest4.java121 assertBundlesEqual(si.getIntent().getExtras(), sIntentExtrasDecoded);
122 assertBundlesEqual(si.getExtras(), sShortcutExtrasDecoded);
/frameworks/support/compat/api20/android/support/v4/app/
H A DRemoteInputCompatApi20.java33 src.getAllowFreeFormInput(), src.getExtras());
49 .addExtras(src.getExtras())
H A DNotificationCompatApi20.java122 if (action.getExtras() != null) {
123 actionExtras = new Bundle(action.getExtras());
144 boolean allowGeneratedReplies = action.getExtras().getBoolean(
147 action.getExtras(), remoteInputs, allowGeneratedReplies);
154 .addExtras(actionCompat.getExtras());
/frameworks/base/telecomm/java/android/telecom/
H A DStatusHints.java106 public Bundle getExtras() { method in class:StatusHints
145 Objects.equals(otherHints.getExtras(), getExtras());
/frameworks/base/core/java/android/database/
H A DIBulkCursor.java52 Bundle getExtras() throws RemoteException; method in interface:IBulkCursor
H A DBulkCursorToCursorAdaptor.java164 public Bundle getExtras() { method in class:BulkCursorToCursorAdaptor
168 return mBulkCursor.getExtras();
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DUsbIntentReceiver.java31 final UsbDevice device = intent.getExtras().getParcelable(UsbManager.EXTRA_DEVICE);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
H A DWizardExampleActivity.java34 fragment.setArguments(getIntent().getExtras()); // Delegate Movie to first step.
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
H A DWizardExampleActivity.java34 fragment.setArguments(getIntent().getExtras()); // Delegate Movie to first step.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootCursorWrapper.java67 public Bundle getExtras() { method in class:RootCursorWrapper
68 return mCursor.getExtras();
H A DFilteringCursorWrapper.java75 public Bundle getExtras() { method in class:FilteringCursorWrapper
76 return mCursor.getExtras();
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaSessionStatus.java123 public Bundle getExtras() { method in class:MediaSessionStatus
136 result.append(", extras=").append(getExtras());
/frameworks/support/compat/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java98 public static Bundle getExtras(Object info) { method in class:AccessibilityNodeInfoCompatKitKat
99 return ((AccessibilityNodeInfo) info).getExtras();
103 return getExtras(info).getLong(TRAITS_KEY, TRAIT_UNSET);
107 Bundle extras = getExtras(info);
137 Bundle extras = getExtras(info);
142 Bundle extras = getExtras(info);
/frameworks/support/compat/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java143 Bundle extras = getExtras(notif);
154 getExtras(notif).putSparseParcelableArray(EXTRA_ACTION_EXTRAS, actionExtrasMap);
224 public static Bundle getExtras(Notification notif) { method in class:NotificationCompatJellybean
275 Bundle actionExtras = new Bundle(action.getExtras());
299 Bundle extras = getExtras(notif);
403 bundle.putBundle(KEY_EXTRAS, action.getExtras());
410 return getExtras(notif).getBoolean(EXTRA_LOCAL_ONLY);
414 return getExtras(n).getString(EXTRA_GROUP_KEY);
418 return getExtras(n).getBoolean(EXTRA_GROUP_SUMMARY);
422 return getExtras(
[all...]
H A DRemoteInputCompatJellybean.java52 data.putBundle(KEY_EXTRAS, remoteInput.getExtras());
89 return clipData.getItemAt(0).getIntent().getExtras().getParcelable(EXTRA_RESULTS_DATA);
/frameworks/base/core/java/android/app/
H A DRemoteInput.java123 public Bundle getExtras() { method in class:RemoteInput
196 * @see RemoteInput#getExtras
210 public Bundle getExtras() { method in class:RemoteInput.Builder
256 return clipData.getItemAt(0).getIntent().getExtras().getParcelable(EXTRA_RESULTS_DATA);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalService.java54 if (intent.getExtras() != null) {
55 mReportObject = intent.getExtras().getIBinder(ServiceTest.REPORT_OBJ_NAME);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncJobService.java72 SyncOperation op = SyncOperation.maybeCreateFromJobExtras(params.getExtras());
97 m.obj = SyncOperation.maybeCreateFromJobExtras(params.getExtras());
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DWizardManagerHelper.java108 if (data != null && data.getExtras() != null) {
109 intent.putExtras(data.getExtras());
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserCompatApi21.java63 public static Bundle getExtras(Object browserObj) { method in class:MediaBrowserCompatApi21
64 return ((MediaBrowser)browserObj).getExtras();

Completed in 723 milliseconds

1234567