HomeSort by relevance Sort by last modified time
    Searched refs:testIntent (Results 1 - 10 of 10) sorted by null

  /cts/tests/app/app/src/android/app/stubs/
ActivityManagerMemoryClassLaunchActivity.java 50 Intent testIntent = new Intent(this, ActivityManagerMemoryClassTestActivity.class);
51 testIntent.putExtra(MEMORY_CLASS_EXTRA, memoryClass);
52 startActivityForResult(testIntent, TEST_ACTIVITY_REQUEST_CODE);
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 72 Intent testIntent = new Intent();
73 testIntent.setComponent(component);
74 testIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
83 testIntent.putExtra("cmdLine", cmdLine);
86 boolean isActivity = m_context.getPackageManager().resolveActivity(testIntent, 0) != null;
87 boolean isService = m_context.getPackageManager().resolveService(testIntent, 0) != null;
98 m_context.startService(testIntent);
100 m_context.startActivity(testIntent);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ZenModeStarredContactsPreferenceControllerTest.java 63 private Intent testIntent;
76 when(testIntent.resolveActivity(any())).thenReturn(mComponentName);
81 ReflectionHelpers.setField(mCallsController, "mStarredContactsIntent", testIntent);
89 ReflectionHelpers.setField(mMessagesController, "mStarredContactsIntent", testIntent);
  /frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
ImsServiceTest.java 188 private void verifyServiceDownSent(Intent testIntent) {
189 assertEquals(ImsManager.ACTION_IMS_SERVICE_DOWN, testIntent.getAction());
190 assertEquals(TEST_SLOT_0, testIntent.getIntExtra(ImsManager.EXTRA_PHONE_ID, -1));
193 private void verifyServiceUpSent(Intent testIntent) {
194 assertEquals(ImsManager.ACTION_IMS_SERVICE_UP, testIntent.getAction());
195 assertEquals(TEST_SLOT_0, testIntent.getIntExtra(ImsManager.EXTRA_PHONE_ID, -1));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
DialogTestListActivity.java 265 int testInstructionResId, Intent testIntent) {
266 super(context.getString(nameResId), testId, testIntent, null, null, null);
298 int testInstructionResId, Intent testIntent, int imageResId) {
299 super(context, nameResId, testId, testInstructionResId, testIntent);
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/utils/
ForceStopRunnableTest.java 68 public void testIntent() {
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/registry/
BenchmarkRegistry.java 158 Intent testIntent = getIntentFromInfo(activityInfo);
167 testIntent));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
ImsServiceControllerTest.java 123 Intent testIntent = intentCaptor.getValue();
124 assertEquals(ImsService.SERVICE_INTERFACE, testIntent.getAction());
125 assertEquals(mTestComponentName, testIntent.getComponent());
  /frameworks/base/core/java/android/widget/
SearchView.java     [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
SearchView.java     [all...]

Completed in 651 milliseconds