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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/
jd_extras_ja.js 16 METADATA['ja'].extras = METADATA['ja'].extras.concat([
jd_extras_ko.js 16 METADATA['ko'].extras = METADATA['ko'].extras.concat([
jd_extras_zh-cn.js 18 METADATA['zh-cn'].extras = METADATA['zh-cn'].extras.concat([
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
HtmlifyBeginResult.java 26 public final Object extras; field in class:HtmlifyBeginResult
28 public HtmlifyBeginResult(Spanned result, Object extras) {
30 this.extras = extras;
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
CarHelper.java 23 // Use these extras to reserve space for the corresponding actions, even when they are disabled
37 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot,
40 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
42 extras.remove(SLOT_RESERVATION_QUEUE);
45 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
50 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
CarHelper.java 23 // Use these extras to reserve space for the corresponding actions, even when they are disabled
37 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot,
40 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
42 extras.remove(SLOT_RESERVATION_QUEUE);
45 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
50 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
CarHelper.java 23 // Use these extras to reserve space for the corresponding actions, even when they are disabled
37 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot,
40 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
42 extras.remove(SLOT_RESERVATION_QUEUE);
45 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
50 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
CarHelper.java 24 // Use these extras to reserve space for the corresponding actions, even when they are disabled
38 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot,
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);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/extras/
classes.i 1 SPECIFY_CLASS(Extras, com.badlogic.gdx.physics.bullet.extras)
2 SPECIFY_CLASS(ExtrasJNI, com.badlogic.gdx.physics.bullet.extras)
3 SPECIFY_CLASS(SWIGTYPE_p_bParse__btBulletFile, com.badlogic.gdx.physics.bullet.extras)
4 SPECIFY_CLASS(SWIGTYPE_p_btGearConstraint, com.badlogic.gdx.physics.bullet.extras)
5 SPECIFY_CLASS(btBulletWorldImporter, com.badlogic.gdx.physics.bullet.extras)
6 SPECIFY_CLASS(btStringArray, com.badlogic.gdx.physics.bullet.extras)
7 SPECIFY_CLASS(btWorldImporter, com.badlogic.gdx.physics.bullet.extras
  /frameworks/base/core/java/android/os/
IProgressListener.aidl 23 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);
  /tools/test/connectivity/acts/framework/acts/
asserts.py 31 def assert_equal(first, second, msg=None, extras=None):
40 extras: An optional field for extra information to be included in
49 fail(my_msg, extras=extras)
51 def assert_raises(expected_exception, extras=None, *args, **kwargs):
64 extras: An optional field for extra information to be included in
67 context = _AssertRaisesContext(expected_exception, extras=extras)
70 def assert_raises_regex(expected_exception, expected_regex, extras=None, *args,
86 extras: An optional field for extra information to be included i
    [all...]
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 50 Bundle extras = getIntent().getExtras(); local
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(); local
118 extras.putBoolean(ContentResolver.SYNC_EXTRAS_OVERRIDE_TOO_MANY_DELETIONS, true);
119 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
120 extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true)
126 Bundle extras = new Bundle(); local
    [all...]
PeriodicSync.java 34 /** 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) {
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,
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 29 * with the received extras.
62 Bundle extras = intent.getExtras(); local
63 if (extras != null) {
64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
70 Bundle extras = intent.getExtras(); local
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(); local
77 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID
89 Bundle extras = intent.getExtras(); local
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 18 Bundle extras = getIntent().getExtras(); local
19 if (extras != null) {
22 mThemeId = extras.getInt("theme");
34 if (extras != null) {
36 int category = extras.getInt("category");
37 int position = extras.getInt("position");
  /frameworks/support/media-compat/api24/android/support/v4/media/session/
MediaControllerCompatApi24.java 30 public static void prepareFromMediaId(Object controlsObj, String mediaId, Bundle extras) {
31 ((MediaController.TransportControls) controlsObj).prepareFromMediaId(mediaId, extras);
34 public static void prepareFromSearch(Object controlsObj, String query, Bundle extras) {
35 ((MediaController.TransportControls) controlsObj).prepareFromSearch(query, extras);
38 public static void prepareFromUri(Object controlsObj, Uri uri, Bundle extras) {
39 ((MediaController.TransportControls) controlsObj).prepareFromUri(uri, extras);
MediaSessionCompatApi24.java 47 public void onPrepareFromMediaId(String mediaId, Bundle extras);
48 public void onPrepareFromSearch(String query, Bundle extras);
49 public void onPrepareFromUri(Uri uri, Bundle extras);
64 public void onPrepareFromMediaId(String mediaId, Bundle extras) {
65 mCallback.onPrepareFromMediaId(mediaId, extras);
69 public void onPrepareFromSearch(String query, Bundle extras) {
70 mCallback.onPrepareFromSearch(query, extras);
74 public void onPrepareFromUri(Uri uri, Bundle extras) {
75 mCallback.onPrepareFromUri(uri, extras);
  /cts/hostsidetests/services/activitymanager/appDisplaySize/src/android/displaysize/app/
SmallestWidthActivity.java 30 final Bundle extras = intent.getExtras(); local
31 if (extras != null && extras.getBoolean("launch_another_activity")) {
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivity1.java 34 Bundle extras = getIntent().getExtras(); local
35 if (extras != null) {
36 mWaitForReclaim = extras.getBoolean("wait-for-reclaim", mWaitForReclaim);
MediaPlayerSurfaceTest.java 31 Bundle extras = new Bundle(); local
33 MediaPlayerSurfaceStubActivity.class, extras);
  /frameworks/support/media-compat/api23/android/support/v4/media/session/
MediaControllerCompatApi23.java 26 public static void playFromUri(Object controlsObj, Uri uri, Bundle extras) {
27 ((MediaController.TransportControls) controlsObj).playFromUri(uri, extras);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
MatrixCursorWithExtra.java 23 public MatrixCursorWithExtra(String[] columnNames, int initialCapacity, Bundle extras) {
26 mExtras = extras;
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureTest.java 31 Bundle extras = new Bundle(); local
32 extras.putString("TextureFormat", format);
34 CompressedTextureCtsActivity.class, extras);
  /frameworks/base/core/java/android/app/
PackageInstallObserver.java 33 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) {
  /frameworks/base/media/java/android/media/session/
ISessionCallback.aidl 33 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);

Completed in 647 milliseconds

1 2 3 4 5 6 7 8 91011>>