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

1 2 3 4 5 6 7 891011>>

  /cts/tests/tests/appwidget/src/android/appwidget/cts/
RequestPinAppWidgetTest.java 66 Bundle extras = new Bundle(); local
67 extras.putString("dummy", launcherPkg + "-dummy");
72 getFirstWidgetComponent(), extras, pinResult); local
97 // Verify that the result contain the extras
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivityBase.java 117 Bundle extras = getIntent().getExtras(); local
119 if (extras != null) {
120 type = extras.getInt("test-type", type);
  /developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageClientFragment.java 139 Bundle extras = cursor.getExtras(); local
140 int totalSize = extras.getInt(ContentResolver.EXTRA_TOTAL_SIZE);
  /developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageClientFragment.java 139 Bundle extras = cursor.getExtras(); local
140 int totalSize = extras.getInt(ContentResolver.EXTRA_TOTAL_SIZE);
  /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);
  /external/fmtlib/support/
docopt.py 476 def extras(help, version, options, doc): function
577 extras(help, version, argv, doc)
  /frameworks/base/core/java/android/app/
RemoteInput.java 90 int flags, Bundle extras, ArraySet<String> allowedDataTypes) {
95 this.mExtras = extras;
248 * <p>Values within the Bundle will replace existing extras values in this Builder.
252 public Builder addExtras(Bundle extras) {
253 if (extras != null) {
254 mExtras.putAll(extras);
318 Bundle extras = clipDataIntent.getExtras(); local
319 for (String key : extras.keySet()) {
  /frameworks/base/core/java/android/app/job/
JobParameters.java 49 private final PersistableBundle extras; field in class:JobParameters
61 public JobParameters(IBinder callback, int jobId, PersistableBundle extras,
66 this.extras = extras;
92 * @return The extras you passed in when constructing this job with
94 * never be null. If you did not set any extras this will be an empty bundle.
97 return extras;
101 * @return The transient extras you passed in when constructing this job with
103 * never be null. If you did not set any extras this will be an empty bundle.
235 extras = in.readPersistableBundle()
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
Ndef.java 160 Bundle extras = tag.getTechExtras(TagTechnology.NDEF); local
161 if (extras != null) {
162 mMaxNdefSize = extras.getInt(EXTRA_NDEF_MAXLENGTH);
163 mCardState = extras.getInt(EXTRA_NDEF_CARDSTATE);
164 mNdefMsg = extras.getParcelable(EXTRA_NDEF_MSG);
165 mNdefType = extras.getInt(EXTRA_NDEF_TYPE);
167 throw new NullPointerException("NDEF tech extras are null.");
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 438 public Bundle extras; field in class:EditorInfo
527 pw.println(prefix + "extras=" + extras);
552 dest.writeBundle(extras);
581 res.extras = source.readBundle();
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfInternalSelectionViews.java 119 Bundle extras = getIntent().getExtras(); local
120 if (extras != null) {
121 initFromBundle(extras);
  /frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
CarrierActionUtils.java 152 final Bundle extras = Bundle.forPair(Notification.EXTRA_SUBSTITUTE_APP_NAME, local
169 .setExtras(extras)
  /frameworks/base/services/core/java/com/android/server/location/
MockProvider.java 92 public int getStatus(Bundle extras) {
94 extras.clear();
95 extras.putAll(mExtras);
123 public void setStatus(int status, Bundle extras, long updateTime) {
127 if (extras != null) {
128 mExtras.putAll(extras);
158 public boolean sendExtraCommand(String command, Bundle extras) {
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeFiltering.java 73 * @param extras extras of the notification with EXTRA_PEOPLE populated
79 UserHandle userHandle, Bundle extras, ValidateNotificationPeople validator,
84 if (config.allowRepeatCallers && REPEAT_CALLERS.isRepeat(context, extras)) {
89 final float contactAffinity = validator.getContactAffinity(userHandle, extras,
97 private static Bundle extras(NotificationRecord record) { method in class:ZenModeFiltering
99 ? record.sbn.getNotification().extras : null;
103 REPEAT_CALLERS.recordCall(mContext, extras(record));
134 && REPEAT_CALLERS.isRepeat(mContext, extras(record))) {
246 private synchronized void recordCall(Context context, Bundle extras) {
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
JobStoreTest.java 137 PersistableBundle extras = new PersistableBundle(); local
138 extras.putDouble("hello", 3.2);
139 extras.putString("hi", "there");
140 extras.putInt("into", 3);
141 b.setExtras(extras);
296 assertEquals("Extras don't match",
  /frameworks/base/services/tests/servicestests/test-apps/ConnTestApp/src/com/android/servicestests/apps/conntestapp/
ConnTestActivity.java 78 final Bundle extras = getIntent().getExtras(); local
79 if (extras == null) {
83 extras.getBinder(EXTRA_NETWORK_STATE_OBSERVER));
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 101 Bundle extras = intent.getExtras(); local
102 int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStoreLegacy.java 162 * the provided configuration map and network extras.
168 * @param networkExtras Map of network extras parsed from wpa_supplicant.
191 * @param networkExtras Map of network extras parsed from wpa_supplicant.
213 Map<String, String> extras = networkExtras.get(wifiConfig.networkId); local
214 if (extras == null || !extras.containsKey(SupplicantStaNetworkHal.ID_STRING_KEY_FQDN)) {
  /frameworks/support/compat/jellybean/android/support/v4/app/
RemoteInputCompatJellybean.java 48 private static final String KEY_EXTRAS = "extras";
124 Bundle extras = clipDataIntent.getExtras(); local
125 for (String key : extras.keySet()) {
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/details/
DetailViewExampleFragment.java 116 Bundle extras = getActivity().getIntent().getExtras(); local
117 if (extras != null && extras.containsKey(EXTRA_CARD)) {
118 imageResId = extras.getInt(EXTRA_CARD, imageResId);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattDebugUtils.java 126 Bundle extras = intent.getExtras(); local
127 Object uuid = extras != null ? extras.get(extra) : null;
131 return Integer.parseInt(extras.getString(extra), 16);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 515 final Bundle extras = new Bundle(2); local
518 extras.putLong(BluetoothMapContract.EXTRA_UPDATE_FOLDER_ID,
520 extras.putLong(BluetoothMapContract.EXTRA_UPDATE_ACCOUNT_ID, accountId);
533 BluetoothMapContract.METHOD_UPDATE_FOLDER, null, extras);
728 final Bundle extras = new Bundle(5); local
    [all...]
  /packages/apps/Car/Media/src/com/android/car/media/
MediaPlaybackModel.java 234 * extras as a boolean for each default action that needs its slot
242 Bundle extras = mController.getExtras(); local
243 if (extras != null) {
244 return extras.getBoolean(actionExtraKey, false);
  /packages/apps/Email/provider_src/com/android/email/
EmailConnectivityManager.java 121 Bundle extras = intent.getExtras(); local
122 if (extras != null) {
124 (NetworkInfo)extras.get(ConnectivityManager.EXTRA_NETWORK_INFO);

Completed in 1667 milliseconds

1 2 3 4 5 6 7 891011>>