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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
KeyUtils.java 7 import android.app.Instrumentation;
17 public static void pressEnter(Instrumentation instrumentation) {
18 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN,
20 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP,
22 instrumentation.waitForIdleSync();
28 public static void pressTab(Instrumentation instrumentation) {
29 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN,
31 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP
    [all...]
TestTouchUtils.java 8 import android.app.Instrumentation;
37 private static void sendAction(Instrumentation instrumentation, int action, long downTime,
41 instrumentation.sendPointerSync(event);
42 instrumentation.waitForIdleSync();
48 * @param instrumentation Instrumentation object used by the test.
52 public static void singleClick(Instrumentation instrumentation, float x, float y) {
54 sendAction(instrumentation, MotionEvent.ACTION_DOWN, downTime, x, y)
    [all...]
HistoryUtils.java 7 import android.app.Instrumentation;
29 * @param instrumentation an Instrumentation instance.
34 public static boolean canGoBackOnUiThread(Instrumentation instrumentation,
37 instrumentation, new Callable<Boolean>() {
48 * @param instrumentation an Instrumentation instance.
55 public static boolean canGoToOffsetOnUiThread(Instrumentation instrumentation,
    [all...]
UiUtils.java 8 import android.app.Instrumentation;
52 * @param instrumentation Instrumentation object used by the test.
54 public static void settleDownUI(Instrumentation instrumentation) throws InterruptedException {
55 instrumentation.waitForIdleSync();
  /external/llvm/unittests/Transforms/DebugIR/
CMakeLists.txt 2 Instrumentation
  /external/llvm/lib/Transforms/
CMakeLists.txt 2 add_subdirectory(Instrumentation)
  /external/llvm/tools/llvm-cov/
CMakeLists.txt 1 set(LLVM_LINK_COMPONENTS instrumentation )
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
test_instrumentation.template 0 <instrumentation android:targetPackage="TEST_TARGET_PCKG" android:name="android.test.InstrumentationTestRunner" />
  /external/llvm/tools/llvm-stress/
CMakeLists.txt 1 set(LLVM_LINK_COMPONENTS bitreader asmparser bitwriter instrumentation scalaropts ipo)
  /external/valgrind/main/VEX/
HACKING.README 3 binary instrumentation and translation. See LICENSE.README for
  /external/droiddriver/src/com/google/android/droiddriver/
DroidDriverBuilder.java 19 import android.app.Instrumentation;
23 import com.google.android.droiddriver.instrumentation.InstrumentationDriver;
32 ANY, INSTRUMENTATION, UI_AUTOMATION
35 private final Instrumentation instrumentation; field in class:DroidDriverBuilder
38 public DroidDriverBuilder(Instrumentation instrumentation) {
39 this.instrumentation = Preconditions.checkNotNull(instrumentation);
47 case INSTRUMENTATION
    [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;
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...]
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
InstrumentationUtils.java 7 import android.app.Instrumentation;
14 * Utility methods built around the android.app.Instrumentation class.
21 public static <R> R runOnMainSyncAndGetResult(Instrumentation instrumentation,
24 instrumentation.runOnMainSync(task);
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
AndroidTestSuite.java 24 import android.app.Instrumentation;
33 * A {@link TestSuite} used to pass {@link Context} and {@link Instrumentation} references to child
39 private final Instrumentation mInstr;
42 AndroidTestSuite(Class<?> clazz, Bundle bundle, Instrumentation instrumentation) {
45 mInstr = instrumentation;
48 AndroidTestSuite(String name, Bundle bundle, Instrumentation instrumentation) {
51 mInstr = instrumentation;
68 Instrumentation getInstrumentation()
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
InstrumentationRunListener.java 18 import android.app.Instrumentation;
26 * A {@link RunListener} that has access to a {@link Instrumentation}. This is useful for
27 * test result listeners that want to dump data back to the instrumentation results.
31 private final Instrumentation mInstr;
33 public InstrumentationRunListener(Instrumentation instr) {
37 public Instrumentation getInstrumentation() {
49 * Optional callback subclasses can implement. Will be called when instrumentation run
52 * @param streamResult the {@link PrintStream} to instrumentation out.
53 * @param resultBundle the instrumentation result bundle. Can be used to inject key-value pairs
54 * into the instrumentation output when run in -r/raw mod
    [all...]
  /frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
InstrumentationAutomationSupport.java 18 import android.app.Instrumentation;
22 * A wrapper around {@link Instrumentation} to provide sendStatus function
25 * {@link Instrumentation#sendStatus(int, Bundle)} instead.
30 private Instrumentation mInstrumentation;
32 InstrumentationAutomationSupport(Instrumentation instrumentation) {
33 mInstrumentation = instrumentation;
  /external/llvm/lib/Transforms/Instrumentation/
CMakeLists.txt 8 Instrumentation.cpp
  /external/llvm/tools/opt/
CMakeLists.txt 1 set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} bitreader asmparser bitwriter irreader instrumentation scalaropts objcarcopts ipo vectorize)
  /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...]
  /frameworks/base/media/tests/MediaFrameworkTest/
AndroidManifest.xml 39 <instrumentation android:name=".CameraStressTestRunner"
42 </instrumentation>
44 <instrumentation android:name=".MediaFrameworkTestRunner"
47 </instrumentation>
49 <instrumentation android:name=".MediaFrameworkPerfTestRunner"
52 </instrumentation>
54 <instrumentation android:name=".MediaFrameworkUnitTestRunner"
57 </instrumentation>
59 <instrumentation android:name=".MediaRecorderStressTestRunner"
62 </instrumentation>
    [all...]
  /frameworks/base/core/java/android/test/
InstrumentationTestSuite.java 19 import android.app.Instrumentation;
26 * A {@link junit.framework.TestSuite} that injects {@link android.app.Instrumentation} into
31 private final Instrumentation mInstrumentation;
34 * @param instr The instrumentation that will be injected into each
37 public InstrumentationTestSuite(Instrumentation instr) {
42 public InstrumentationTestSuite(String name, Instrumentation instr) {
49 * @param instr The instrumentation to inject into each test before
52 public InstrumentationTestSuite(final Class theClass, Instrumentation instr) {
  /packages/apps/Music/tests/
AndroidManifest.xml 24 <instrumentation android:name="com.android.music.tests.MusicPlayerLaunchPerformance"
27 </instrumentation>
29 <instrumentation android:name="com.android.music.tests.MusicPlayerFunctionalTestRunner"
32 </instrumentation>
34 <instrumentation android:name="com.android.music.tests.MusicPlayerStressTestRunner"
37 </instrumentation>
  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 18 #include "instrumentation.h"
33 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
34 const void* result = instrumentation->GetQuickCodeFor(method);
36 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? NULL : this_object,
57 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
58 uint64_t return_or_deoptimize_pc = instrumentation->PopInstrumentationStackFrame(self, return_pc
    [all...]

Completed in 1123 milliseconds

1 2 3 4 5 6 7 8 91011>>