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

1 2 3 4 5 6 7

  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationInputInjector.java 17 package io.appium.droiddriver.instrumentation;
19 import android.app.Instrumentation;
28 private final Instrumentation instrumentation; field in class:InstrumentationInputInjector
30 public InstrumentationInputInjector(Instrumentation instrumentation) {
31 this.instrumentation = instrumentation;
37 instrumentation.sendPointerSync((MotionEvent) event);
39 instrumentation.sendKeySync((KeyEvent) event)
    [all...]
  /packages/apps/Settings/tests/app/src/com/android/settings/tests/
PrivateVolumeSettingsTest.java 18 import android.app.Instrumentation;
38 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
39 instrumentation.startActivitySync(
DashboardAdapterTest.java 18 import android.app.Instrumentation;
42 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
43 instrumentation.startActivitySync(new Intent(Settings
DrawOverlayDetailsTest.java 19 import android.app.Instrumentation;
45 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
46 instrumentation.startActivitySync(new Intent(android.provider.Settings
49 final Context targetContext = instrumentation.getTargetContext();
KeepOnScreenTest.java 19 import android.app.Instrumentation;
46 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
47 instrumentation.startActivitySync(new Intent(android.provider.Settings
50 final Context targetContext = instrumentation.getTargetContext();
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/instrumentation/
ToStringHelperTest.java 25 package org.slf4j.instrumentation;
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/
InstrumentationTest.java 17 package android.test.suitebuilder.examples.instrumentation;
  /cts/tests/app/src/android/app/cts/
ApplicationTest.java 21 import android.app.Instrumentation;
36 final Instrumentation instrumentation = getInstrumentation(); local
37 final Context targetContext = instrumentation.getTargetContext();
42 final Activity activity = instrumentation.startActivitySync(intent);
59 instrumentation.waitForIdleSync();
  /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...]
  /packages/apps/Settings/tests/app/src/com/android/settings/fuelgauge/
PowerUsageSummaryUiTest.java 23 import android.app.Instrumentation;
42 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
43 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaTest.java 18 import android.app.Instrumentation;
69 final Instrumentation instrumentation = getInstrumentation(); local
73 instrumentation.runOnMainSync(() -> {
74 instrumentation.callActivityOnPause(activity);
76 instrumentation.waitForIdleSync();
78 instrumentation.runOnMainSync(() -> {
79 instrumentation.callActivityOnResume(activity);
  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 21 #include "instrumentation.h"
33 // Instrumentation changes the stack. Thus, when exiting, the stack cannot be verified, so skip
36 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
38 if (instrumentation->IsDeoptimized(method)) {
41 result = instrumentation->GetQuickCodeFor(method, kRuntimePointerSize);
45 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? nullptr : this_object,
55 // Instrumentation exit stub must not be entered with a pending exception.
56 CHECK(!self->IsExceptionPending()) << "Enter instrumentation exit stub with pending exception
68 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/core/instrumentation/
Instrumentable.java 17 package com.android.settings.core.instrumentation;
InstrumentedDialogFragment.java 16 package com.android.settings.core.instrumentation;
LogWriter.java 16 package com.android.settings.core.instrumentation;
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/drawer/
SettingsDrawerActivityTest.java 25 import android.app.Instrumentation;
53 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
54 instrumentation.startActivitySync(new Intent(instrumentation.getTargetContext(),
63 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
64 Intent intent = new Intent(instrumentation.getTargetContext(), TestActivity.class)
66 instrumentation.startActivitySync(intent);
74 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation() local
    [all...]
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
DrawingTestHelper.java 21 import android.app.Instrumentation;
42 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
45 final Activity activity = instrumentation.newActivity(
56 instrumentation.callActivityOnCreate(activity, null);
  /art/runtime/
common_dex_operations.h 75 // Report this field access to instrumentation if needed.
76 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local
77 if (UNLIKELY(instrumentation->HasFieldReadListeners())) {
85 instrumentation->FieldReadEvent(self,
129 // Report this field access to instrumentation if needed. Since we only have the offset of
131 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation() local
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityButtonTest.java 18 import android.app.Instrumentation;
55 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
56 mService = StubAccessibilityButtonService.enableSelf(instrumentation);
  /cts/tests/app/app/src/android/app/stubs/
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);
56 * @param instrumentation use for idle syncing
58 public static void switchOrientation(final Activity activity, Instrumentation instrumentation) {
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTestUtils.java 19 import android.app.Instrumentation;
46 * @param instrumentation to run animation.
52 public static void assertRunAnimation(final Instrumentation instrumentation,
55 assertRunAnimation(instrumentation, activityTestRule, view, animation,
62 * @param instrumentation to run animation.
69 public static void assertRunAnimation(final Instrumentation instrumentation,
81 instrumentation.waitForIdleSync();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Experiment.java 21 import com.google.caliper.runner.Instrument.Instrumentation;
35 private final Instrumentation instrumentation; field in class:Experiment
40 Instrumentation instrumentation,
43 this.instrumentation = checkNotNull(instrumentation);
48 Instrumentation instrumentation() { method in class:Experiment
49 return instrumentation;
    [all...]
  /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);

Completed in 954 milliseconds

1 2 3 4 5 6 7