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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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 32 /** Any extras that parameters that are to be passed to the sync adapter. */
33 public final Bundle extras; field in class:PeriodicSync
45 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
48 if (extras == null) {
49 this.extras = new Bundle();
51 this.extras = new Bundle(extras);
65 this.extras = new Bundle(other.extras);
74 public PeriodicSync(Account account, String authority, Bundle extras,
    [all...]
ISyncServiceAdapter.aidl 31 * extras, which is guaranteed to not be null.
35 * @param extras SyncAdapter-specific parameters.
38 void startSync(ISyncContext syncContext, in Bundle extras);
IIntentReceiver.aidl 31 in Bundle extras, boolean ordered, boolean sticky, int sendingUser);
  /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");
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerSurfaceTest.java 31 Bundle extras = new Bundle(); local
33 MediaPlayerSurfaceStubActivity.class, extras);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
MatrixCursorWithExtra.java 23 public MatrixCursorWithExtra(String[] columnNames, int initialCapacity, Bundle extras) {
26 mExtras = extras;
  /frameworks/base/core/java/android/app/job/
JobParameters.java 33 private final PersistableBundle extras; field in class:JobParameters
38 public JobParameters(IBinder callback, int jobId, PersistableBundle extras,
41 this.extras = extras;
54 * @return The extras you passed in when constructing this job with
56 * never be null. If you did not set any extras this will be an empty bundle.
59 return extras;
79 extras = in.readPersistableBundle();
92 dest.writePersistableBundle(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) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__3.py 7 extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"} variable in class:table_T_S_I__3
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
DelayedSyncControllerTest.java 55 Bundle extras = new Bundle(); local
56 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
57 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
61 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
62 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
69 Bundle extras = new Bundle(); local
70 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
78 Bundle extras = new Bundle(); local
79 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
92 Bundle extras = new Bundle() local
93 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
IVoiceInteractor.aidl 29 IVoiceInteractorCallback callback, CharSequence prompt, in Bundle extras);
31 IVoiceInteractorCallback callback, CharSequence message, in Bundle extras);
33 IVoiceInteractorCallback callback, CharSequence message, in Bundle extras);
35 IVoiceInteractorCallback callback, String command, in Bundle extras);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
CommonDatabaseUtils.java 80 * @param extras Zero or even number of string parameters
82 public static void extrasVarArgsToValues(ContentValues values, String... extras) {
83 Assert.assertNotNull(extras);
85 Assert.assertEquals(0, extras.length % 2);
86 for (int i = 0; i < extras.length; i += 2) {
87 values.put(extras[i], extras[i + 1]);
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
CallNotificationReceiver.java 82 Bundle extras = new Bundle(); local
83 extras.putBoolean(TestConnectionService.EXTRA_IS_VIDEO_CALL, isVideoCall);
85 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle);
88 TelecomManager.from(context).addNewIncomingCall(phoneAccount, extras);
91 public static void addNewUnknownCall(Context context, Uri handle, Bundle extras) {
97 if (extras == null) {
98 extras = new Bundle();
102 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, handle);
103 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle);
106 TelecomManager.from(context).addNewUnknownCall(phoneAccount, extras);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 29 private final Bundle extras = new Bundle(); field in class:ShadowIntent
55 extras.putAll(other.extras);
192 extras.putAll(src);
199 extras.putAll(srcShadowIntent.extras);
205 return extras != null ? new Bundle(extras) : null;
210 extras.putInt(key, value);
216 extras.putDouble(key, value)
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
NfcB.java 65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B); local
66 mAppData = extras.getByteArray(EXTRA_APPDATA);
67 mProtInfo = extras.getByteArray(EXTRA_PROTINFO);
NfcBarcode.java 65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE); local
66 if (extras != null) {
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
69 throw new NullPointerException("NfcBarcode tech extras are null.");
NfcV.java 66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V); local
67 mRespFlags = extras.getByte(EXTRA_RESP_FLAGS);
68 mDsfId = extras.getByte(EXTRA_DSFID);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPicker.java 32 Bundle extras = intent.getExtras(); local
33 Bundle data = extras == null ? new Bundle() : new Bundle(extras);
DialogPicker.java 33 Bundle extras = intent.getExtras(); local
34 Bundle data = extras == null ? new Bundle() : new Bundle(extras);
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/extras/tycho-p2-extras-plugin/0.18.1/
tycho-p2-extras-plugin-0.18.1.jar 
  /frameworks/base/core/java/android/content/pm/
IPackageInstallObserver2.aidl 32 * indicating success or failure. In certain cases the {@code extras} Bundle will
38 * <td>Two strings are provided in the extras bundle: EXTRA_EXISTING_PERMISSION
45 void onPackageInstalled(String basePackageName, int returnCode, String msg, in Bundle extras);

Completed in 1055 milliseconds

1 2 3 4 5 6 7 8 91011>>