Searched defs:instrumentation (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/
H A DInstrumentationTest.java17 package android.test.suitebuilder.examples.instrumentation;
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DInstrumentationAutomationSupport.java32 InstrumentationAutomationSupport(Instrumentation instrumentation) { argument
33 mInstrumentation = instrumentation;
/frameworks/base/core/tests/coretests/src/android/util/
H A DListUtil.java25 * Various useful stuff for instrumentation testing listview.
35 * @param instrumentation The instrumentation to use.
37 public ListUtil(ListView listView, Instrumentation instrumentation) { argument
39 mInstrumentation = instrumentation;
/frameworks/base/core/java/android/test/
H A DInstrumentationTestCase.java41 * Injects instrumentation into this test case. This method is
44 * @param instrumentation the instrumentation to use with this instance
46 public void injectInstrumentation(Instrumentation instrumentation) { argument
47 mInstrumentation = instrumentation;
51 * Injects instrumentation into this test case. This method is
54 * @param instrumentation the instrumentation to use with this instance
60 public void injectInsrumentation(Instrumentation instrumentation) { argument
61 injectInstrumentation(instrumentation);
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java140 * <instrumentation>} tags included under <manifest>,
144 public InstrumentationInfo[] instrumentation; field in class:PackageInfo
312 dest.writeTypedArray(instrumentation, parcelableFlags);
361 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
H A DPackageParser.java548 int N = p.instrumentation.size();
550 pi.instrumentation = new InstrumentationInfo[N];
552 pi.instrumentation[i] = generateInstrumentationInfo(
553 p.instrumentation.get(i), flags);
1737 } else if (tagName.equals("instrumentation")) {
1811 if (!foundApp && pkg.instrumentation.size() == 0) {
1812 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
2351 mParseInstrumentationArgs.tag = "<instrumentation>";
2382 outError[0] = "<instrumentation> does not specify targetPackage";
2387 if (!parseAllMetaData(res, parser, attrs, "<instrumentation>",
4302 public final ArrayList<Instrumentation> instrumentation = new ArrayList<Instrumentation>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/test-runner/src/android/test/
H A DAndroidTestRunner.java207 Test test, Instrumentation instrumentation) {
209 ((InstrumentationTestCase) test).injectInstrumentation(instrumentation);
220 public void setInstrumentation(Instrumentation instrumentation) { argument
221 mInstrumentation = instrumentation;
229 public void setInstrumentaiton(Instrumentation instrumentation) { argument
230 setInstrumentation(instrumentation);
206 setInstrumentationIfInstrumentationTestCase( Test test, Instrumentation instrumentation) argument
/frameworks/base/core/java/android/app/
H A DLoadedApk.java297 * instrumentation into the system: If the app
298 * being started matches one of the instrumentation names,
299 * then we combine both the "instrumentation" and
555 Instrumentation instrumentation) {
586 if (instrumentation != null) {
588 instrumentation.callApplicationOnCreate(app);
590 if (!instrumentation.onException(app, e)) {
708 Instrumentation instrumentation, boolean registered) {
720 instrumentation, registered);
905 Handler activityThread, Instrumentation instrumentation,
554 makeApplication(boolean forceDefaultAppClass, Instrumentation instrumentation) argument
706 getReceiverDispatcher(BroadcastReceiver r, Context context, Handler handler, Instrumentation instrumentation, boolean registered) argument
904 ReceiverDispatcher(BroadcastReceiver receiver, Context context, Handler activityThread, Instrumentation instrumentation, boolean registered) argument
[all...]

Completed in 672 milliseconds