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

1 2 3

  /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...]
  /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...]
  /external/llvm/tools/llvm-cov/
Makefile 12 LINK_COMPONENTS := instrumentation
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/
InstrumentationTest.java 17 package android.test.suitebuilder.examples.instrumentation;
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 19 import android.app.Instrumentation;
43 * @param instrumentation to run animation.
47 public static void assertRunAnimation(final Instrumentation instrumentation,
49 assertRunAnimation(instrumentation, view, animation, animation.getDuration());
55 * @param instrumentation to run animation.
60 public static void assertRunAnimation(final Instrumentation instrumentation,
63 instrumentation.runOnMainSync(new Runnable() {
85 instrumentation.waitForIdleSync()
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ApplicationTest.java 22 import android.app.Instrumentation;
33 final Instrumentation instrumentation = getInstrumentation(); local
34 final Context targetContext = instrumentation.getTargetContext();
39 final Activity activity = instrumentation.startActivitySync(intent);
49 instrumentation.waitForIdleSync();
Instrumentation_ActivityMonitorTest.java 20 import android.app.Instrumentation;
21 import android.app.Instrumentation.ActivityMonitor;
22 import android.app.Instrumentation.ActivityResult;
40 Instrumentation instrumentation = getInstrumentation(); local
41 ActivityMonitor am = instrumentation.addMonitor(
43 Context context = instrumentation.getTargetContext();
59 instrumentation.waitForIdleSync();
69 instrumentation.removeMonitor(am);
  /external/llvm/tools/bugpoint/
Makefile 12 LINK_COMPONENTS := asmparser instrumentation scalaropts ipo linker bitreader \
  /external/llvm/tools/llvm-stress/
Makefile 13 LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo
  /external/llvm/tools/opt/
Makefile 12 LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts ipo vectorize
  /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);
InstrumentationRunnerValidator.java 24 import com.android.sdklib.xml.ManifestData.Instrumentation;
32 * Provides validation for Android instrumentation test runner
74 Instrumentation[] instrumentations = manifestData.getInstrumentations();
99 * Return the set of instrumentation names for the Android project.
102 * of instrumentation class names
109 * Helper method to get the first instrumentation that can be used as a test runner.
111 * @return fully qualified instrumentation class name. <code>null</code> if no valid
112 * instrumentation can be found.
115 for (String instrumentation : getInstrumentationNames()) {
116 if (validateInstrumentationRunner(instrumentation) == INSTRUMENTATION_OK)
    [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
251 final Instrumentation instrumentation = getInstrumentation(); local
301 final Instrumentation instrumentation = getInstrumentation(); local
330 final Instrumentation instrumentation = getInstrumentation(); local
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaTest.java 18 import android.app.Instrumentation;
63 final Instrumentation instrumentation = getInstrumentation(); local
67 instrumentation.callActivityOnPause(activity);
68 instrumentation.waitForIdleSync();
70 instrumentation.callActivityOnResume(activity);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 25 AndroidJUnitLaunchAction_LaunchInstr_2s=Launching instrumentation %1$s on device %2$s
26 AndroidJUnitDelegate_NoRunnerConfigMsg_s=Warning: No instrumentation runner found for the launch, using %1$s
27 AndroidJUnitDelegate_NoRunnerConsoleMsg_4s=%1$s does not specify a %2$s instrumentation or does not declare uses-library %3$s in its %4$s
29 AndroidJUnitDelegate_NoTargetMsg_3s=%1$s is not configured correctly for running tests:\nA targetPackage attribute for instrumentation %2$s in its %3$s could not be found\!
30 AndroidJUnitTab_LoaderLabel=Instrumentation runner:
32 AndroidJUnitTab_NoRunnerError=Instrumentation runner not specified
36 InstrValidator_WrongRunnerTypeMsg_s=The instrumentation runner must be of type %1$s
  /external/clang/examples/clang-interpreter/
Makefile 19 linker selectiondag asmparser instrumentation
  /cts/tests/src/android/widget/cts/util/
ListUtil.java 19 import android.app.Instrumentation;
24 * Various useful stuff for instrumentation testing listview.
29 private final Instrumentation mInstrumentation;
33 * @param instrumentation The instrumentation to use.
35 public ListUtil(ListView listView, Instrumentation instrumentation) {
37 mInstrumentation = instrumentation;
  /frameworks/base/core/tests/coretests/src/android/util/
ListUtil.java 19 import android.app.Instrumentation;
25 * Various useful stuff for instrumentation testing listview.
31 private final Instrumentation mInstrumentation;
35 * @param instrumentation The instrumentation to use.
37 public ListUtil(ListView listView, Instrumentation instrumentation) {
39 mInstrumentation = instrumentation;
  /cts/tests/tests/text/src/android/text/style/cts/
URLSpanTest.java 23 import android.app.Instrumentation;
24 import android.app.Instrumentation.ActivityMonitor;
67 Instrumentation instrumentation = getInstrumentation(); local
68 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
  /development/samples/ApiDemos/tests/
Android.mk 13 # running the tests using an instrumentation targeting ApiDemos, we
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 11 # running the tests using an instrumentation targeting SmokeTestApp, we
  /frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java 19 import android.app.Instrumentation;
44 private Instrumentation mInstrumentation;
206 Test test, Instrumentation instrumentation) {
208 ((InstrumentationTestCase) test).injectInstrumentation(instrumentation);
219 public void setInstrumentation(Instrumentation instrumentation) {
220 mInstrumentation = instrumentation;
225 * use {@link #setInstrumentation(android.app.Instrumentation)} instead.
228 public void setInstrumentaiton(Instrumentation instrumentation)
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 38 + " [-j JAR_PATH] [-i INSTRUMENTATION] [-m MANIFEST_FILE] [-e EXPECTATION_FILE]"
49 String instrumentation = null; local
65 instrumentation = getArg(args, ++i, "Missing value for instrumentation");
86 runner = getElementAttribute(documentElement, "instrumentation",
88 targetNameSpace = getElementAttribute(documentElement, "instrumentation",
102 name, runner, instrumentation, targetNameSpace, jarPath, testType, outputPath);
  /frameworks/base/core/java/android/content/pm/
PackageInfo.java 119 * &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);

Completed in 611 milliseconds

1 2 3