/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);
|
/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);
|
/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);
|
/external/libxml2/doc/examples/ |
index.py | 16 extras = ['examples.xsl', 'index.html', 'index.py'] variable 220 extras.append(file) 222 extras.append(file) 256 extras.sort() 259 for extra in extras:
|
/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);
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/ |
IntentFilterVerificationReceiver.java | 94 Bundle extras = new Bundle(); local 95 extras.putString(DirectStatementService.EXTRA_RELATION, HANDLE_ALL_URLS_RELATION); 116 extras.putStringArrayList(DirectStatementService.EXTRA_SOURCE_ASSET_DESCRIPTORS, 124 extras.putString(DirectStatementService.EXTRA_TARGET_ASSET_DESCRIPTOR, 131 extras.putParcelable(DirectStatementService.EXTRA_RESULT_RECEIVER, 138 serviceIntent.putExtras(extras);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
NotificationBigPictureTemplateViewWrapper.java | 45 final Bundle extras = notification.getNotification().extras; local 46 Icon overRiddenIcon = extras.getParcelable(Notification.EXTRA_LARGE_ICON_BIG);
|
/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);
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
RequestDesiredPermissionsActivity.java | 54 final Bundle extras = activity.getIntent().getExtras(); local 55 if (extras != null && extras.getBoolean(EXTRA_STARTED_PERMISSIONS_ACTIVITY, false)) {
|
/packages/apps/Dialer/java/com/android/dialer/callintent/ |
CallIntentParser.java | 29 public static CallSpecificAppData getCallSpecificAppData(@Nullable Bundle extras) { 30 if (extras == null) { 34 if (!extras.containsKey(Constants.EXTRA_CALL_SPECIFIC_APP_DATA)) { 39 extras.getBundle(Constants.EXTRA_CALL_SPECIFIC_APP_DATA), 45 @NonNull Bundle extras, @NonNull CallSpecificAppData callSpecificAppData) { 50 extras.putBundle(Constants.EXTRA_CALL_SPECIFIC_APP_DATA, wrapperBundle);
|
/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);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
UserInitializeReceiver.java | 62 final String[] extras = resources.getStringArray(resid); local 63 for (String extra : extras) {
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
AccessibilitySettingsForSetupWizard.java | 99 Bundle extras = mDisplayMagnificationPreference.getExtras(); local 100 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, true); 135 // Update the extras. 136 Bundle extras = preference.getExtras(); local 137 extras.putParcelable(AccessibilitySettings.EXTRA_COMPONENT_NAME, componentName); 139 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY, 141 extras.putString(AccessibilitySettings.EXTRA_TITLE, title); 147 extras.putString(AccessibilitySettings.EXTRA_SUMMARY, description); 158 final Bundle extras = preference.getExtras(); local 159 MagnificationPreferenceFragment.populateMagnificationGesturesPreferenceExtras(extras, [all...] |
/packages/apps/Settings/src/com/android/settings/language/ |
UserDictionaryPreferenceController.java | 57 final Bundle extras = preference.getExtras(); local 62 // parameter in the extras. This will be interpreted by the 69 extras.putString("locale", localeSet.first());
|
/packages/services/Telephony/src/com/android/services/telephony/ |
PstnIncomingCallNotifier.java | 188 Bundle extras = new Bundle(); local 192 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, uri); 200 extras.putInt(ImsExternalCallTracker.EXTRA_IMS_EXTERNAL_CALL_ID, 205 extras.putLong(TelecomManager.EXTRA_CALL_CREATED_TIME_MILLIS, 216 TelecomManager.from(mPhone.getContext()).addNewUnknownCall(handle, extras); 227 Bundle extras = new Bundle(); local 231 extras.putParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS, uri); 235 extras.putLong(TelecomManager.EXTRA_CALL_CREATED_TIME_MILLIS, 246 TelecomManager.from(mPhone.getContext()).addNewIncomingCall(handle, extras);
|
/cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/ |
BatteryStatsSyncAdapter.java | 54 public void onPerformSync(Account account, Bundle extras, String authority, 104 final Bundle extras = new Bundle(); local 105 extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true); 106 extras.putBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF, true); 107 extras.putBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS, true); 109 ContentResolver.requestSync(account, BatteryStatsProvider.AUTHORITY, extras);
|
/cts/tests/tests/assist/src/android/assist/cts/ |
ScreenshotTest.java | 113 Bundle extras = new Bundle(); local 114 extras.putInt(Utils.SCREENSHOT_COLOR_KEY, color); 115 startSession(TEST_CASE_TYPE, extras);
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
CallScreeningServiceTest.java | 114 Bundle extras = new Bundle(); local 115 extras.putParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS, incomingHandle); 116 mTelecomManager.addNewIncomingCall(TEST_PHONE_ACCOUNT_HANDLE, extras);
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
RecommendationBuilder.java | 109 Bundle extras = new Bundle(); local 111 extras.putString(EXTRA_BACKGROUND_IMAGE_URL, mBackgroundUri); 132 .setExtras(extras))
|
/developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/ |
AlarmUtil.java | 49 Bundle extras = writeAlarm(alarm); local 50 intent.putExtras(extras); 101 public static Alarm readAlarm(Bundle extras) { 102 int id = extras.getInt(AlarmIntentService.KEY_ALARM_ID); 103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); 104 int date = extras.getInt(AlarmIntentService.KEY_ALARM_DATE); 105 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR); 106 int minute = extras.getInt(AlarmIntentService.KEY_ALARM_MINUTE); 112 Bundle extras = new Bundle(); local 113 extras.putInt(AlarmIntentService.KEY_ALARM_ID, alarm.id) [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);
|
/developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/ |
AlarmUtil.java | 49 Bundle extras = writeAlarm(alarm); local 50 intent.putExtras(extras); 101 public static Alarm readAlarm(Bundle extras) { 102 int id = extras.getInt(AlarmIntentService.KEY_ALARM_ID); 103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); 104 int date = extras.getInt(AlarmIntentService.KEY_ALARM_DATE); 105 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR); 106 int minute = extras.getInt(AlarmIntentService.KEY_ALARM_MINUTE); 112 Bundle extras = new Bundle(); local 113 extras.putInt(AlarmIntentService.KEY_ALARM_ID, alarm.id) [all...] |