Searched defs:instrumentation (Results 1 - 9 of 9) 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/testing/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/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DAndroidTestSuite.java42 AndroidTestSuite(Class<?> clazz, Bundle bundle, Instrumentation instrumentation) { argument
45 mInstr = instrumentation;
48 AndroidTestSuite(String name, Bundle bundle, Instrumentation instrumentation) { argument
51 mInstr = 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.java119 * &lt;instrumentation&gt;} tags included under &lt;manifest&gt;,
123 public InstrumentationInfo[] instrumentation; field in class:PackageInfo
262 dest.writeTypedArray(instrumentation, parcelableFlags);
303 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
H A DPackageParser.java402 int N = p.instrumentation.size();
404 pi.instrumentation = new InstrumentationInfo[N];
406 pi.instrumentation[i] = generateInstrumentationInfo(
407 p.instrumentation.get(i), flags);
1243 } else if (tagName.equals("instrumentation")) {
1314 if (!foundApp && pkg.instrumentation.size() == 0) {
1315 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
1694 mParseInstrumentationArgs.tag = "<instrumentation>";
1725 outError[0] = "<instrumentation> does not specify targetPackage";
1730 if (!parseAllMetaData(res, parser, attrs, "<instrumentation>",
3275 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.java271 * instrumentation into the system: If the app
272 * being started matches one of the instrumentation names,
273 * then we combine both the "instrumentation" and
488 Instrumentation instrumentation) {
517 if (instrumentation != null) {
519 instrumentation.callApplicationOnCreate(app);
521 if (!instrumentation.onException(app, e)) {
590 Instrumentation instrumentation, boolean registered) {
602 instrumentation, registered);
787 Handler activityThread, Instrumentation instrumentation,
487 makeApplication(boolean forceDefaultAppClass, Instrumentation instrumentation) argument
588 getReceiverDispatcher(BroadcastReceiver r, Context context, Handler handler, Instrumentation instrumentation, boolean registered) argument
786 ReceiverDispatcher(BroadcastReceiver receiver, Context context, Handler activityThread, Instrumentation instrumentation, boolean registered) argument
[all...]

Completed in 447 milliseconds