HomeSort by relevance Sort by last modified time
    Searched refs:Instrumentation (Results 26 - 50 of 339) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Transforms/
Makefile 11 PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Hello
  /cts/tests/app/src/android/app/cts/
PipNotSupportedActivityTest.java 19 import android.app.Instrumentation;
27 private Instrumentation mInstrumentation;
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);
BaseProcessInstrumentation.java 21 import android.app.Instrumentation;
28 public class BaseProcessInstrumentation extends Instrumentation {
46 //Log.i("xxx", "Instrumentation starting in " + proc);
55 //Log.i("xxx", "Instrumentation sending broadcast: " + intent);
58 //Log.i("xxx", "Instrumentation finishing in " + proc);
64 //Log.i("xxx", "Instrumentation adding result in " + proc);
DisplayTest.java 19 import android.app.Instrumentation;
31 private Instrumentation mInstrumentation;
LauncherActivityTest.java 19 import android.app.Instrumentation;
32 private Instrumentation mInstrumentation;
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
AccessibilityDriver.java 19 import android.app.Instrumentation;
38 public AccessibilityDriver(Instrumentation instrumentation) {
39 super(instrumentation);
UiAutomationContext.java 20 import android.app.Instrumentation;
32 public UiAutomationContext(Instrumentation instrumentation, UiAutomationDriver driver) {
33 super(instrumentation, driver);
34 this.uiAutomation = instrumentation.getUiAutomation();
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
TestUtils.java 19 import android.app.Instrumentation;
36 * <p>A simple wrapper for {@link Instrumentation#runOnMainSync(Runnable)}.</p>
55 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
56 instrumentation.runOnMainSync(() -> result.set(supplier.get()));
74 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
79 instrumentation.runOnMainSync(() -> {
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTestUtils.java 19 import android.app.Instrumentation;
47 * @param instrumentation to run animation.
53 public static void assertRunAnimation(final Instrumentation instrumentation,
56 assertRunAnimation(instrumentation, activityTestRule, view, animation,
63 * @param instrumentation to run animation.
70 public static void assertRunAnimation(final Instrumentation instrumentation,
82 instrumentation.waitForIdleSync();
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/
AuthenticatorActivityTest.java 19 import android.app.Instrumentation;
35 private Instrumentation mInstrumentation;
68 Instrumentation.ActivityMonitor monitor =
  /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);
  /external/objenesis/tck-android/src/main/java/org/objenesis/tck/android/
TckInstrumentation.java 19 import android.app.Instrumentation;
29 * Wraps the Objenesis TCK so that it can be invoked on Android as an {@link Instrumentation}.
33 public class TckInstrumentation extends Instrumentation {
50 bundle.putString(Instrumentation.REPORT_KEY_STREAMRESULT, fromStdout);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
ModifiedSystemClassRuntimeTest.java 21 import java.lang.instrument.Instrumentation;
44 Instrumentation inst = newInstrumentationMock();
54 * Note that we use Proxy here to mock {@link Instrumentation}, because JDK
58 private Instrumentation newInstrumentationMock() {
59 return (Instrumentation) Proxy.newProxyInstance(getClass()
60 .getClassLoader(), new Class[] { Instrumentation.class },
70 * {@link Instrumentation#addTransformer(ClassFileTransformer)}
92 * {@link Instrumentation#removeTransformer(ClassFileTransformer)}
  /art/runtime/
instrumentation.cc 17 #include "instrumentation.h"
53 namespace instrumentation { namespace in namespace:art
81 // Instrumentation works on non-inlined frames by updating returned PCs
88 explicit InstallStubsClassVisitor(Instrumentation* instrumentation)
89 : instrumentation_(instrumentation) {}
97 Instrumentation* const instrumentation_;
106 std::deque<instrumentation::InstrumentationStackFrame>* stack = self_->GetInstrumentationStack();
114 std::deque<instrumentation::InstrumentationStackFrame>* stack = self_->GetInstrumentationStack();
125 // The instrumentation events expect the exception to be set
400 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); local
513 Instrumentation* instrumentation = reinterpret_cast<Instrumentation*>(arg); local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
FullCartesianExperimentSelector.java 19 import com.google.caliper.runner.Instrument.Instrumentation;
41 private ImmutableSet<Instrumentation> instrumentations;
46 ImmutableSet<Instrumentation> instrumentations,
57 .transform(new Function<Instrumentation, Instrument>() {
58 @Override public Instrument apply(Instrumentation input) {
75 for (Instrumentation instrumentation : instrumentations) {
80 experiments.add(new Experiment(instrumentation, theseUserParams, vm));
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ExperimentingRunnerModuleTest.java 28 import com.google.caliper.runner.Instrument.Instrumentation;
64 new ImmutableSet.Builder<Instrumentation>()
82 new ImmutableSet.Builder<Instrumentation>()
90 new ImmutableSet.Builder<Instrumentation>()
127 public Instrumentation createInstrumentation(Method benchmarkMethod)
129 return new Instrumentation(benchmarkMethod) {
  /cts/tests/tests/text/src/android/text/method/cts/
KeyListenerTestCase.java 22 import android.app.Instrumentation;
50 protected Instrumentation mInstrumentation;
69 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
70 final Context context = instrumentation.getContext();
71 instrumentation.runOnMainSync(() -> {
81 instrumentation.waitForIdleSync();
86 final Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
87 final Context context = instrumentation.getContext()
    [all...]
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
BaseDeviceOwnerTest.java 18 import android.app.Instrumentation;
38 protected Instrumentation mInstrumentation;
  /cts/hostsidetests/testharness/app/src/android/testharness/app/
TestHarnessModeDeviceTest.java 24 import android.app.Instrumentation;
43 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
47 UiDevice device = UiDevice.getInstance(instrumentation);
  /cts/hostsidetests/theme/app/src/android/theme/app/
ReferenceImagesTest.java 21 import android.app.Instrumentation;
39 private Instrumentation mInstrumentation;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityButtonTest.java 20 import android.app.Instrumentation;
58 Instrumentation instrumentation = InstrumentationRegistry.getInstrumentation(); local
59 mService = StubAccessibilityButtonService.enableSelf(instrumentation);
  /cts/tests/tests/os/src/android/os/image/cts/
DynamicSystemClientTest.java 22 import android.app.Instrumentation;
41 private Instrumentation mInstrumentation;
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
IsolatedServiceTest.java 20 import android.app.Instrumentation;
32 private Instrumentation mInstrumentation;
  /cts/tests/tests/view/src/android/view/cts/
InputDeviceEnabledTest.java 22 import android.app.Instrumentation;
41 private Instrumentation mInstrumentation;

Completed in 1335 milliseconds

12 3 4 5 6 7 8 91011>>