HomeSort by relevance Sort by last modified time
    Searched defs:instrumentation (Results 51 - 75 of 214) sorted by null

1 23 4 5 6 7 8 9

  /cts/tests/app/src/android/app/cts/
ApplicationTest.java 21 import android.app.Instrumentation;
45 final Instrumentation instrumentation = getInstrumentation(); local
46 final Context targetContext = instrumentation.getTargetContext();
51 final Activity activity = instrumentation.startActivitySync(intent);
ListActivityTest.java 18 import android.app.Instrumentation;
109 private static void runOnMainAndDrawSync(Instrumentation instrumentation,
113 instrumentation.runOnMainSync(new Runnable() {
Instrumentation_ActivityMonitorTest.java 20 import android.app.Instrumentation;
21 import android.app.Instrumentation.ActivityMonitor;
22 import android.app.Instrumentation.ActivityResult;
48 Instrumentation instrumentation = getInstrumentation(); local
49 ActivityMonitor am = instrumentation.addMonitor(
51 Context context = instrumentation.getTargetContext();
66 instrumentation.waitForIdleSync();
76 instrumentation.removeMonitor(am);
94 final Instrumentation instrumentation = getInstrumentation() local
134 final Instrumentation instrumentation = getInstrumentation(); local
183 final Instrumentation instrumentation = getInstrumentation(); local
235 final Instrumentation instrumentation = getInstrumentation(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactory_OptionsTest.java 18 import android.app.Instrumentation;
61 Instrumentation instrumentation = getInstrumentation(); local
62 Resources resources = instrumentation.getTargetContext().getResources();
  /external/droiddriver/src/io/appium/droiddriver/base/
DroidDriverContext.java 19 import android.app.Instrumentation;
30 private final Instrumentation instrumentation; field in class:DroidDriverContext
34 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) {
35 this.instrumentation = instrumentation;
40 public Instrumentation getInstrumentation() {
41 return instrumentation;
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationDriver.java 17 package io.appium.droiddriver.instrumentation;
20 import android.app.Instrumentation;
34 /** Implementation of DroidDriver that is driven via instrumentation. */
65 public InstrumentationDriver(Instrumentation instrumentation) {
66 context = new DroidDriverContext<View, ViewElement>(instrumentation, this);
67 injector = new InstrumentationInputInjector(instrumentation);
RootFinder.java 17 package io.appium.droiddriver.instrumentation;
InstrumentationUiDevice.java 17 package io.appium.droiddriver.instrumentation;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
ToStringHelper.java 25 package org.slf4j.instrumentation;
JavassistHelper.java 25 package org.slf4j.instrumentation;
137 String s = "org.slf4j.instrumentation.ToStringHelper.render";
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
FocusHandlingTest.java 31 import android.app.Instrumentation;
237 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
240 instrumentation.getUiAutomation(),
246 instrumentation.runOnMainSync(() -> editText.requestFocus());
258 instrumentation.runOnMainSync(() -> editText.setText(""));
262 final Context context = instrumentation.getTargetContext();
273 instrumentation.runOnMainSync(() -> popupWindow.showAsDropDown(editText));
274 instrumentation.waitForIdleSync();
284 instrumentation.runOnMainSync(() -> editText.setText(""))
341 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
    [all...]
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
FragmentTransitionTest.java 26 import android.app.Instrumentation;
118 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
119 instrumentation.runOnMainSync(new Runnable() {
137 instrumentation.waitForIdleSync();
141 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
142 instrumentation.runOnMainSync(new Runnable() {
148 instrumentation.waitForIdleSync();
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityFingerprintGestureTest.java 29 import android.app.Instrumentation;
70 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
71 mFingerprintManager = instrumentation.getContext().getPackageManager()
73 ? instrumentation.getContext().getSystemService(FingerprintManager.class) : null;
74 mFingerprintGestureService = StubFingerprintGestureService.enableSelf(instrumentation);
AccessibilityFocusAndInputFocusSyncTest.java 22 import android.app.Instrumentation;
242 final Instrumentation instrumentation = getInstrumentation(); local
243 final UiAutomation uiAutomation = instrumentation.getUiAutomation();
251 instrumentation.runOnMainSync(() -> {
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
ActivityLaunchUtils.java 24 import android.app.Instrumentation;
42 public static Activity launchActivityAndWaitForItToBeOnscreen(Instrumentation instrumentation,
56 instrumentation.runOnMainSync(() -> {
60 instrumentation.waitForIdleSync();
61 activityTitle.append(getActivityTitle(instrumentation, mTempActivity));
80 Instrumentation instrumentation, Activity activity) {
82 instrumentation.runOnMainSync(() -> titleBuilder.append(activity.getTitle()));
  /external/kotlinc/lib/
kotlin-preloader.jar 
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
EventLogWriter.java 17 package com.android.settingslib.core.instrumentation;
VisibilityLoggerMixin.java 17 package com.android.settingslib.core.instrumentation;
28 import static com.android.settingslib.core.instrumentation.Instrumentable.METRICS_CATEGORY_UNKNOWN;
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
EditTextTypeActivity.java 18 import android.app.Instrumentation;
60 final Instrumentation instrumentation = new Instrumentation(); local
95 instrumentation.sendKeyDownUpSync(code);
  /frameworks/support/lifecycle/integration-tests/testapp/src/androidTest/java/androidx/lifecycle/
TestUtils.java 36 import android.app.Instrumentation;
37 import android.app.Instrumentation.ActivityMonitor;
59 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
60 instrumentation.addMonitor(monitor);
  /packages/apps/Settings/tests/unit/src/com/android/settings/display/
NightDisplaySettingsActivityTest.java 19 import android.app.Instrumentation;
44 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
45 mTargetContext = instrumentation.getTargetContext();
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewFadingEdgeTest.java 32 import android.app.Instrumentation;
179 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
189 instrumentation.waitForIdleSync();
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
InlineByteBuddyMockMaker.java 22 import java.lang.instrument.Instrumentation;
34 * This mock maker which uses a combination of the Java instrumentation API and sub-classing rather than creating
92 private static final Instrumentation INSTRUMENTATION;
97 Instrumentation instrumentation; external variable declarations
101 instrumentation = ByteBuddyAgent.install();
102 if (!instrumentation.isRetransformClassesSupported()) {
135 instrumentation.appendToBootstrapClassLoaderSearch(new JarFile(boot));
148 "It seems like your current VM does not support the instrumentation API correctly."), cnfe)
    [all...]
InlineBytecodeGenerator.java 33 import java.lang.instrument.Instrumentation;
59 private final Instrumentation instrumentation; field in class:InlineBytecodeGenerator
73 public InlineBytecodeGenerator(Instrumentation instrumentation, WeakConcurrentMap<Object, MockMethodInterceptor> mocks) {
74 this.instrumentation = instrumentation;
85 instrumentation.addTransformer(this, true);
117 instrumentation.retransformClasses(types.toArray(new Class<?>[types.size()]));
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
HeadsUpManagerPhoneTest.java 20 import android.app.Instrumentation;
145 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
148 instrumentation.runOnMainSync(() -> {

Completed in 2106 milliseconds

1 23 4 5 6 7 8 9