Searched refs:instrumentation (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewCallbacks.java39 final Instrumentation instrumentation = getInstrumentation();
43 instrumentation.waitForIdleSync();
45 instrumentation.waitForIdleSync();
64 final Instrumentation instrumentation = getInstrumentation();
68 instrumentation.waitForIdleSync();
79 instrumentation.waitForIdleSync();
97 instrumentation.waitForIdleSync();
113 final Instrumentation instrumentation = getInstrumentation();
117 instrumentation.waitForIdleSync();
119 instrumentation
[all...]
H A DAutoCompleteTextViewPopup.java48 final Instrumentation instrumentation = getInstrumentation();
52 instrumentation.waitForIdleSync();
64 instrumentation.waitForIdleSync();
80 final Instrumentation instrumentation = getInstrumentation();
84 instrumentation.waitForIdleSync();
107 final Instrumentation instrumentation = getInstrumentation();
111 instrumentation.waitForIdleSync();
127 instrumentation.waitForIdleSync();
140 final Instrumentation instrumentation = getInstrumentation();
144 instrumentation
[all...]
/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/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/testing/uiautomator/instrumentation/
H A DAndroid.mk25 LOCAL_MODULE := uiautomator-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/tests/SmokeTest/tests/
H A DAndroid.mk11 # running the tests using an instrumentation targeting SmokeTestApp, we
/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/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/tests/AppLaunch/src/com/android/tests/applaunch/
H A DAppLaunch.java48 * The instrumentation expects the following key to be passed on the command line:
76 InstrumentationTestRunner instrumentation =
78 Bundle args = instrumentation.getArguments();
127 instrumentation.sendStatus(0, mResult);
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
H A DMemoryUsageTest.java45 * The instrumentation expects the following key to be passed on the command line:
68 MemoryUsageInstrumentation instrumentation =
70 Bundle args = instrumentation.getBundle();
88 instrumentation.sendStatus(0, results);
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DInstrumentationTestSuiteBuilderTest.java21 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
H A DUnitTestSuiteBuilderTest.java19 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
/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...]
/frameworks/base/packages/WAPPushManager/tests/
H A DAndroid.mk30 # running the tests using an instrumentation targeting Eamil, we
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java3444 assertNotNull("instrumentation should not be null", packageInfo.instrumentation);
3481 assertNotNull("instrumentation should not be null", packageInfo.instrumentation);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java390 // Mapping from instrumentation class names to info about them.
4809 N = pkg.instrumentation.size();
4812 PackageParser.Instrumentation a = pkg.instrumentation.get(i);
5048 N = pkg.instrumentation.size();
5051 PackageParser.Instrumentation a = pkg.instrumentation.get(i);

Completed in 881 milliseconds