HomeSort by relevance Sort by last modified time
    Searched defs:extras (Results 26 - 50 of 91) sorted by null

12 3 4

  /packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsActivity.java 174 Bundle extras = new Bundle(); local
175 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
176 extras.putBoolean("metafeedonly", true);
178 Calendars.CONTENT_URI.getAuthority(), extras);
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityModifierTests.java 698 // Parse extras, making sure we keep single name
700 final Bundle extras = new Bundle(); local
701 extras.putString(Insert.NAME, TEST_NAME2);
702 EntityModifier.parseExtras(mContext, source, state, extras);
723 final Bundle extras = new Bundle(); local
724 extras.putInt(Insert.IM_PROTOCOL, Im.PROTOCOL_GOOGLE_TALK);
725 extras.putString(Insert.IM_HANDLE, TEST_IM);
726 EntityModifier.parseExtras(mContext, source, state, extras);
737 final Bundle extras = new Bundle(); local
749 final Bundle extras = new Bundle(); local
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NoteEdit.java 50 Bundle extras = getIntent().getExtras(); local
51 mRowId = extras != null ? extras.getLong(NotesDbAdapter.KEY_ROWID)
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 240 public Bundle extras; field in class:EditorInfo
260 pw.println(prefix + "extras=" + extras);
283 dest.writeBundle(extras);
305 res.extras = source.readBundle();
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactActivity.java 76 final Bundle extras = intent.getExtras(); local
80 final int mode = extras.getInt(QuickContact.EXTRA_MODE, QuickContact.MODE_MEDIUM);
81 final String[] excludeMimes = extras.getStringArray(QuickContact.EXTRA_EXCLUDE_MIMES);
  /packages/apps/Gallery3D/src/com/cooliris/media/
PhotoAppWidgetBind.java 51 final Bundle extras = intent.getExtras(); local
53 final int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
54 final ArrayList<Bitmap> bitmaps = extras.getParcelableArrayList(EXTRA_APPWIDGET_BITMAPS);
  /packages/apps/Phone/src/com/android/phone/
DeleteFdnContactScreen.java 74 Bundle extras = (intent != null) ? intent.getExtras() : null; local
75 if (extras != null) {
76 mPin2 = extras.getString("pin2");
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Video.java 46 private Bundle extras; field in class:MediaPlayerDemo_Video
68 extras = getIntent().getExtras();
181 playVideo(extras.getInt(MEDIA));
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 62 Bundle extras = new Bundle(); local
63 extras.putParcelable("key1", new MockParcelable());
64 address.setExtras(extras);
66 assertEquals(extras.describeContents(), address.describeContents());
161 Bundle extras = new Bundle(); local
162 extras.putBoolean("key1", false);
164 extras.putByte("key2", b);
166 address.setExtras(extras);
429 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
  /frameworks/base/core/java/android/content/
SyncStorageEngine.java 138 final Bundle extras; // note: read-only. field in class:SyncStorageEngine.PendingOperation
145 String authority, Bundle extras, boolean expedited) {
149 this.extras = extras != null ? new Bundle(extras) : extras;
158 this.extras = other.extras;
581 private void updateOrRemovePeriodicSync(Account account, String providerName, Bundle extras,
586 if (extras == null)
1595 Bundle extras = new Bundle(); local
1614 final Bundle extras = periodicSync.first; local
1681 final Bundle extras = periodicSync.first; local
1961 Bundle extras = null; local
    [all...]
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountSyncSettings.java 295 Bundle extras = new Bundle(); local
296 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
297 ContentResolver.requestSync(account, authority, extras);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
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/
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);
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 60 final Bundle extras = getIntent().getExtras(); local
63 mAccount = extras.getParcelable(EXTRAS_ACCOUNT);
64 mAuthTokenType = extras.getString(EXTRAS_AUTH_TOKEN_TYPE);
65 mUid = extras.getInt(EXTRAS_REQUESTING_UID);
  /frameworks/base/core/java/android/database/
BulkCursorNative.java 161 Bundle extras = getExtras(); local
163 reply.writeBundle(extras);
169 Bundle extras = data.readBundle(); local
170 Bundle returnExtras = respond(extras);
422 public Bundle respond(Bundle extras) throws RemoteException {
428 data.writeBundle(extras);
  /frameworks/base/core/java/android/nfc/tech/
Ndef.java 161 Bundle extras = tag.getTechExtras(TagTechnology.NDEF); local
162 if (extras != null) {
163 mMaxNdefSize = extras.getInt(EXTRA_NDEF_MAXLENGTH);
164 mCardState = extras.getInt(EXTRA_NDEF_CARDSTATE);
165 mNdefMsg = extras.getParcelable(EXTRA_NDEF_MSG);
166 mNdefType = extras.getInt(EXTRA_NDEF_TYPE);
168 throw new NullPointerException("NDEF tech extras are null.");
  /frameworks/base/core/tests/coretests/src/android/content/
SyncQueueTest.java 155 op2.extras.putBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, true);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfInternalSelectionViews.java 115 Bundle extras = getIntent().getExtras(); local
116 if (extras != null) {
117 initFromBundle(extras);
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 93 Bundle extras = intent.getExtras(); local
94 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID);
  /packages/apps/Browser/src/com/android/browser/
CombinedBookmarkHistoryActivity.java 100 Bundle extras = getIntent().getExtras(); local
103 if (extras != null) {
104 bookmarksIntent.putExtras(extras);
110 // Need to copy extras so the bookmarks activity and this one will be
112 Bundle visitedExtras = extras == null ? new Bundle() : new Bundle(extras);
120 if (extras != null) {
121 historyIntent.putExtras(extras);
122 defaultTab = extras.getString(STARTING_TAB);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 61 Bundle extras = intent.getExtras(); local
62 if (extras == null) {
63 Log.e(TAG, "received SMS_CB_RECEIVED_ACTION with no extras!");
67 Object[] pdus = (Object[]) extras.get("pdus");
CellBroadcastListActivity.java 258 Bundle extras = intent.getExtras(); local
259 if (extras == null) {
263 CellBroadcastMessage cbm = extras.getParcelable(CellBroadcastMessage.SMS_CB_MESSAGE_EXTRA);
264 int notificationId = extras.getInt(CellBroadcastAlertService.SMS_CB_NOTIFICATION_ID_EXTRA);
  /packages/apps/Contacts/src/com/android/contacts/
AttachImage.java 146 final Bundle extras = result.getExtras(); local
147 if (extras != null && mRawContactIds != null) {
148 Bitmap photo = extras.getParcelable("data");
  /packages/apps/Settings/src/com/android/settings/
AppWidgetPickActivity.java 43 * otherwise it will return the requested extras.
83 final Bundle extras = getIntent().getExtras(); local
85 // get and validate the extras they gave us
89 customInfo = extras.getParcelableArrayList(AppWidgetManager.EXTRA_CUSTOM_INFO);
105 customExtras = extras.getParcelableArrayList(AppWidgetManager.EXTRA_CUSTOM_EXTRAS);
144 // If there are any extras, it's because this entry is custom.
166 * inserting extras if provided.
192 item.extras = customExtras.get(i);
  /packages/apps/Tag/src/com/android/apps/tag/
WriteTagActivity.java 94 Bundle extras = getIntent().getExtras(); local
95 if (extras == null || !extras.containsKey("id")) {
101 long id = extras.getLong("id");

Completed in 1294 milliseconds

12 3 4