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/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.java38 AndroidTestSuite(Class<?> clazz, Instrumentation instrumentation) { argument
40 mInstr = instrumentation;
43 AndroidTestSuite(String name, Instrumentation instrumentation) { argument
45 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
253 dest.writeTypedArray(instrumentation, parcelableFlags);
291 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
H A DPackageParser.java398 int N = p.instrumentation.size();
400 pi.instrumentation = new InstrumentationInfo[N];
402 pi.instrumentation[i] = generateInstrumentationInfo(
403 p.instrumentation.get(i), flags);
1235 } else if (tagName.equals("instrumentation")) {
1306 if (!foundApp && pkg.instrumentation.size() == 0) {
1307 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
1639 mParseInstrumentationArgs.tag = "<instrumentation>";
1670 outError[0] = "<instrumentation> does not specify targetPackage";
1675 if (!parseAllMetaData(res, parser, attrs, "<instrumentation>",
3179 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.java206 Test test, Instrumentation instrumentation) {
208 ((InstrumentationTestCase) test).injectInstrumentation(instrumentation);
219 public void setInstrumentation(Instrumentation instrumentation) { argument
220 mInstrumentation = instrumentation;
228 public void setInstrumentaiton(Instrumentation instrumentation) { argument
229 setInstrumentation(instrumentation);
205 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
483 Instrumentation instrumentation) {
512 if (instrumentation != null) {
514 instrumentation.callApplicationOnCreate(app);
516 if (!instrumentation.onException(app, e)) {
585 Instrumentation instrumentation, boolean registered) {
597 instrumentation, registered);
782 Handler activityThread, Instrumentation instrumentation,
482 makeApplication(boolean forceDefaultAppClass, Instrumentation instrumentation) argument
583 getReceiverDispatcher(BroadcastReceiver r, Context context, Handler handler, Instrumentation instrumentation, boolean registered) argument
781 ReceiverDispatcher(BroadcastReceiver receiver, Context context, Handler activityThread, Instrumentation instrumentation, boolean registered) argument
[all...]

Completed in 3095 milliseconds