/external/droiddriver/src/io/appium/droiddriver/instrumentation/ |
H A D | InstrumentationInputInjector.java | 17 package io.appium.droiddriver.instrumentation; 28 private final Instrumentation instrumentation; field in class:InstrumentationInputInjector 30 public InstrumentationInputInjector(Instrumentation instrumentation) { argument 31 this.instrumentation = instrumentation; 37 instrumentation.sendPointerSync((MotionEvent) event); 39 instrumentation.sendKeySync((KeyEvent) event);
|
H A D | InstrumentationDriver.java | 17 package io.appium.droiddriver.instrumentation; 36 * Implementation of DroidDriver that is driven via instrumentation. 43 public InstrumentationDriver(Instrumentation instrumentation) { argument 44 context = new DroidDriverContext<View, ViewElement>(instrumentation, this); 45 injector = new InstrumentationInputInjector(instrumentation);
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
H A D | Experiment.java | 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; 63 return this.instrumentation.equals(that.instrumentation) 71 return Objects.hashCode(instrumentation, vm, userParameters); 76 .add("instrument", instrumentation 39 Experiment( Instrumentation instrumentation, Map<String, String> userParameters, VirtualMachine vm) argument [all...] |
H A D | TrialModule.java | 76 .className(experiment.instrumentation().benchmarkMethod().getDeclaringClass().getName()) 77 .methodName(experiment.instrumentation().benchmarkMethod().getName()) 92 return experiment.instrumentation().getMeasurementCollectingVisitor(); 98 return experiment.instrumentation().instrument().schedulingPolicy(); 133 .instrumentSpec(experiment.instrumentation().instrument().getSpec())
|
/external/caliper/lib/ |
H A D | java-allocation-instrumenter-2.0.jar | ... google/monitoring/ com/google/monitoring/runtime/ com/google/monitoring/runtime/instrumentation/ com/google/monitoring/runtime/instrumentation/AllocationInstrumenter$AIClassAdapter.class ... |
/external/llvm/tools/bugpoint/ |
H A D | Makefile | 12 LINK_COMPONENTS := asmparser instrumentation scalaropts ipo linker bitreader \
|
/external/llvm/tools/llvm-stress/ |
H A D | Makefile | 13 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts ipo
|
/external/droiddriver/src/io/appium/droiddriver/base/ |
H A D | DroidDriverContext.java | 30 private final Instrumentation instrumentation; field in class:DroidDriverContext 34 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) { argument 35 this.instrumentation = instrumentation; 41 return instrumentation;
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
H A D | DroidDrivers.java | 25 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(); 77 .newInstance(instrumentation); 86 return new UiAutomationDriver(instrumentation); 88 return new InstrumentationDriver(instrumentation);
|
/external/droiddriver/src/io/appium/droiddriver/uiautomation/ |
H A D | UiAutomationContext.java | 32 public UiAutomationContext(Instrumentation instrumentation, UiAutomationDriver driver) { argument 33 super(instrumentation, driver); 34 this.uiAutomation = instrumentation.getUiAutomation();
|
H A D | AccessibilityDriver.java | 38 public AccessibilityDriver(Instrumentation instrumentation) { argument 39 super(instrumentation);
|
/external/deqp/android/package/src/com/drawelements/deqp/testercore/ |
H A D | TestLogParser.java | 21 * \brief Test log parser for instrumentation 52 public void init (DeqpInstrumentation instrumentation, String logFileName, boolean logData) throws FileNotFoundException argument 54 assert instrumentation != null; 60 m_instrumentation = instrumentation; 113 private static native void nativeParse (long nativePointer, DeqpInstrumentation instrumentation, byte[] buffer, int size); argument
|
/external/llvm/tools/opt/ |
H A D | Makefile | 12 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts objcarcopts ipo vectorize all-targets codegen passes
|
/external/droiddriver/src/io/appium/droiddriver/util/ |
H A D | InstrumentationUtils.java | 39 private static Instrumentation instrumentation; field in class:InstrumentationUtils 54 public static void init(Instrumentation instrumentation, Bundle arguments) { argument 55 if (InstrumentationUtils.instrumentation != null) { 58 InstrumentationUtils.instrumentation = instrumentation; 66 if (instrumentation == null) { 74 return instrumentation; 115 instrumentation.waitForIdle(emptyTask);
|
H A D | ActivityUtils.java | 22 import io.appium.droiddriver.instrumentation.InstrumentationDriver;
|
/external/droiddriver/src/io/appium/droiddriver/actions/view/ |
H A D | ViewAction.java | 23 import io.appium.droiddriver.instrumentation.ViewElement;
|
/external/llvm/tools/lli/ |
H A D | Makefile | 17 LINK_COMPONENTS := mcjit orcjit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
|
/external/v8/build/android/pylib/base/ |
H A D | test_instance_factory.py | 6 from pylib.instrumentation import instrumentation_test_instance 16 elif args.command == 'instrumentation':
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
H A D | RuntimeInstrumentTest.java | 80 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); 81 assertEquals(benchmarkMethod, instrumentation.benchmarkMethod()); 82 assertEquals(instrument, instrumentation.instrument()); 83 assertEquals(MacrobenchmarkWorker.class, instrumentation.workerClass()); 88 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); 89 assertEquals(benchmarkMethod, instrumentation.benchmarkMethod()); 90 assertEquals(instrument, instrumentation.instrument()); 91 assertEquals(RuntimeWorker.Micro.class, instrumentation.workerClass()); 96 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); 97 assertEquals(benchmarkMethod, instrumentation [all...] |
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/agent/ |
H A D | AgentPremain.java | 33 import org.slf4j.instrumentation.LogTransformer; 49 * @param instrumentation 50 * instrumentation environment provided by the JVM 52 public static void premain(String agentArgument, Instrumentation instrumentation) { argument 81 instrumentation.addTransformer(builder.build()); 91 * string given by instrumentation framework
|
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
H A D | AggregateAllocationsRecorder.java | 20 import com.google.monitoring.runtime.instrumentation.Sampler; 46 com.google.monitoring.runtime.instrumentation.AllocationRecorder.addSampler(sampler);
|
H A D | AllAllocationsRecorder.java | 23 import com.google.monitoring.runtime.instrumentation.Sampler; 76 com.google.monitoring.runtime.instrumentation.AllocationRecorder.addSampler(sampler);
|
/external/clang/examples/clang-interpreter/ |
H A D | Makefile | 19 ipo linker selectiondag asmparser instrumentation objcarcopts option
|
/external/clang/tools/clang-check/ |
H A D | Makefile | 19 instrumentation bitwriter support mc option
|
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/instrumentation/ |
H A D | ToStringHelperTest.java | 25 package org.slf4j.instrumentation;
|