Searched defs:mInstrumentation (Results 1 - 10 of 10) sorted by last modified time

/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
H A DAndroidJUnit4Builder.java34 private final Instrumentation mInstrumentation; field in class:AndroidJUnit4Builder
38 mInstrumentation = instr;
48 return new AndroidJUnit4ClassRunner(testClass, mInstrumentation);
/frameworks/testing/androidtestlib/tests/src/com/android/test/
H A DInstrumentationJUnit4Test.java31 public Instrumentation mInstrumentation; field in class:InstrumentationJUnit4Test
39 Assert.assertNotNull(mInstrumentation);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java376 final HashMap<ComponentName, PackageParser.Instrumentation> mInstrumentation = field in class:PackageManagerService
3108 final PackageParser.Instrumentation i = mInstrumentation.get(name);
3120 final Iterator<PackageParser.Instrumentation> i = mInstrumentation.values().iterator();
4423 mInstrumentation.put(a.getComponentName(), a);
4657 mInstrumentation.remove(a.getComponentName());
/frameworks/base/test-runner/src/android/test/
H A DAndroidTestRunner.java44 private Instrumentation mInstrumentation; field in class:AndroidTestRunner
185 Context testContext = mInstrumentation == null ? mContext : mInstrumentation.getContext();
188 setInstrumentationIfInstrumentationTestCase(testCase, mInstrumentation);
220 mInstrumentation = instrumentation;
/frameworks/base/core/tests/coretests/src/android/util/
H A DListUtil.java31 private final Instrumentation mInstrumentation; field in class:ListUtil
39 mInstrumentation = instrumentation;
52 mInstrumentation.waitForIdleSync();
85 mInstrumentation.sendCharacterSync(KeyEvent.KEYCODE_DPAD_DOWN);
96 mInstrumentation.sendCharacterSync(KeyEvent.KEYCODE_DPAD_UP);
/frameworks/base/core/java/android/app/
H A DActivity.java671 private Instrumentation mInstrumentation; field in class:Activity
3371 mInstrumentation.execStartActivity(
3415 mInstrumentation.execStartActivity(
3610 mInstrumentation.execStartActivities(this, mMainThread.getApplicationThread(),
3844 mInstrumentation.execStartActivity(
3895 mInstrumentation.execStartActivity(
5075 mInstrumentation = instr;
5114 mInstrumentation.callActivityOnStart(this);
5163 mInstrumentation.callActivityOnRestart(this);
5182 mInstrumentation
[all...]
H A DActivityThread.java191 Instrumentation mInstrumentation; field in class:ActivityThread
1873 return mInstrumentation;
2097 activity = mInstrumentation.newActivity(
2105 if (!mInstrumentation.onException(activity, e)) {
2113 Application app = r.packageInfo.makeApplication(false, mInstrumentation);
2144 mInstrumentation.callActivityOnCreate(activity, r.state);
2158 mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state);
2163 mInstrumentation.callActivityOnPostCreate(activity, r.state);
2179 if (!mInstrumentation.onException(activity, e)) {
2250 mInstrumentation
[all...]
H A DLoadedApk.java499 app = mActivityThread.mInstrumentation.newApplication(
503 if (!mActivityThread.mInstrumentation.onException(app, e)) {
708 final Instrumentation mInstrumentation; field in class:LoadedApk.ReceiverDispatcher
765 if (mInstrumentation == null ||
766 !mInstrumentation.onException(mReceiver, e)) {
792 mInstrumentation = instrumentation;
/frameworks/base/core/java/android/test/
H A DInstrumentationTestCase.java38 private Instrumentation mInstrumentation; field in class:InstrumentationTestCase
47 mInstrumentation = instrumentation;
69 return mInstrumentation;
H A DInstrumentationTestSuite.java31 private final Instrumentation mInstrumentation; field in class:InstrumentationTestSuite
38 mInstrumentation = instr;
44 mInstrumentation = instr;
54 mInstrumentation = instr;
60 addTest(new InstrumentationTestSuite(testClass, mInstrumentation));
68 ((InstrumentationTestCase) test).injectInstrumentation(mInstrumentation);

Completed in 203 milliseconds