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
311 dest.writeTypedArray(instrumentation, parcelableFlags);
360 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
H A DPackageParser.java547 int N = p.instrumentation.size();
549 pi.instrumentation = new InstrumentationInfo[N];
551 pi.instrumentation[i] = generateInstrumentationInfo(
552 p.instrumentation.get(i), flags);
1716 } else if (tagName.equals("instrumentation")) {
1790 if (!foundApp && pkg.instrumentation.size() == 0) {
1791 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
2345 mParseInstrumentationArgs.tag = "<instrumentation>";
2376 outError[0] = "<instrumentation> does not specify targetPackage";
2381 if (!parseAllMetaData(res, parser, attrs, "<instrumentation>",
4226 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.java292 * instrumentation into the system: If the app
293 * being started matches one of the instrumentation names,
294 * then we combine both the "instrumentation" and
540 Instrumentation instrumentation) {
571 if (instrumentation != null) {
573 instrumentation.callApplicationOnCreate(app);
575 if (!instrumentation.onException(app, e)) {
693 Instrumentation instrumentation, boolean registered) {
705 instrumentation, registered);
890 Handler activityThread, Instrumentation instrumentation,
539 makeApplication(boolean forceDefaultAppClass, Instrumentation instrumentation) argument
691 getReceiverDispatcher(BroadcastReceiver r, Context context, Handler handler, Instrumentation instrumentation, boolean registered) argument
889 ReceiverDispatcher(BroadcastReceiver receiver, Context context, Handler activityThread, Instrumentation instrumentation, boolean registered) argument
[all...]

Completed in 895 milliseconds