/frameworks/base/core/java/android/test/ |
D | InstrumentationTestSuite.java | 31 private final Instrumentation mInstrumentation; field in InstrumentationTestSuite 38 mInstrumentation = instr; in InstrumentationTestSuite() 44 mInstrumentation = instr; in InstrumentationTestSuite() 54 mInstrumentation = instr; in InstrumentationTestSuite() 60 addTest(new InstrumentationTestSuite(testClass, mInstrumentation)); in addTestSuite() 68 ((InstrumentationTestCase) test).injectInstrumentation(mInstrumentation); in runTest()
|
D | InstrumentationTestCase.java | 38 private Instrumentation mInstrumentation; field in InstrumentationTestCase 47 mInstrumentation = instrumentation; in injectInstrumentation() 69 return mInstrumentation; in getInstrumentation()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | ListUtil.java | 31 private final Instrumentation mInstrumentation; field in ListUtil 39 mInstrumentation = instrumentation; in ListUtil() 52 mInstrumentation.waitForIdleSync(); in setSelectedPosition() 85 mInstrumentation.sendCharacterSync(KeyEvent.KEYCODE_DPAD_DOWN); in arrowDownToSelectedPosition() 96 mInstrumentation.sendCharacterSync(KeyEvent.KEYCODE_DPAD_UP); in arrowUpToSelectedPosition()
|
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/ |
D | InstrumentationAutomationSupport.java | 30 private Instrumentation mInstrumentation; field in InstrumentationAutomationSupport 33 mInstrumentation = instrumentation; in InstrumentationAutomationSupport() 38 mInstrumentation.sendStatus(resultCode, status); in sendStatus()
|
/frameworks/testing/support/src/android/support/test/internal/runner/junit4/ |
D | AndroidJUnit4Builder.java | 33 private final Instrumentation mInstrumentation; field in AndroidJUnit4Builder 38 mInstrumentation = instr; in AndroidJUnit4Builder() 48 return new AndroidJUnit4ClassRunner(testClass, mInstrumentation, mBundle); in runnerForClass()
|
/frameworks/testing/support/tests/src/android/support/test/ |
D | InstrumentationJUnit4Test.java | 32 public Instrumentation mInstrumentation; field in InstrumentationJUnit4Test 40 Assert.assertNotNull(mInstrumentation); in verifyInstrumentationInjected()
|
D | InstrumentationJUnit4Fixture.java | 30 public Instrumentation mInstrumentation; field in InstrumentationJUnit4Fixture
|
D | InstrumentationJUnit4FixtureTest.java | 39 Assert.assertNotNull(mInstrumentation); in verifyInstrumentationInjected()
|
/frameworks/base/test-runner/src/android/test/ |
D | AndroidTestRunner.java | 45 private Instrumentation mInstrumentation; field in AndroidTestRunner 186 Context testContext = mInstrumentation == null ? mContext : mInstrumentation.getContext(); in runTest() 189 setInstrumentationIfInstrumentationTestCase(testCase, mInstrumentation); in runTest() 221 mInstrumentation = instrumentation; in setInstrumentation()
|
/frameworks/base/core/java/android/app/ |
D | ActivityThread.java | 193 Instrumentation mInstrumentation; field in ActivityThread 1768 return mInstrumentation; in getInstrumentation() 2199 activity = mInstrumentation.newActivity( in performLaunchActivity() 2208 if (!mInstrumentation.onException(activity, e)) { in performLaunchActivity() 2216 Application app = r.packageInfo.makeApplication(false, mInstrumentation); in performLaunchActivity() 2249 mInstrumentation.callActivityOnCreate(activity, r.state, r.persistentState); in performLaunchActivity() 2251 mInstrumentation.callActivityOnCreate(activity, r.state); in performLaunchActivity() 2267 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state, in performLaunchActivity() 2271 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state); in performLaunchActivity() 2277 mInstrumentation.callActivityOnPostCreate(activity, r.state, in performLaunchActivity() [all …]
|
D | Activity.java | 690 private Instrumentation mInstrumentation; field in Activity 3737 mInstrumentation.execStartActivity( in startActivityForResult() 3793 Instrumentation.ActivityResult ar = mInstrumentation.execStartActivity( in startActivityForResultAsUser() 3832 mInstrumentation.execStartActivity( in startActivityAsUser() 3855 mInstrumentation.execStartActivityAsCaller( in startActivityAsCaller() 4051 mInstrumentation.execStartActivities(this, mMainThread.getApplicationThread(), in startActivities() 4287 mInstrumentation.execStartActivity( in startActivityFromChild() 4341 mInstrumentation.execStartActivity( in startActivityFromFragment() 5889 mInstrumentation = instr; in attach() 5949 mInstrumentation.callActivityOnStart(this); in performStart() [all …]
|
D | LoadedApk.java | 558 app = mActivityThread.mInstrumentation.newApplication( in makeApplication() 562 if (!mActivityThread.mInstrumentation.onException(app, e)) { in makeApplication() 811 final Instrumentation mInstrumentation; field in LoadedApk.ReceiverDispatcher 868 if (mInstrumentation == null || in run() 869 !mInstrumentation.onException(mReceiver, e)) { in run() 895 mInstrumentation = instrumentation; in ReceiverDispatcher()
|
/frameworks/base/docs/html/tools/testing/ |
D | activity_testing.jd | 269 mInstrumentation = getInstrumentation(); 292 mInstrumentation.waitForIdleSync();
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 429 final HashMap<ComponentName, PackageParser.Instrumentation> mInstrumentation = field in PackageManagerService 4027 final PackageParser.Instrumentation i = mInstrumentation.get(name); in getInstrumentationInfo() 4040 final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator(); in queryInstrumentation() 6283 mInstrumentation.put(a.getComponentName(), a); in scanPackageDirtyLI() 6835 mInstrumentation.remove(a.getComponentName()); in cleanPackageDataStructuresLILPw()
|