HomeSort by relevance Sort by last modified time
    Searched defs:launchIntent (Results 1 - 24 of 24) sorted by null

  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/locale/
LocaleReceiver.java 38 Intent launchIntent;
40 launchIntent = IntentBuilders.buildStartInBackgroundIntent(script);
42 launchIntent = IntentBuilders.buildStartInTerminalIntent(script);
44 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
45 context.startActivity(launchIntent);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
AutofillActivity.java 42 final Intent launchIntent = new Intent();
43 launchIntent.setComponent(new ComponentName(AUTOFILL_PACKAGE_NAME, AUTOFILL_ACTIVITY_NAME));
44 startActivityForResult(launchIntent, 42);
ContentSuggestionsActivity.java 44 final Intent launchIntent = new Intent();
45 launchIntent.setComponent(new ComponentName(
47 startActivityForResult(launchIntent, 42);
ContentCaptureRestrictionsTest.java 60 final Intent launchIntent = new Intent();
61 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
62 launchIntent.setClassName(CONTENT_CAPTURE_PACKAGE_NAME, CONTENT_CAPTURE_ACTIVITY_NAME);
ContentSuggestionsRestrictionsTest.java 76 final Intent launchIntent = new Intent();
77 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
78 launchIntent.setClassName(
AutofillRestrictionsTest.java 77 final Intent launchIntent = new Intent();
78 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
79 launchIntent.setClassName(AUTOFILL_PACKAGE_NAME, AUTOFILL_ACTIVITY_NAME);
ContentCaptureActivity.java 53 final Intent launchIntent = new Intent();
54 launchIntent.setComponent(
56 startActivityForResult(launchIntent, 42);
PermissionsTest.java 278 Intent launchIntent = new Intent();
279 launchIntent.setComponent(new ComponentName(PERMISSION_APP_PACKAGE_NAME,
281 launchIntent.putExtra(EXTRA_PERMISSION, permission);
282 launchIntent.setAction(ACTION_REQUEST_PERMISSION);
283 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
284 mContext.startActivity(launchIntent);
294 Intent launchIntent = new Intent();
295 launchIntent.setComponent(new ComponentName(PERMISSION_APP_PACKAGE_NAME,
297 launchIntent.putExtra(EXTRA_PERMISSION, PERMISSION_NAME);
298 launchIntent.setAction(ACTION_CHECK_HAS_PERMISSION)
    [all...]
MeteredDataRestrictionTest.java 110 final Intent launchIntent = new Intent()
114 mContext.startActivity(launchIntent);
  /cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
AssistantActivity.java 46 final Intent launchIntent = new Intent();
47 launchIntent.setComponent(launchActivity)
53 startActivity(launchIntent, displayOptions.toBundle());
55 startActivity(launchIntent);
TestActivityWithSameAffinity.java 45 Intent launchIntent = new Intent();
46 launchIntent.setComponent(ComponentName.unflattenFromString(launchActivityComponent));
47 startActivity(launchIntent);
PipActivity.java 176 Intent launchIntent = new Intent();
177 launchIntent.setComponent(ComponentName.unflattenFromString(launchActivityComponent));
178 startActivity(launchIntent);
  /developers/build/prebuilts/gradle/DocumentCentricApps/Application/tests/src/com/example/android/documentcentricapps/tests/
DocumentCentricAppsUnitTest.java 43 final Intent launchIntent = new Intent(getInstrumentation()
45 mDocumentCentricActivity = startActivity(launchIntent, null, null);
  /developers/samples/android/ui/activitytasks/DocumentCentricApps/Application/tests/src/com/example/android/documentcentricapps/tests/
DocumentCentricAppsUnitTest.java 43 final Intent launchIntent = new Intent(getInstrumentation()
45 mDocumentCentricActivity = startActivity(launchIntent, null, null);
  /development/samples/training/testingfun/app/tests/src/com/example/android/testingfun/tests/lesson4/
LaunchActivityTest.java 81 final Intent launchIntent = getStartedActivityIntent();
83 assertNotNull("Intent was null", launchIntent);
88 final String payload = launchIntent.getStringExtra(NextActivity.EXTRAS_PAYLOAD_KEY);
  /external/deqp/android/package/src/com/drawelements/deqp/execserver/
ExecService.java 81 Intent launchIntent = new Intent(this, ExecServerActivity.class);
82 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
83 PendingIntent pm = PendingIntent.getActivity(this, 0, launchIntent, 0);
  /cts/tests/framework/base/windowmanager/util/src/android/server/wm/
ActivityLauncher.java 234 final Intent launchIntent = new Intent(Intent.ACTION_VIEW).setComponent(componentName);
237 .isActivityStartAllowedOnDisplay(context, displayId, launchIntent);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
AnalogComplicationConfigRecyclerViewAdapter.java 645 Intent launchIntent = new Intent(view.getContext(), mLaunchActivityToSelectColor);
648 launchIntent.putExtra(EXTRA_SHARED_PREF, mSharedPrefResourceString);
652 launchIntent,
    [all...]
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
AnalogComplicationConfigRecyclerViewAdapter.java 646 Intent launchIntent = new Intent(view.getContext(), mLaunchActivityToSelectColor);
649 launchIntent.putExtra(EXTRA_SHARED_PREF, mSharedPrefResourceString);
653 launchIntent,
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TabHostTest.java 105 final Intent launchIntent = new Intent(Intent.ACTION_MAIN);
106 launchIntent.setClassName("android.widget.cts", CtsActivity.class.getName());
107 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
108 final Activity activity = mInstrumentation.startActivitySync(launchIntent);
139 final Intent launchIntent = new Intent(Intent.ACTION_MAIN);
140 launchIntent.setClassName("android.widget.cts", ActivityGroup.class.getName());
141 launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
143 (ActivityGroup) mInstrumentation.startActivitySync(launchIntent);
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
LockTaskTest.java 283 Intent launchIntent = createReceiverActivityIntent(true /*newTask*/, true /*shouldWait*/);
284 mContext.startActivity(launchIntent);
313 Intent launchIntent = createReceiverActivityIntent(false /*newTask*/, false /*shouldWait*/);
315 lockTaskUtility.putExtra(LockTaskUtilityActivity.START_ACTIVITY, launchIntent);
335 Intent launchIntent = createReceiverActivityIntent(true /*newTask*/, false /*shouldWait*/);
336 mContext.startActivity(launchIntent);
352 Intent launchIntent = createReceiverActivityIntent(true /*newTask*/, false /*shouldWait*/);
353 mContext.startActivity(launchIntent);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 385 Intent launchIntent = keyguardManager.createConfirmDeviceCredentialIntent(null, null);
386 if (launchIntent != null) {
387 startActivity(launchIntent);
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
AbstractRestrictBackgroundNetworkTestCase.java     [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPackageManagerTest.java     [all...]

Completed in 373 milliseconds