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

1 2 3 4 5

  /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);
  /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);
EglConfigTest.java 60 Bundle extras = new Bundle(); local
61 extras.putInt(EglConfigCtsActivity.CONFIG_ID_EXTRA, configId);
62 extras.putInt(EglConfigCtsActivity.CONTEXT_CLIENT_VERSION_EXTRA, contextClientVersion);
64 EglConfigCtsActivity.class, 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...]
ChromiumSyncAdapterTest.java 87 Bundle extras = new Bundle(); local
89 extras.putInt(ChromiumSyncAdapter.INVALIDATION_OBJECT_SOURCE_KEY, 61);
91 extras.putString(ChromiumSyncAdapter.INVALIDATION_OBJECT_ID_KEY, "objectid_value");
92 extras.putLong(ChromiumSyncAdapter.INVALIDATION_VERSION_KEY, 42);
93 extras.putString(ChromiumSyncAdapter.INVALIDATION_PAYLOAD_KEY, "payload_value");
94 mSyncAdapter.onPerformSync(TEST_ACCOUNT, 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]);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 44 Bundle extras = getIntent().getExtras(); local
45 if (extras != null) {
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY);
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
Notepadv2.java 129 Bundle extras = intent.getExtras(); local
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
133 String body = extras.getString(NotesDbAdapter.KEY_BODY);
138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE);
141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 44 Bundle extras = getIntent().getExtras(); local
45 if (extras != null) {
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY);
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
Notepadv3.java 129 Bundle extras = intent.getExtras(); local
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
133 String body = extras.getString(NotesDbAdapter.KEY_BODY);
138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE);
141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapter.java 57 public void onPerformSync(Account account, Bundle extras, String authority,
59 if (!DelayedSyncController.getInstance().shouldPerformSync(getContext(), extras, account)) {
68 getStartupCallback(mApplication, account, extras, syncResult, semaphore);
128 final Context context, final Account acct, Bundle extras,
130 final boolean syncAllTypes = extras.getString(INVALIDATION_OBJECT_ID_KEY) == null;
131 final int objectSource = syncAllTypes ? 0 : extras.getInt(INVALIDATION_OBJECT_SOURCE_KEY);
132 final String objectId = syncAllTypes ? "" : extras.getString(INVALIDATION_OBJECT_ID_KEY);
133 final long version = syncAllTypes ? 0 : extras.getLong(INVALIDATION_VERSION_KEY);
134 final String payload = syncAllTypes ? "" : extras.getString(INVALIDATION_PAYLOAD_KEY);
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 124 Bundle extras = new Bundle(); local
125 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
140 Bundle extras = new Bundle(); local
141 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
143 ContentResolver.requestSync(account, authority, extras);
305 fail("did not throw IllegalArgumentException when extras is null.");
315 Bundle extras = new Bundle();
316 extras.putInt("Integer", 20);
317 extras.putLong("Long", 10l);
318 extras.putBoolean("Boolean", true)
    [all...]
MockSyncAdapter.java 80 Bundle extras) throws RemoteException {
84 mExtras = extras;
86 if (null != extras && extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE)) {
  /external/chromium_org/build/android/pylib/device/
intent.py 14 category=None, component=None, data=None, extras=None,
25 extras: A dict containing extra parameters to be passed along with the
39 self._extras = extras
69 def extras(self): member in class:Intent
  /external/chromium_org/testing/android/java/src/org/chromium/native_test/
ChromeNativeTestActivity.java 44 Bundle extras = this.getIntent().getExtras(); local
45 if (extras != null && extras.containsKey(EXTRA_RUN_IN_SUB_THREAD)) {
  /build/core/
checktree 93 extras = []
103 extras.append(file)
106 extras = filter(filter_excludes, extras)
108 for s in extras:
  /developers/build/prebuilts/gradle/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
GetRestrictionsReceiver.java 119 Bundle extras = new Bundle(); local
120 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
121 result.setResult(Activity.RESULT_OK, null, extras);
143 final Bundle extras = new Bundle(); local
155 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
158 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
159 result.setResult(Activity.RESULT_OK, null, extras);
  /development/build/
sdk.atree 405 development/sdk/support_source.properties extras/android/support/source.properties
406 development/sdk/support_README.txt extras/android/support/README.txt
407 development/sdk/sdk_files_NOTICE.txt extras/android/support/NOTICE.txt
409 ${OUT_DIR}/target/common/obj/PACKAGING/android-support-annotations_intermediates/android-support-annotations.jar extras/android/support/annotations/android-support-annotations.jar
411 ${OUT_DIR}/target/common/obj/PACKAGING/android-support-v4_intermediates/android-support-v4.jar extras/android/support/v4/android-support-v4.jar
412 frameworks/support/v4 extras/android/support/v4/src
413 development/samples/Support4Demos extras/android/support/samples/Support4Demos
414 development/samples/SupportAppNavigation extras/android/support/samples/SupportAppNavigation
416 ${OUT_DIR}/target/common/obj/PACKAGING/android-support-v13_intermediates/android-support-v13.jar extras/android/support/v13/android-support-v13.jar
417 frameworks/support/v13 extras (…)
    [all...]
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetService.java 86 final Bundle extras = new Bundle(); local
87 extras.putString(WeatherWidgetProvider.EXTRA_DAY_ID, day);
88 fillInIntent.putExtras(extras);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 34 Bundle extras = intent.getExtras(); local
35 if (extras == null)
38 Object[] pdus = (Object[]) extras.get("pdus");
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetService.java 86 Bundle extras = new Bundle(); local
87 extras.putInt(StackWidgetProvider.EXTRA_ITEM, position);
89 fillInIntent.putExtras(extras);

Completed in 604 milliseconds

1 2 3 4 5