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

12 3 4 5 6 7 8 9

  /external/droiddriver/src/io/appium/droiddriver/duo/
DuoDriver.java 21 import android.app.Instrumentation;
25 import io.appium.droiddriver.instrumentation.InstrumentationDriver;
32 * If the activity is part of the application under instrumentation, the InstrumentationDriver is
42 Instrumentation instrumentation = InstrumentationUtils.getInstrumentation(); local
44 uiAutomationDriver = new UiAutomationDriver(instrumentation);
45 instrumentationDriver = new InstrumentationDriver(instrumentation);
  /external/droiddriver/src/io/appium/droiddriver/helpers/
DroidDrivers.java 20 import android.app.Instrumentation;
26 import io.appium.droiddriver.instrumentation.InstrumentationDriver;
68 * fully-qualified-class-name and create a new instance of it with {@code instrumentation} as the
72 Instrumentation instrumentation = InstrumentationUtils.getInstrumentation(); local
76 return (DroidDriver) Class.forName(driverClass).getConstructor(Instrumentation.class)
77 .newInstance(instrumentation);
88 return new InstrumentationDriver(instrumentation);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
LogWriter.java 16 package com.android.settingslib.core.instrumentation;
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/drawer/
SettingsDrawerActivityTest.java 23 import android.app.Instrumentation;
51 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
52 final Intent intent = new Intent(instrumentation.getTargetContext(), TestActivity.class)
54 instrumentation.startActivitySync(intent);
  /packages/apps/EmergencyInfo/tests/unit/src/com/android/emergency/preferences/
NameAutoCompletePreferenceTest.java 28 import android.app.Instrumentation;
61 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
64 instrumentation.getTargetContext(), EditMedicalInfoActivity.class);
66 (EditMedicalInfoActivity) instrumentation.startActivitySync(editActivityIntent);
  /packages/apps/Settings/src/com/android/settings/core/instrumentation/
InstrumentedDialogFragment.java 16 package com.android.settings.core.instrumentation;
22 import com.android.settingslib.core.instrumentation.Instrumentable;
23 import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
24 import com.android.settingslib.core.instrumentation.VisibilityLoggerMixin;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/core/instrumentation/
InstrumentableFragmentCodeInspector.java 17 package com.android.settings.core.instrumentation;
23 import com.android.settingslib.core.instrumentation.Instrumentable;
InstrumentedDialogFragmentTest.java 16 package com.android.settings.core.instrumentation;
23 import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
MetricsFeatureProviderTest.java 16 package com.android.settings.core.instrumentation;
24 import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
  /packages/apps/Settings/tests/unit/src/com/android/settings/backup/
BackupIntentTest.java 19 import android.app.Instrumentation;
50 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
51 mContext = instrumentation.getTargetContext();
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/instrumentation/
LocalEventLogger.java 17 package com.android.settings.intelligence.instrumentation;
MetricsFeatureProvider.java 17 package com.android.settings.intelligence.instrumentation;
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/util/
SendToInstrumentation.java 18 import android.app.Instrumentation;
24 * Utility to send information to the instrumentation. This ensure that the format used to send
36 * Send a file to be logged in the instrumentation results with an expected format that the
39 * @param instru the current {@link Instrumentation}.
43 public static void sendFile(Instrumentation instru, String key, File file) {
51 * Send a bundle of information to the instrumentation results.
53 * @param instru the current {@link Instrumentation}.
56 public static void sendBundle(Instrumentation instru, Bundle bundle) {
61 * Convenience method for {@link Instrumentation#sendStatus(int, Bundle)}.
63 private static void sendStatus(int code, Instrumentation instrumentation, Bundle bundle)
    [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);
  /external/caliper/lib/
java-allocation-instrumenter-2.0.jar 
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
NavigationBarInfo.java 24 import android.app.Instrumentation;
149 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
168 instrumentation.waitForIdleSync();
  /cts/tests/tests/view/src/android/view/cts/
View_InitialFocusTest.java 25 import android.app.Instrumentation;
54 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
55 instrumentation.setInTouchMode(true);
59 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
63 instrumentation.waitForIdleSync();
66 instrumentation.sendKeyDownUpSync(KeyEvent.KEYCODE_TAB); // leaves touch-mode
  /frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
CoordinatorLayoutSortTest.java 21 import android.app.Instrumentation;
116 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
127 instrumentation.waitForIdleSync();
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
FragmentTestUtil.java 21 import android.app.Instrumentation;
90 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
92 instrumentation.runOnMainSync(new Runnable() {
103 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
105 instrumentation.runOnMainSync(new Runnable() {
117 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
119 instrumentation.runOnMainSync(new Runnable()
131 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
214 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
    [all...]
  /frameworks/support/gridlayout/src/androidTest/java/androidx/gridlayout/widget/
GridLayoutTest.java 23 import android.app.Instrumentation;
113 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
123 instrumentation.waitForIdleSync();
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
NightModeTestCase.java 29 import android.app.Instrumentation;
156 final Instrumentation instrumentation =
159 instrumentation.callActivityOnPause(toTest);
160 instrumentation.callActivityOnStop(toTest);
166 instrumentation.callActivityOnStart(toTest);
167 instrumentation.callActivityOnResume(toTest);
195 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
206 instrumentation.waitForIdleSync()
    [all...]
  /packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tests/
BluetoothAnomalyTest.java 19 import android.app.Instrumentation;
51 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
52 final Context context = instrumentation.getContext();
53 mDevice = UiDevice.getInstance(instrumentation);
56 TestUtils.setUp(instrumentation);
80 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
81 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
101 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation() local
    [all...]
WakelockAnomalyTest.java 19 import android.app.Instrumentation;
51 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
52 final Context context = instrumentation.getContext();
53 mDevice = UiDevice.getInstance(instrumentation);
56 TestUtils.setUp(instrumentation);
81 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
82 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
102 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation() local
125 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
    [all...]
  /packages/apps/Settings/tests/unit/src/com/android/settings/fuelgauge/batterytip/
RestrictAppTest.java 26 import android.app.Instrumentation;
69 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
70 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
84 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
85 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
99 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
100 instrumentation.startActivitySync(new Intent(BATTERY_INTENT))
    [all...]
  /prebuilts/sdk/current/multidex/instrumentation/
android-support-multidex-instrumentation.jar 

Completed in 481 milliseconds

12 3 4 5 6 7 8 9