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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/public/web/
WebContentDetectionResult.h 42 WebContentDetectionResult(const WebRange& range, const WebString& string, const WebURL& intent)
46 , m_intent(intent)
53 const WebURL& intent() const { return m_intent; } function in class:WebKit::WebContentDetectionResult
  /frameworks/base/core/java/android/preference/
PreferenceInflater.java 29 import android.content.Intent;
43 private static final String INTENT_TAG_NAME = "intent";
74 Intent intent = null; local
77 intent = Intent.parseIntent(getContext().getResources(), parser, attrs);
85 if (intent != null) {
86 parentPreference.setIntent(intent);
  /frameworks/base/core/java/com/android/internal/app/
ChooserActivity.java 19 import android.content.Intent;
27 Intent intent = getIntent(); local
28 Parcelable targetParcelable = intent.getParcelableExtra(Intent.EXTRA_INTENT);
29 if (!(targetParcelable instanceof Intent)) {
30 Log.w("ChooseActivity", "Target is not an intent: " + targetParcelable);
34 Intent target = (Intent)targetParcelable;
35 CharSequence title = intent.getCharSequenceExtra(Intent.EXTRA_TITLE)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
AppBindRecord.java 28 final IntentBindRecord intent; // The intent we are bound to. field in class:AppBindRecord
54 intent = _intent;
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
TestAlertActivity.java 5 import android.content.Intent;
17 Intent intent = getIntent(); local
18 mId = intent.getIntExtra("id", -1);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBtErrorActivity.java 38 import android.content.Intent;
58 Intent intent = getIntent(); local
59 String mErrorTitle = intent.getStringExtra("title");
60 mErrorContent = intent.getStringExtra("content");
  /packages/apps/Camera/src/com/android/camera/
ProxyLauncher.java 20 import android.content.Intent;
31 Intent intent = getIntent().getParcelableExtra(Intent.EXTRA_INTENT); local
32 startActivityForResult(intent, 0);
37 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  /packages/apps/Camera2/src/com/android/camera/
ProxyLauncher.java 20 import android.content.Intent;
31 Intent intent = getIntent().getParcelableExtra(Intent.EXTRA_INTENT); local
32 startActivityForResult(intent, 0);
37 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferenceActivity.java 21 import android.content.Intent;
69 Intent intent = new Intent(this, PeopleActivity.class); local
70 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
71 startActivity(intent);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPicker.java 19 import android.content.Intent;
31 Intent intent = getIntent(); local
32 Bundle extras = intent.getExtras();
DialogPicker.java 19 import android.content.Intent;
32 Intent intent = getIntent(); local
33 Bundle extras = intent.getExtras();
  /packages/apps/Nfc/src/com/android/nfc/
NfcRootActivity.java 22 import android.content.Intent;
33 Intent intent = getIntent(); local
34 if (intent != null && intent.hasExtra(EXTRA_LAUNCH_INTENT)) {
35 final Intent launchIntent = intent.getParcelableExtra(EXTRA_LAUNCH_INTENT);
TechListChooserActivity.java 21 import android.content.Intent;
34 Intent intent = getIntent(); local
35 Parcelable targetParcelable = intent.getParcelableExtra(Intent.EXTRA_INTENT);
36 if (!(targetParcelable instanceof Intent)) {
37 Log.w("TechListChooserActivity", "Target is not an intent: " + targetParcelable);
41 Intent target = (Intent)targetParcelable;
42 ArrayList<ResolveInfo> rList = intent.getParcelableArrayListExtra(EXTRA_RESOLVE_INFOS)
    [all...]
  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
CrashingSuggestionLauncher.java 20 import android.content.Intent;
30 Intent intent = getIntent(); local
31 Log.i(TAG, "Launched a crashing suggestion: " + intent);
HangingSuggestionLauncher.java 19 import android.content.Intent;
29 Intent intent = getIntent(); local
30 Log.i(TAG, "Launched a hanging suggestion: " + intent);
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionLauncher.java 20 import android.content.Intent;
30 Intent intent = getIntent(); local
31 Log.i(TAG, "Launched a slow suggestion: " + intent);
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionLauncher.java 20 import android.content.Intent;
30 Intent intent = getIntent(); local
31 Log.i(TAG, "Launched a spammy suggestion: " + intent);
  /packages/apps/Settings/src/com/android/settings/
WallpaperTypeSettings.java 21 import android.content.Intent;
41 Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER); local
43 List<ResolveInfo> rList = pm.queryIntentActivities(intent,
51 Intent prefIntent = new Intent(intent);
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkReceiver.java 21 import android.content.Intent;
28 public void onReceive(Context context, Intent intent) {
29 String action = intent.getAction();
30 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
32 intent = new Intent(intent);
33 intent.setClass(context, ImsFrameworkService.class);
34 if (context.startService(intent) == null)
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
FrontDoor.java 20 import android.content.Intent;
29 Intent intent = getIntent(); local
31 String componentName = intent.getComponent().getClassName();
34 startActivity(new Intent(this, HomeNormal.class));
37 startActivity(new Intent(this, HomeXLarge.class));
40 startActivity(new Intent(this, HomeGroupsXLarge.class));
46 startActivity(new Intent(this, HomeXLarge.class));
49 startActivity(new Intent(this, HomeNormal.class));
HomeNormal.java 22 import android.content.Intent;
44 Intent intent = new Intent(this, DetailsNormal.class); local
45 intent.setData(contactUri);
46 startActivity(intent);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpReceiver.java 21 import android.content.Intent;
31 public void onReceive(Context context, Intent intent) {
32 final String action = intent.getAction();
33 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
34 final Intent usbState = context.registerReceiver(
40 handleUsbState(context, intent);
44 private void handleUsbState(Context context, Intent intent) {
45 Bundle extras = intent.getExtras()
    [all...]
  /packages/screensavers/WebView/src/com/android/dreams/web/
SetURL.java 26 import android.content.Intent;
34 final Intent intent = getIntent(); local
36 final String action = intent.getAction();
37 String url = intent.getStringExtra(Intent.EXTRA_TEXT);
41 } else if (Intent.ACTION_SEND.equals(action)) {
SetURLInteractive.java 26 import android.content.Intent;
34 final Intent intent = getIntent(); local
36 final String action = intent.getAction();
37 String url = intent.getStringExtra(Intent.EXTRA_TEXT);
41 } else if (Intent.ACTION_SEND.equals(action)) {
  /external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/
InvalidationControllerTest.java 11 import android.content.Intent;
58 Intent intent = mContext.getStartedIntent(0); local
59 validateIntentComponent(intent);
60 assertNull(intent.getExtras());
68 Intent intent = mContext.getStartedIntent(0); local
69 validateIntentComponent(intent);
70 assertEquals(1, intent.getExtras().size());
71 assertTrue(intent.hasExtra(IntentProtocol.EXTRA_STOP))
82 Intent intent = mContext.getStartedIntent(0); local
103 Intent intent = mContext.getStartedIntent(0); local
162 Intent intent = mContext.getStartedIntent(0); local
187 Intent intent = mContext.getStartedIntent(0); local
    [all...]

Completed in 625 milliseconds

1 2 3 4 56 7 8 91011>>