HomeSort by relevance Sort by last modified time
    Searched defs:extras (Results 126 - 150 of 529) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SendMessageAction.java 235 final Bundle extras = new Bundle(); local
236 extras.putString(EXTRA_MESSAGE_ID, messageId);
237 extras.putParcelable(EXTRA_UPDATED_MESSAGE_URI, updatedMessageUri);
239 messageUri, extras);
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
Common.java 68 final Bundle extras = intent.getExtras(); local
69 if (extras == null) {
73 extras.getBinder(KEY_NETWORK_STATE_OBSERVER));
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConferenceTest.java 183 Bundle extras = new Bundle(); local
184 extras.putString(TelecomManager.EXTRA_CALL_DISCONNECT_MESSAGE, "Test");
186 mConferenceObject.setExtras(extras);
260 Bundle extras = new Bundle(); local
261 extras.putString(TEST_EXTRA_KEY_1, TEST_EXTRA_VALUE_1);
262 extras.putInt(TEST_EXTRA_KEY_2, TEST_EXTRA_VALUE_2);
263 mConferenceObject.putExtras(extras);
267 assertTrue(areBundlesEqual(extras, conf.getDetails().getExtras()));
285 Bundle extras = mConferenceObject.getExtras(); local
287 assertFalse(extras.containsKey(TEST_EXTRA_KEY_1))
306 Bundle extras = mConferenceObject.getExtras(); local
312 Bundle extras = new Bundle(); local
330 Bundle extras = new Bundle(); local
    [all...]
  /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/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/
ComplicationToggleReceiver.java 45 Bundle extras = intent.getExtras(); local
46 ComponentName provider = extras.getParcelable(EXTRA_PROVIDER_COMPONENT);
47 int complicationId = extras.getInt(EXTRA_COMPLICATION_ID);
  /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);
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/
ComplicationToggleReceiver.java 45 Bundle extras = intent.getExtras(); local
46 ComponentName provider = extras.getParcelable(EXTRA_PROVIDER_COMPONENT);
47 int complicationId = extras.getInt(EXTRA_COMPLICATION_ID);
  /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/Notepadv3Solution/src/com/android/demo/notepad3/
NoteEdit.java 50 Bundle extras = getIntent().getExtras(); local
51 mRowId = extras != null ? extras.getLong(NotesDbAdapter.KEY_ROWID)
  /external/autotest/site_utils/sponge_lib/
acts_job_info.py 28 Extras = 'Extras'
182 def extras(self): member in class:ACTSRecord
184 return self._json_record.get(ACTSRecordEnums.Extras, None)
194 extras = self.extras
195 if not extras:
198 test_tracker_info = self.extras.get('test_tracker_info', None)
  /external/guava/guava-tests/test/com/google/common/collect/
CollectionBenchmarkSampleData.java 76 int extras = numGoodQueries % size; local
83 queryList.addAll(tmp.subList(0, extras));
  /external/owasp/sanitizer/src/tests/org/owasp/html/
SanitizersTest.java 267 PolicyFactory extras = new HtmlPolicyBuilder() local
279 .and(extras);
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 55 final Bundle extras = getIntent().getExtras(); local
56 if (extras == null) {
64 mAccount = extras.getParcelable(EXTRAS_ACCOUNT);
65 mAuthTokenType = extras.getString(EXTRAS_AUTH_TOKEN_TYPE);
66 mUid = extras.getInt(EXTRAS_REQUESTING_UID);
  /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/android/nfc/tech/
MifareUltralight.java 112 Bundle extras = tag.getTechExtras(TagTechnology.MIFARE_ULTRALIGHT); local
113 if (extras.getBoolean(EXTRA_IS_UL_C)) {
  /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/packages/EasterEgg/src/com/android/egg/neko/
NekoService.java 59 final Bundle extras = new Bundle(); local
60 extras.putString("android.substName", getString(R.string.notification_name));
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
Tile.java 65 public Bundle extras; field in class:Tile
117 dest.writeBundle(extras);
137 extras = in.readBundle();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ForegroundServiceControllerImpl.java 94 final Bundle extras = sbn.getNotification().extras; local
95 if (extras != null) {
96 final String[] svcs = extras.getStringArray(Notification.EXTRA_FOREGROUND_APPS);
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 126 assertTrue("Account fields in extras not persisted.",
127 account1.equals(op2.extras.get("acc")));
128 assertTrue("Fields in extras not persisted", "String".equals(op2.extras.getString("str")));
133 PersistableBundle extras = new PersistableBundle(); local
134 SyncOperation op = SyncOperation.maybeCreateFromJobExtras(extras);
146 Bundle extras = new Bundle(); local
147 SyncOperation periodic = new SyncOperation(ep, 0, "package", 0, 0, extras, false, true,
  /frameworks/support/compat/api20/android/support/v4/app/
RemoteInputCompatApi20.java 77 Bundle extras = clipDataIntent.getExtras(); local
78 for (String key : extras.keySet()) {
  /frameworks/support/emoji/core/tests/java/android/support/text/emoji/
EmojiCompatTest.java 630 editorInfo.extras = new Bundle();
638 final Bundle extras = editorInfo.extras; local
639 assertFalse(extras.containsKey(EmojiCompat.EDITOR_INFO_METAVERSION_KEY));
640 assertFalse(extras.containsKey(EmojiCompat.EDITOR_INFO_REPLACE_ALL_KEY));
649 editorInfo.extras = new Bundle();
654 final Bundle extras = editorInfo.extras; local
655 assertTrue(extras.containsKey(EmojiCompat.EDITOR_INFO_METAVERSION_KEY));
656 assertTrue(extras.getInt(EmojiCompat.EDITOR_INFO_METAVERSION_KEY) > 0)
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/
MainFragment.java 145 // Prepare extras which contains the Movie and will be passed to the Activity
147 Bundle extras = new Bundle(); local
151 extras.putSerializable("movie", movie);
152 intent.putExtras(extras);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 65 Bundle extras = intent.getExtras(); local
66 if (extras != null && !extras.isEmpty()) {
67 for (String key : extras.keySet()) {
68 Object value = extras.get(key);
  /packages/apps/Dialer/java/com/android/incallui/latencyreport/
LatencyReport.java 71 Bundle extras = telecomCall.getDetails().getIntentExtras(); local
72 if (extras == null) {
77 mCreatedTimeMillis = extras.getLong(EXTRA_CALL_CREATED_TIME_MILLIS, INVALID_TIME);
79 extras.getLong(EXTRA_CALL_TELECOM_ROUTING_START_TIME_MILLIS, INVALID_TIME);
81 extras.getLong(EXTRA_CALL_TELECOM_ROUTING_END_TIME_MILLIS, INVALID_TIME);

Completed in 1141 milliseconds

1 2 3 4 56 7 8 91011>>