Searched refs:mInstrumentation (Results 1 – 9 of 9) sorted by relevance
/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/base/test-runner/src/android/test/ |
D | AndroidTestRunner.java | 44 private Instrumentation mInstrumentation; field in AndroidTestRunner 185 Context testContext = mInstrumentation == null ? mContext : mInstrumentation.getContext(); in runTest() 188 setInstrumentationIfInstrumentationTestCase(testCase, mInstrumentation); in runTest() 220 mInstrumentation = instrumentation; in setInstrumentation()
|
/frameworks/base/core/java/android/app/ |
D | ActivityThread.java | 178 Instrumentation mInstrumentation; field in ActivityThread 1751 return mInstrumentation; in getInstrumentation() 1974 activity = mInstrumentation.newActivity( in performLaunchActivity() 1982 if (!mInstrumentation.onException(activity, e)) { in performLaunchActivity() 1990 Application app = r.packageInfo.makeApplication(false, mInstrumentation); in performLaunchActivity() 2023 mInstrumentation.callActivityOnCreate(activity, r.state); in performLaunchActivity() 2037 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state); in performLaunchActivity() 2042 mInstrumentation.callActivityOnPostCreate(activity, r.state); in performLaunchActivity() 2058 if (!mInstrumentation.onException(activity, e)) { in performLaunchActivity() 2103 mInstrumentation.callActivityOnPause(r.activity); in handleLaunchActivity() [all …]
|
D | LoadedApk.java | 496 app = mActivityThread.mInstrumentation.newApplication( in makeApplication() 500 if (!mActivityThread.mInstrumentation.onException(app, e)) { in makeApplication() 705 final Instrumentation mInstrumentation; field in LoadedApk.ReceiverDispatcher 762 if (mInstrumentation == null || in run() 763 !mInstrumentation.onException(mReceiver, e)) { in run() 789 mInstrumentation = instrumentation; in ReceiverDispatcher()
|
D | Activity.java | 669 private Instrumentation mInstrumentation; field in Activity 3352 mInstrumentation.execStartActivity( in startActivityForResult() 3566 mInstrumentation.execStartActivities(this, mMainThread.getApplicationThread(), in startActivities() 3800 mInstrumentation.execStartActivity( in startActivityFromChild() 3851 mInstrumentation.execStartActivity( in startActivityFromFragment() 4981 mInstrumentation = instr; in attach() 5018 mInstrumentation.callActivityOnStart(this); in performStart() 5063 mInstrumentation.callActivityOnRestart(this); in performRestart() 5082 mInstrumentation.callActivityOnResume(this); in performResume() 5146 mInstrumentation.callActivityOnStop(this); in performStop()
|
/frameworks/base/docs/html/tools/testing/ |
D | activity_testing.jd | 269 mInstrumentation = getInstrumentation(); 292 mInstrumentation.waitForIdleSync();
|
/frameworks/base/services/java/com/android/server/pm/ |
D | PackageManagerService.java | 350 final HashMap<ComponentName, PackageParser.Instrumentation> mInstrumentation = field in PackageManagerService 2973 final PackageParser.Instrumentation i = mInstrumentation.get(name); in getInstrumentationInfo() 2985 final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator(); in queryInstrumentation() 4240 mInstrumentation.put(a.getComponentName(), a); in scanPackageLI() 4415 mInstrumentation.remove(a.getComponentName()); in removePackageLI()
|