/frameworks/support/compat/java/android/support/v4/app/ |
NotificationCompatBuilder.java | 210 Bundle extras = NotificationCompat.getExtras(n); local 211 if (extras != null) { 212 style.addCompatExtras(extras); 328 // Add the action extras sparse array if any action was added with extras. 343 // Merge in developer provided extras, but let the values already set 345 Bundle extras = NotificationCompat.getExtras(notification); local 348 if (extras.containsKey(key)) { 352 extras.putAll(mergeBundle); 356 // Add the action extras sparse array if any action was added with extras [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
ResourceManagerTest.java | 34 Bundle extras = new Bundle(); local 36 "android.media.cts", ResourceManagerStubActivity.class, extras);
|
/external/v8/src/snapshot/ |
natives.h | 19 EXTRAS, 58 typedef NativesCollection<EXTRAS> ExtraNatives;
|
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
NfcAdapterExtras.java | 97 "You must pass a context to your NfcAdapter to use the NFC extras APIs"); 104 NfcAdapterExtras extras = sNfcExtras.get(adapter); local 105 if (extras == null) { 106 extras = new NfcAdapterExtras(adapter); 107 sNfcExtras.put(adapter, extras); 109 return extras; 163 Log.e(TAG, "NFC Adapter Extras dead - attempting to recover"); 224 * Some implementations of NFC Adapter Extras may require applications
|
/frameworks/base/telecomm/java/com/android/internal/telecom/ |
IInCallAdapter.aidl | 67 void sendCallEvent(String callId, String event, in Bundle extras); 69 void putExtras(String callId, in Bundle extras);
|
/frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/ |
TestAppWidgetProvider.java | 46 Bundle extras = intent.getExtras(); local 47 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
|
/frameworks/support/customtabs/tests/src/android/support/customtabs/ |
TestCustomTabsService.java | 46 Uri url, Bundle extras, List<Bundle> otherLikelyBundles) { 70 protected int postMessage(CustomTabsSessionToken sessionToken, String message, Bundle extras) {
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/ |
UploadTask.java | 51 public void onCreate(Context context, Bundle extras) { 52 super.onCreate(context, extras);
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/ |
BrokenSettingsEnabledProvider.java | 45 Bundle extras = c.getExtras(); local 46 extras.putString(
|
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/ |
MessagingNotificationHandler.java | 51 Log.d(TAG, "NotificationHandler, notification extras: " 52 + notification.extras.toString());
|
/system/core/libcutils/include/private/ |
fs_config.h | 67 * system/extras/ext4_utils/make_ext4fs_main.c 71 * system/extras/ext4_utils/canned_fs_config.c
|
/cts/hostsidetests/content/test-apps/CtsSyncAccountAccessSameCertTests/src/com/android/cts/content/ |
CtsSyncAccountAccessSameCertTestCases.java | 94 SyncAdapter.setOnPerformSyncDelegate((Account account, Bundle extras, 98 Bundle extras = new Bundle(); local 99 extras.putBoolean(ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY, true); 100 extras.putBoolean(ContentResolver.SYNC_EXTRAS_PRIORITY, true); 101 extras.getBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS, true); 105 .setExtras(extras)
|
/cts/tests/tests/assist/service/src/android/voiceinteraction/service/ |
MainInteractionService.java | 109 Bundle extras = intent.getExtras(); local 110 if (extras == null) { 111 extras = new Bundle(); 122 intent3p.putExtras(extras); 132 extras.putString(Utils.TESTCASE_TYPE, mIntent.getStringExtra(Utils.TESTCASE_TYPE)); 134 extras, SHOW_WITH_ASSIST | SHOW_WITH_SCREENSHOT);
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
MockConnection.java | 171 public void onCallEvent(String event, Bundle extras) { 172 super.onCallEvent(event, extras); 174 mInvokeCounterMap.get(ON_CALL_EVENT).invoke(event, extras); 187 public void onExtrasChanged(Bundle extras) { 188 super.onExtrasChanged(extras); 190 mInvokeCounterMap.get(ON_EXTRAS_CHANGED).invoke(extras);
|
/developers/build/prebuilts/gradle/DragAndDropAcrossApps/DropTarget/src/main/java/com/example/android/droptarget/ |
DropTargetFragment.java | 108 // Read the string from the clip description extras. 164 * Extract the extras from the event and return the String stored for the 168 // The extras are contained in the ClipDescription in the DragEvent. 171 PersistableBundle extras = clipDescription.getExtras(); local 172 if (extras != null) { 173 return extras.getString(EXTRA_IMAGE_INFO);
|
/developers/samples/android/ui/window/DragAndDropAcrossApps/DropTarget/src/main/java/com/example/android/droptarget/ |
DropTargetFragment.java | 108 // Read the string from the clip description extras. 164 * Extract the extras from the event and return the String stored for the 168 // The extras are contained in the ClipDescription in the DragEvent. 171 PersistableBundle extras = clipDescription.getExtras(); local 172 if (extras != null) { 173 return extras.getString(EXTRA_IMAGE_INFO);
|
/development/samples/browseable/DragAndDropAcrossApps/DropTarget/src/com.example.android/droptarget/ |
DropTargetFragment.java | 108 // Read the string from the clip description extras. 164 * Extract the extras from the event and return the String stored for the 168 // The extras are contained in the ClipDescription in the DragEvent. 171 PersistableBundle extras = clipDescription.getExtras(); local 172 if (extras != null) { 173 return extras.getString(EXTRA_IMAGE_INFO);
|
/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/database/ |
BulkCursorNative.java | 110 Bundle extras = getExtras(); local 112 reply.writeBundle(extras); 118 Bundle extras = data.readBundle(); local 119 Bundle returnExtras = respond(extras); 265 public Bundle respond(Bundle extras) throws RemoteException { 270 data.writeBundle(extras);
|
/frameworks/base/core/java/com/android/internal/util/ |
ProgressReporter.java | 208 private void notifyStarted(int id, Bundle extras) { 211 mListeners.getBroadcastItem(i).onStarted(id, extras); 218 private void notifyProgress(int id, int progress, Bundle extras) { 221 mListeners.getBroadcastItem(i).onProgress(id, progress, extras); 228 private void notifyFinished(int id, Bundle extras) { 231 mListeners.getBroadcastItem(i).onFinished(id, extras);
|
/frameworks/support/customtabs/src/android/support/customtabs/ |
CustomTabsSession.java | 61 * @param extras Reserved for future use. 68 public boolean mayLaunchUrl(Uri url, Bundle extras, List<Bundle> otherLikelyBundles) { 70 return mService.mayLaunchUrl(mCallback, url, extras, otherLikelyBundles); 173 * @param extras Reserved for future use. 178 public int postMessage(String message, Bundle extras) { 181 return mService.postMessage(mCallback, message, extras);
|
/packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/ |
BaseTask.java | 159 public void onCreate(Context context, Bundle extras) { 161 mExtras = extras; 162 mPhoneAccountHandle = extras.getParcelable(EXTRA_PHONE_ACCOUNT_HANDLE); 164 policy.onCreate(this, extras); 170 public void onRestore(Bundle extras) { 172 mExecutionTime = extras.getLong(EXTRA_EXECUTION_TIME);
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
NoConfirmationSmsSendService.java | 68 final Bundle extras = intent.getExtras(); local 69 if (extras == null) { 71 LogUtil.v(TAG, "Called to send SMS but no extras"); 76 // Get all possible extras from intent 84 final int subId = extras.getInt(EXTRA_SUBSCRIPTION, ParticipantData.DEFAULT_SELF_SUB_ID); 96 if (extras.getBoolean("showUI", false)) {
|
/packages/apps/Settings/src/com/android/settings/ |
AppWidgetPickActivity.java | 44 * otherwise it will return the requested extras. 96 public PickAdapter.Item createItem(Context context, AppWidgetProviderInfo info, Bundle extras) { 137 item.extras = extras; 150 if (item.extras != null) { 151 // If these extras are present it's because this entry is custom.
|