HomeSort by relevance Sort by last modified time
    Searched defs:Intent (Results 26 - 47 of 47) sorted by null

12

  /frameworks/base/core/java/android/app/
ContextImpl.java 30 import android.content.Intent;
136 public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter) {
141 public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter,
154 public Intent registerReceiverAsUser(BroadcastReceiver receiver, UserHandle user,
167 public boolean bindService(Intent service, ServiceConnection conn, int flags) {
1049 (Activity)null, intent, -1, options); local
1057 mMainThread.getApplicationThread(), getBasePackageName(), intent, local
1136 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1150 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1164 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1179 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1222 mMainThread.getApplicationThread(), intent, resolvedType, rd, local
1235 intent, resolvedType, null, Activity.RESULT_OK, null, null, null, local
1248 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1280 mMainThread.getApplicationThread(), intent, resolvedType, rd, local
1294 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1328 mMainThread.getApplicationThread(), intent, resolvedType, rd, local
1345 mMainThread.getApplicationThread(), intent, getUserId()); local
1356 mMainThread.getApplicationThread(), intent, resolvedType, null, local
1388 mMainThread.getApplicationThread(), intent, resolvedType, rd, local
1405 mMainThread.getApplicationThread(), intent, user.getIdentifier()); local
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 23 import android.content.Intent;
70 * The intent extra that contains the appWidgetId.
209 Intent fillInIntent) {
218 Intent.FLAG_ACTIVITY_NEW_TASK,
219 Intent.FLAG_ACTIVITY_NEW_TASK, 0, opts.toBundle());
221 android.util.Log.e(LOG_TAG, "Cannot send pending intent: ", e);
224 android.util.Log.e(LOG_TAG, "Cannot send pending intent due to " +
365 public SetOnClickFillInIntent(int id, Intent fillInIntent) {
372 fillInIntent = Intent.CREATOR.createFromParcel(parcel);
410 // Insure that a template pending intent has been set on an ancesto
652 Intent intent; field in class:RemoteViews.SetRemoteViewsAdapterIntent
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CameraActivity.java 28 import android.content.Intent;
112 // The intent extra for camera from secure lock screen. True if the gallery
161 private Intent mResultDataForTesting;
182 private Intent mStandardShareIntent;
184 private Intent mPanoramaShareIntent;
192 private Intent mVideoShareIntent;
193 private Intent mImageShareIntent;
264 public void onReceive(Context context, Intent intent) {
273 public void onReceive(Context context, Intent intent)
870 Intent intent = new Intent(this, MediaSaveService.class); local
942 Intent intent = new Intent(ACTION_TRIM_VIDEO); local
961 Intent intent = new Intent(CropActivity.CROP_ACTION); local
969 Intent intent = new Intent(Intent.ACTION_ATTACH_DATA) local
1030 Intent intent = getIntent(); local
1460 Intent intent = new Intent(Intent.ACTION_EDIT) local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPage.java 24 import android.content.Intent;
360 Intent panoramaIntent = null;
364 Intent shareIntent = createShareIntent(mCurrentPhoto);
640 private static Intent createShareIntent(MediaObject mediaObject) {
642 return new Intent(Intent.ACTION_SEND)
644 .putExtra(Intent.EXTRA_STREAM, mediaObject.getContentUri())
645 .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
648 private static Intent createSharePanoramaIntent(Uri contentUri) {
649 return new Intent(Intent.ACTION_SEND
663 Intent intent = new Intent(FilterShowActivity.TINY_PLANET_ACTION); local
685 Intent intent = new Intent(ACTION_NEXTGEN_EDIT); local
707 Intent intent = new Intent(ACTION_SIMPLE_EDIT); local
1047 Intent intent = new Intent(CropActivity.CROP_ACTION); local
1057 Intent intent = new Intent(mActivity, TrimVideo.class); local
1164 Intent intent = new Intent(mActivity, GalleryActivity.class); local
1225 Intent intent = new Intent(Intent.ACTION_VIEW) local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 26 import android.content.Intent;
241 bindService(new Intent(FilterShowActivity.this, ProcessingService.class),
494 Intent intent = getIntent(); local
495 if (intent.getBooleanExtra(LAUNCH_FULLSCREEN, false)) {
499 mAction = intent.getAction();
500 mSelectedImageUri = intent.getData();
976 Intent intent = new Intent(Intent.ACTION_SEND); local
1376 Intent intent = new Intent(); local
    [all...]
  /frameworks/base/core/java/android/content/
Intent.java 55 * An intent is an abstract description of an operation to be performed. It
56 * can be used with {@link Context#startActivity(Intent) startActivity} to
58 * {@link android.content.Context#sendBroadcast(Intent) broadcastIntent} to
64 * <p>An Intent provides a facility for performing late runtime binding between the code in
72 * <a href="{@docRoot}guide/topics/intents/intents-filters.html">Intents and Intent Filters</a>
77 * <h3>Intent Structure</h3>
78 * <p>The primary pieces of information in an intent are:</p>
115 * new intent { <b>{@link #ACTION_VIEW} <i>content://contacts/N</i></b> }
121 * attributes that you can also include with an intent:</p>
130 * intent data. Normally the type is inferred from the data itself
857 Intent intent = new Intent(ACTION_CHOOSER); local
3868 Intent intent = new Intent(ACTION_MAIN); local
3898 Intent intent = new Intent(ACTION_MAIN); local
3921 Intent intent = makeMainActivity(mainActivity); local
3963 Intent intent = new Intent(ACTION_VIEW); local
4095 Intent intent; local
7085 Intent intent = new Intent(); local
    [all...]
  /frameworks/base/services/java/com/android/server/accounts/
AccountManagerService.java 41 import android.content.Intent;
158 private static final Intent ACCOUNTS_CHANGED_INTENT;
214 ACCOUNTS_CHANGED_INTENT = new Intent(AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION);
215 ACCOUNTS_CHANGED_INTENT.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
246 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
250 public void onReceive(Context context1, Intent intent) {
256 userFilter.addAction(Intent.ACTION_USER_REMOVED);
257 userFilter.addAction(Intent.ACTION_USER_STARTED);
260 public void onReceive(Context context, Intent intent)
1380 Intent intent = newGrantCredentialsPermissionIntent(account, callerUid, local
1404 Intent intent = result.getParcelable(AccountManager.KEY_INTENT); local
1451 Intent intent = new Intent(mContext, GrantCredentialsPermissionActivity.class); local
2189 Intent intent = null; local
2310 Intent intent = new Intent(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Controller.java 30 import android.content.Intent;
150 // "no-crash-recovery" parameter in intent to suppress crash recovery
260 public void start(final Intent intent) {
262 mCrashRecoveryHandler.startRecovery(intent);
265 void doStart(final Bundle icicle, final Intent intent) {
293 onPreloginFinished(icicle, intent, currentTabId,
299 private void onPreloginFinished(Bundle icicle, Intent intent, long currentTabId
1702 Intent intent = new Intent(mActivity, BrowserPreferencesPage.class); local
1831 Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 42 import android.content.Intent;
157 // The Intent extra that defines whether to ignore the launch animation
159 "com.android.launcher.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
274 private Intent mAppMarketIntent = null;
333 Intent intent; field in class:Launcher.PendingAddArguments
427 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
599 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
603 processShortcut(args.intent);
606 completeAddShortcut(args.intent, args.container, args.screen, args.cellX
1664 Intent intent = new Intent(SearchManager.INTENT_ACTION_GLOBAL_SEARCH); local
1782 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_CONFIGURE); local
1869 Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_BIND); local
2022 final Intent intent = ((ShortcutInfo) tag).intent; local
2078 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH); local
2085 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH); local
2116 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, local
2131 Intent intent = new Intent( local
3207 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH); local
3215 Intent intent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH); local
3257 Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_APP_MARKET); local
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 272 milliseconds

12