HomeSort by relevance Sort by last modified time
    Searched full:resultintent (Results 1 - 20 of 20) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Somnambulator.java 44 Intent resultIntent = new Intent();
45 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
47 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
48 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.start_dreams));
49 setResult(RESULT_OK, resultIntent);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
A3DSelector.java 104 Intent resultIntent = new Intent();
105 resultIntent.setData(Uri.fromFile(selectedFile));
106 setResult(RESULT_OK, resultIntent);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
FileSelector.java 104 Intent resultIntent = new Intent();
105 resultIntent.setData(Uri.fromFile(selectedFile));
106 setResult(RESULT_OK, resultIntent);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ShortcutNameActivity.java 99 Intent resultIntent = new Intent();
100 resultIntent.putExtra(EXTRA_FOLDER_CLICK_INTENT, mShortcutClickIntent);
103 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, mFolderName);
FolderSelectionActivity.java 272 Intent resultIntent = new Intent();
283 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, clickIntent);
284 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
294 resultIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, humanFolderName);
305 resultIntent);
  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 109 Intent resultIntent = new Intent(this, ResultActivity.class);
110 resultIntent.putExtra(CommonConstants.EXTRA_MESSAGE, msg);
111 resultIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
119 resultIntent,
  /frameworks/base/docs/html/training/notify-user/
expanded.jd 99 <pre>Intent resultIntent = new Intent(this, ResultActivity.class);
100 resultIntent.putExtra(CommonConstants.EXTRA_MESSAGE, msg);
101 resultIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
110 resultIntent,
build-notification.jd 105 <pre>Intent resultIntent = new Intent(this, ResultActivity.class);
113 resultIntent,
navigation.jd 99 Intent resultIntent = new Intent(this, ResultActivity.class);
104 stackBuilder.addNextIntent(resultIntent);
  /packages/apps/Contacts/src/com/android/contacts/activities/
GroupEditorActivity.java 147 public void onSaveFinished(int resultCode, Intent resultIntent) {
153 setResult(resultCode, resultIntent);
154 } else if (resultIntent != null) {
157 intent.setData(resultIntent.getData());
ContactEditorActivity.java 165 public void onSaveFinished(Intent resultIntent) {
167 setResult(resultIntent == null ? RESULT_CANCELED : RESULT_OK, resultIntent);
168 } else if (resultIntent != null) {
169 startActivity(resultIntent);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java 42 private Intent resultIntent;
124 this.resultIntent = data;
286 return resultIntent;
395 public void receiveResult(Intent requestIntent, int resultCode, Intent resultIntent) {
403 .with(requestCode, resultCode, resultIntent);
  /packages/providers/MediaProvider/src/com/android/providers/media/
RingtonePickerActivity.java 259 Intent resultIntent = new Intent();
272 resultIntent.putExtra(RingtoneManager.EXTRA_RINGTONE_PICKED_URI, uri);
273 setResult(RESULT_OK, resultIntent);
  /packages/services/Telephony/tests/src/com/android/phone/tests/
OtaspTestActivity.java 235 Intent resultIntent = new Intent(this, this.getClass());
238 resultIntent, 0);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 113 void onSaveFinished(int resultCode, Intent resultIntent);
632 final Intent resultIntent;
637 resultIntent = new Intent();
644 resultIntent.setData(legacyUri);
647 resultIntent.setData(groupUri);
653 resultIntent = null;
658 mListener.onSaveFinished(resultCode, resultIntent);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java     [all...]
  /packages/apps/Camera2/src/com/android/camera/
VideoModule.java 888 Intent resultIntent = new Intent();
892 resultIntent.setData(mCurrentVideoUri);
896 mActivity.setResultEx(resultCode, resultIntent);
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/notifiers/
notifications.jd 309 Intent resultIntent = new Intent(this, ResultActivity.class);
319 stackBuilder.addNextIntent(resultIntent);
665 Intent resultIntent = new Intent(this, ResultActivity.class);
670 stackBuilder.addNextIntent(resultIntent);
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
VideoCamera.java     [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoModule.java     [all...]

Completed in 9725 milliseconds