Home
last modified time | relevance | path

Searched refs:instrumentation (Results 1 – 25 of 115) sorted by relevance

12345

/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
DKeyUtils.java17 public static void pressEnter(Instrumentation instrumentation) { in pressEnter() argument
18 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, in pressEnter()
20 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, in pressEnter()
22 instrumentation.waitForIdleSync(); in pressEnter()
28 public static void pressTab(Instrumentation instrumentation) { in pressTab() argument
29 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, in pressTab()
31 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, in pressTab()
33 instrumentation.waitForIdleSync(); in pressTab()
39 public static void pressBackspace(Instrumentation instrumentation) { in pressBackspace() argument
40 instrumentation.sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, in pressBackspace()
[all …]
DTestTouchUtils.java37 private static void sendAction(Instrumentation instrumentation, int action, long downTime, in sendAction() argument
41 instrumentation.sendPointerSync(event); in sendAction()
42 instrumentation.waitForIdleSync(); in sendAction()
52 public static void singleClick(Instrumentation instrumentation, float x, float y) { in singleClick() argument
54 sendAction(instrumentation, MotionEvent.ACTION_DOWN, downTime, x, y); in singleClick()
55 sendAction(instrumentation, MotionEvent.ACTION_UP, downTime, x, y); in singleClick()
66 public static void singleClickView(Instrumentation instrumentation, View v, int x, int y) { in singleClickView() argument
70 singleClick(instrumentation, absoluteX, absoluteY); in singleClickView()
79 public static void singleClickView(Instrumentation instrumentation, View v) { in singleClickView() argument
82 singleClickView(instrumentation, v, x, y); in singleClickView()
[all …]
DHistoryUtils.java33 public static boolean canGoBackOnUiThread(Instrumentation instrumentation, in canGoBackOnUiThread() argument
36 instrumentation, new Callable<Boolean>() { in canGoBackOnUiThread()
54 public static boolean canGoToOffsetOnUiThread(Instrumentation instrumentation,
57 instrumentation, new Callable<Boolean>() {
73 public static boolean canGoForwardOnUiThread(Instrumentation instrumentation,
76 instrumentation, new Callable<Boolean>() {
91 public static void clearHistoryOnUiThread(Instrumentation instrumentation,
93 instrumentation.runOnMainSync(new Runnable() {
109 public static String getUrlOnUiThread(Instrumentation instrumentation,
112 instrumentation, new Callable<String>() {
[all …]
DUiUtils.java54 public static void settleDownUI(Instrumentation instrumentation) throws InterruptedException { in settleDownUI() argument
55 instrumentation.waitForIdleSync(); in settleDownUI()
/external/droiddriver/src/com/google/android/droiddriver/helpers/
DDroidDrivers.java25 import com.google.android.droiddriver.instrumentation.InstrumentationDriver;
35 private static Instrumentation instrumentation; field in DroidDrivers
68 public static void initInstrumentation(Instrumentation instrumentation, Bundle arguments) { in initInstrumentation() argument
69 if (DroidDrivers.instrumentation != null) { in initInstrumentation()
72 DroidDrivers.instrumentation = instrumentation; in initInstrumentation()
77 return instrumentation; in getInstrumentation()
104 public static DroidDriver newDriver(Instrumentation instrumentation) { in newDriver() argument
109 .newInstance(instrumentation); in newDriver()
127 return newUiAutomationDriver(instrumentation); in newDriver()
129 return newInstrumentationDriver(instrumentation); in newDriver()
[all …]
/external/droiddriver/src/com/google/android/droiddriver/instrumentation/
DInstrumentationInputInjector.java17 package com.google.android.droiddriver.instrumentation;
28 private final Instrumentation instrumentation; field in InstrumentationInputInjector
30 public InstrumentationInputInjector(Instrumentation instrumentation) { in InstrumentationInputInjector() argument
31 this.instrumentation = instrumentation; in InstrumentationInputInjector()
37 instrumentation.sendPointerSync((MotionEvent) event); in injectInputEvent()
39 instrumentation.sendKeySync((KeyEvent) event); in injectInputEvent()
DInstrumentationDriver.java17 package com.google.android.droiddriver.instrumentation;
40 public InstrumentationDriver(Instrumentation instrumentation) { in InstrumentationDriver() argument
41 context = new DroidDriverContext<View, ViewElement>(instrumentation, this); in InstrumentationDriver()
42 injector = new InstrumentationInputInjector(instrumentation); in InstrumentationDriver()
/external/droiddriver/src/com/google/android/droiddriver/base/
DDroidDriverContext.java38 private final Instrumentation instrumentation; field in DroidDriverContext
42 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) { in DroidDriverContext() argument
43 this.instrumentation = instrumentation; in DroidDriverContext()
49 return instrumentation; in getInstrumentation()
86 instrumentation.waitForIdle(futureTask); in tryWaitForIdleSync()
113 instrumentation.runOnMainSync(futureTask); in tryRunOnMainSync()
/external/llvm/test/Instrumentation/AddressSanitizer/
Dinstrumentation-with-call-threshold.ll2 ; -asan-instrumentation-with-call-threshold
5 ; RUN: opt < %s -asan -asan-module -asan-instrumentation-with-call-threshold=1 -S | FileCheck %s --…
6 ; RUN: opt < %s -asan -asan-module -asan-instrumentation-with-call-threshold=0 -S | FileCheck %s --…
7 ; RUN: opt < %s -asan -asan-module -asan-instrumentation-with-call-threshold=0 -asan-memory-access-…
8 ; RUN: opt < %s -asan -asan-module -asan-instrumentation-with-call-threshold=5 -S | FileCheck %s --…
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DTestLogParser.java54 …public void init (DeqpInstrumentation instrumentation, String logFileName, boolean logData) throws… in init() argument
56 assert instrumentation != null; in init()
62 m_instrumentation = instrumentation; in init()
115 …private static native void nativeParse (long nativePointer, DeqpInstrumentation instrumentation, … in nativeParse() argument
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/
DUiAutomationContext.java30 public UiAutomationContext(Instrumentation instrumentation, UiAutomationDriver driver) { in UiAutomationContext() argument
31 super(instrumentation, driver); in UiAutomationContext()
32 this.uiAutomation = instrumentation.getUiAutomation(); in UiAutomationContext()
DAccessibilityDriver.java38 public AccessibilityDriver(Instrumentation instrumentation) { in AccessibilityDriver() argument
39 super(instrumentation); in AccessibilityDriver()
DUiAutomationDriver.java52 public UiAutomationDriver(Instrumentation instrumentation) { in UiAutomationDriver() argument
53 context = new UiAutomationContext(instrumentation, this); in UiAutomationDriver()
/external/llvm/docs/HistoricalNotes/
D2003-06-25-Reoptimizer1.txt3 First-level instrumentation
6 We use opt to do Bytecode-to-bytecode instrumentation. Look at
8 no arguments and no return value. This instrumentation is designed to
15 instrumentation on the hot loop region (the instructions between the
20 Second-level instrumentation
23 We remove the first-level instrumentation by overwriting the CALL to
59 instrumentation, by making sure that the number of times we took an
78 with a time when we will next turn instrumentation back on for that
80 that off the prio. queue and turn instrumentation back on for that
90 optimized trace does not have instrumentation. The original code and
[all …]
/external/llvm/test/Instrumentation/MemorySanitizer/
Dinstrumentation-with-call-threshold.ll1 ; Test -msan-instrumentation-with-call-threshold
5 ; RUN: opt < %s -msan -msan-check-access-address=0 -msan-instrumentation-with-call-threshold=0 -S |…
6 ; RUN: opt < %s -msan -msan-check-access-address=0 -msan-instrumentation-with-call-threshold=0 -msa…
7 ; RUN: opt < %s -msan -msan-check-access-address=0 -msan-instrumentation-with-call-threshold=0 -msa…
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
DInstrumentationUtils.java21 public static <R> R runOnMainSyncAndGetResult(Instrumentation instrumentation, in runOnMainSyncAndGetResult() argument
24 instrumentation.runOnMainSync(task); in runOnMainSyncAndGetResult()
/external/chromium_org/build/android/pylib/instrumentation/
Dsetup.py10 from pylib.instrumentation import test_package
11 from pylib.instrumentation import test_runner
/external/chromium_org/chrome/tools/build/win/
Dwin-syzyasan-filter.txt6 # Syzygy ASAN instrumentation to chrome.dll. It is intended to be used for
7 # disabling instrumentation of functions with known and deferred bugs, allowing
/external/chromium_org/build/android/pylib/host_driven/
Dtest_case.py32 from pylib.instrumentation import test_package
33 from pylib.instrumentation import test_result
34 from pylib.instrumentation import test_runner
/external/compiler-rt/lib/asan/tests/
DCMakeLists.txt5 # no-instrumentation tests.
8 # address sanitizer instrumentation pass. These tests form "integration" tests
10 # instrumentation against the just-built runtime library.
240 -mllvm -asan-instrumentation-with-call-threshold=0)
248 # Test w/o ASan instrumentation. Link it with ASan statically.
259 # Test with ASan instrumentation. Link with ASan dynamic runtime.
/external/clang/test/Profile/
DREADME1 These are tests for instrumentation based profiling. This specifically means
6 - the generation of instrumentation (-fprofile-instr-generate), and
/external/chromium_org/build/android/pylib/uiautomator/
Dtest_runner.py9 from pylib.instrumentation import test_options as instr_test_options
10 from pylib.instrumentation import test_runner as instr_test_runner
/external/emma/core/res/com/vladium/emma/instr/
Dinstr_usage.res5 "instrumentation path";
10 "instrumentation output directory (required for non-overwrite output modes)";
/external/llvm/tools/llvm-stress/
DMakefile13 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts ipo
/external/llvm/tools/bugpoint/
DMakefile12 LINK_COMPONENTS := asmparser instrumentation scalaropts ipo linker bitreader \

12345