Searched refs:extras (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/frameworks/base/docs/html/
H A Djd_extras_zh-cn.js18 METADATA['zh-cn'].extras = METADATA['zh-cn'].extras.concat([
H A Djd_extras_ja.js16 METADATA['ja'].extras = METADATA['ja'].extras.concat([
H A Djd_extras_ko.js16 METADATA['ko'].extras = METADATA['ko'].extras.concat([
H A Djd_extras_en.js12 resources (either default or extras).
14 'Carousel overrides' are extras that override a default resource
17 resources (either default or extras).
22 The extras, collections, carousel overrides, and static search results
27 METADATA['en'].extras = METADATA['en'].extras.concat([
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DCarHelper.java24 // Use these extras to reserve space for the corresponding actions, even when they are disabled
38 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot, argument
41 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
43 extras.remove(SLOT_RESERVATION_QUEUE);
46 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
48 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
51 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
53 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DCarHelper.java24 // Use these extras to reserve space for the corresponding actions, even when they are disabled
38 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot, argument
41 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
43 extras.remove(SLOT_RESERVATION_QUEUE);
46 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
48 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
51 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
53 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
/frameworks/base/core/java/android/os/
H A DIProgressListener.aidl23 void onStarted(int id, in Bundle extras);
24 void onProgress(int id, int progress, in Bundle extras);
25 void onFinished(int id, in Bundle extras);
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java50 Bundle extras = getIntent().getExtras();
51 if (extras == null) {
56 mNumDeletes = extras.getLong("numDeletes");
57 mAccount = (Account) extras.getParcelable("account");
58 mAuthority = extras.getString("authority");
59 mProvider = extras.getString("provider");
117 Bundle extras = new Bundle();
118 extras.putBoolean(ContentResolver.SYNC_EXTRAS_OVERRIDE_TOO_MANY_DELETIONS, true);
119 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
120 extras
[all...]
H A DPeriodicSync.java34 /** Any extras that parameters that are to be passed to the sync adapter. */
35 public final Bundle extras; field in class:PeriodicSync
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { argument
50 if (extras == null) {
51 this.extras = new Bundle();
53 this.extras = new Bundle(extras);
67 this.extras = new Bundle(other.extras);
76 public PeriodicSync(Account account, String authority, Bundle extras, argument
[all...]
H A DISyncServiceAdapter.aidl31 * extras, which is guaranteed to not be null.
35 * @param extras SyncAdapter-specific parameters.
38 void startSync(ISyncContext syncContext, in Bundle extras);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProvider.java29 * with the received extras.
62 Bundle extras = intent.getExtras();
63 if (extras != null) {
64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
70 Bundle extras = intent.getExtras();
71 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID)) {
72 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID);
76 Bundle extras = intent.getExtras();
77 if (extras !
[all...]
/frameworks/support/media-compat/api24/android/support/v4/media/session/
H A DMediaControllerCompatApi24.java30 public static void prepareFromMediaId(Object controlsObj, String mediaId, Bundle extras) { argument
31 ((MediaController.TransportControls) controlsObj).prepareFromMediaId(mediaId, extras);
34 public static void prepareFromSearch(Object controlsObj, String query, Bundle extras) { argument
35 ((MediaController.TransportControls) controlsObj).prepareFromSearch(query, extras);
38 public static void prepareFromUri(Object controlsObj, Uri uri, Bundle extras) { argument
39 ((MediaController.TransportControls) controlsObj).prepareFromUri(uri, extras);
H A DMediaSessionCompatApi24.java47 public void onPrepareFromMediaId(String mediaId, Bundle extras); argument
48 public void onPrepareFromSearch(String query, Bundle extras); argument
49 public void onPrepareFromUri(Uri uri, Bundle extras); argument
64 public void onPrepareFromMediaId(String mediaId, Bundle extras) { argument
65 mCallback.onPrepareFromMediaId(mediaId, extras);
69 public void onPrepareFromSearch(String query, Bundle extras) { argument
70 mCallback.onPrepareFromSearch(query, extras);
74 public void onPrepareFromUri(Uri uri, Bundle extras) { argument
75 mCallback.onPrepareFromUri(uri, extras);
/frameworks/support/media-compat/api23/android/support/v4/media/session/
H A DMediaControllerCompatApi23.java26 public static void playFromUri(Object controlsObj, Uri uri, Bundle extras) { argument
27 ((MediaController.TransportControls) controlsObj).playFromUri(uri, extras);
H A DMediaSessionCompatApi23.java29 public void onPlayFromUri(Uri uri, Bundle extras); argument
38 public void onPlayFromUri(Uri uri, Bundle extras) { argument
39 mCallback.onPlayFromUri(uri, extras);
/frameworks/base/core/java/android/app/
H A DPackageInstallObserver.java33 String msg, Bundle extras) {
35 extras);
53 * @param extras If non-null, this Bundle contains extras providing
56 * about which extras apply to various failures; in particular
63 Bundle extras) {
62 onPackageInstalled(String basePackageName, int returnCode, String msg, Bundle extras) argument
/frameworks/base/media/java/android/media/session/
H A DISessionCallback.aidl33 void onPrepareFromMediaId(String mediaId, in Bundle extras);
34 void onPrepareFromSearch(String query, in Bundle extras);
35 void onPrepareFromUri(in Uri uri, in Bundle extras);
37 void onPlayFromMediaId(String mediaId, in Bundle extras);
38 void onPlayFromSearch(String query, in Bundle extras);
39 void onPlayFromUri(in Uri uri, in Bundle extras);
H A DISessionController.aidl54 void prepareFromMediaId(String mediaId, in Bundle extras);
55 void prepareFromSearch(String string, in Bundle extras);
56 void prepareFromUri(in Uri uri, in Bundle extras);
58 void playFromMediaId(String mediaId, in Bundle extras);
59 void playFromSearch(String string, in Bundle extras);
60 void playFromUri(in Uri uri, in Bundle extras);
/frameworks/base/core/java/android/content/pm/
H A DIPackageMoveObserver.aidl27 void onCreated(int moveId, in Bundle extras);
/frameworks/support/customtabs/src/android/support/customtabs/
H A DICustomTabsCallback.aidl26 void onNavigationEvent(int navigationEvent, in Bundle extras) = 1;
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractor.aidl30 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
33 in VoiceInteractor.PickOptionRequest.Option[] options, in Bundle extras);
35 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
37 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
39 IVoiceInteractorCallback callback, String command, in Bundle extras);
/frameworks/base/core/java/android/app/job/
H A DJobParameters.java44 private final PersistableBundle extras; field in class:JobParameters
53 public JobParameters(IBinder callback, int jobId, PersistableBundle extras, argument
57 this.extras = extras;
80 * @return The extras you passed in when constructing this job with
82 * never be null. If you did not set any extras this will be an empty bundle.
85 return extras;
129 extras = in.readPersistableBundle();
150 dest.writePersistableBundle(extras);
/frameworks/base/core/java/android/nfc/tech/
H A DNfcB.java65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B);
66 mAppData = extras.getByteArray(EXTRA_APPDATA);
67 mProtInfo = extras.getByteArray(EXTRA_PROTINFO);
H A DNfcBarcode.java65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE);
66 if (extras != null) {
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
69 throw new NullPointerException("NfcBarcode tech extras are null.");
H A DNfcV.java66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V);
67 mRespFlags = extras.getByte(EXTRA_RESP_FLAGS);
68 mDsfId = extras.getByte(EXTRA_DSFID);

Completed in 642 milliseconds

1234567891011>>