HomeSort by relevance Sort by last modified time
    Searched defs:instrumentation (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/
InstrumentationTest.java 17 package android.test.suitebuilder.examples.instrumentation;
  /cts/tests/tests/app/src/android/app/cts/
ApplicationTest.java 26 import android.app.Instrumentation;
68 final Instrumentation instrumentation = getInstrumentation(); local
69 final Context targetContext = instrumentation.getTargetContext();
74 final Activity activity = instrumentation.startActivitySync(intent);
84 instrumentation.waitForIdleSync();
Instrumentation_ActivityMonitorTest.java 20 import android.app.Instrumentation;
21 import android.app.Instrumentation.ActivityMonitor;
22 import android.app.Instrumentation.ActivityResult;
32 @TestTargetClass(Instrumentation.ActivityMonitor.class)
46 method = "Instrumentation.ActivityMonitor",
51 method = "Instrumentation.ActivityMonitor",
92 Instrumentation instrumentation = getInstrumentation(); local
93 ActivityMonitor am = instrumentation.addMonitor(
95 Context context = instrumentation.getTargetContext()
    [all...]
SystemFeaturesTest.java 20 import android.app.Instrumentation;
66 Instrumentation instrumentation = getInstrumentation(); local
67 mContext = instrumentation.getContext();
  /frameworks/base/core/tests/coretests/src/android/widget/
AutoCompleteTextViewCallbacks.java 19 import android.app.Instrumentation;
39 final Instrumentation instrumentation = getInstrumentation(); local
43 instrumentation.waitForIdleSync();
45 instrumentation.waitForIdleSync();
64 final Instrumentation instrumentation = getInstrumentation(); local
68 instrumentation.waitForIdleSync();
79 instrumentation.waitForIdleSync();
97 instrumentation.waitForIdleSync();
113 final Instrumentation instrumentation = getInstrumentation(); local
    [all...]
AutoCompleteTextViewPopup.java 19 import android.app.Instrumentation;
48 final Instrumentation instrumentation = getInstrumentation(); local
52 instrumentation.waitForIdleSync();
64 instrumentation.waitForIdleSync();
80 final Instrumentation instrumentation = getInstrumentation(); local
84 instrumentation.waitForIdleSync();
107 final Instrumentation instrumentation = getInstrumentation() local
140 final Instrumentation instrumentation = getInstrumentation(); local
174 final Instrumentation instrumentation = getInstrumentation(); local
    [all...]
  /cts/tests/src/android/app/cts/
OrientationTestUtils.java 20 import android.app.Instrumentation;
36 * Same as {@link #toggleOrientation(Activity)} except {@link Instrumentation#waitForIdleSync()}
40 * @param instrumentation use for idle syncing
43 final Instrumentation instrumentation) {
48 changeOrientation(activity, instrumentation, newOrientation);
49 changeOrientation(activity, instrumentation, originalOrientation);
53 Instrumentation instrumentation, final int orientation) {
55 if (instrumentation != null)
    [all...]
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 19 import android.app.Instrumentation;
42 * @param instrumentation to run animation.
46 public static void assertRunAnimation(final Instrumentation instrumentation,
48 assertRunAnimation(instrumentation, view, animation, animation.getDuration());
54 * @param instrumentation to run animation.
59 public static void assertRunAnimation(final Instrumentation instrumentation,
62 instrumentation.runOnMainSync(new Runnable() {
87 * @param instrumentation
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchShortcut.java 35 * Creates a default Android JUnit launch configuration. Sets the instrumentation runner to the
36 * first instrumentation found in the AndroidManifest.
42 // just get first valid instrumentation runner
43 String instrumentation = new InstrumentationRunnerValidator(element.getJavaProject()). local
45 if (instrumentation != null) {
47 instrumentation);
AndroidJUnitLaunchConfigurationTab.java 350 // look for the name of the instrumentation in the combo.
699 String instrumentation = getSelectedInstrumentation(); local
700 if (instrumentation == null) {
704 String result = mInstrValidator.validateInstrumentationRunner(instrumentation);
    [all...]
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 20 import android.app.Instrumentation;
34 * A test case that has access to {@link Instrumentation}.
38 private Instrumentation mInstrumentation;
41 * 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) {
47 mInstrumentation = instrumentation;
51 * Injects instrumentation into this test case. This method i
235 final Instrumentation instrumentation = getInstrumentation(); local
285 final Instrumentation instrumentation = getInstrumentation(); local
314 final Instrumentation instrumentation = getInstrumentation(); local
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
URLSpanTest.java 28 import android.app.Instrumentation;
29 import android.app.Instrumentation.ActivityMonitor;
98 Instrumentation instrumentation = getInstrumentation(); local
99 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 119 * <instrumentation>} tags included under <manifest>,
123 public InstrumentationInfo[] instrumentation; field in class:PackageInfo
229 dest.writeTypedArray(instrumentation, parcelableFlags);
266 instrumentation = source.createTypedArray(InstrumentationInfo.CREATOR);
PackageParser.java 302 int N = p.instrumentation.size();
304 pi.instrumentation = new InstrumentationInfo[N];
306 pi.instrumentation[i] = generateInstrumentationInfo(
307 p.instrumentation.get(i), flags);
2734 public final ArrayList<Instrumentation> instrumentation = new ArrayList<Instrumentation>(0); field in class:PackageParser.Package
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListTester.java 19 import android.app.Instrumentation;
38 Instrumentation mInstrumentation;
45 Instrumentation instrumentation = activityInstrumentation.getInstrumentation(); local
46 mListUtil = new ListUtil(mExpandableListView, instrumentation);
  /development/apps/Development/src/com/android/development/
PackageSummary.java 170 LinearLayout instrumentation = (LinearLayout)findViewById(R.id.instrumentation); local
231 if (info.instrumentation != null) {
232 final int N = info.instrumentation.length;
234 InstrumentationInfo ii = info.instrumentation[i];
238 instrumentation.addView(view, lp);
241 instrumentation.setVisibility(View.GONE);
  /cts/tests/tests/widget/src/android/widget/cts/
TabHost_TabSpecTest.java 26 import android.app.Instrumentation;
27 import android.app.Instrumentation.ActivityMonitor;
210 Instrumentation instrumentation = getInstrumentation(); local
211 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
RemoteViewsTest.java 28 import android.app.Instrumentation;
30 import android.app.Instrumentation.ActivityMonitor;
663 Instrumentation instrumentation = getInstrumentation(); local
664 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
TextViewTest.java 31 import android.app.Instrumentation;
32 import android.app.Instrumentation.ActivityMonitor;
109 private Instrumentation mInstrumentation;
1151 Instrumentation instrumentation = getInstrumentation(); local
    [all...]
  /build/core/
definitions.mk     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 2193 milliseconds

1 2