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

12 3

  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
AClassWithFunnyConstructors.java 3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
AnExampleClass.java 3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
Foo.java 3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
AClassThatRefersToAForgettableClassInMethodCallsReturningPrimitive.java 3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
Pony.java 5 import org.robolectric.annotation.internal.Instrument;
7 @Instrument
  /external/v8/src/arm64/
instrument-arm64.cc 5 #include "src/arm64/instrument-arm64.h"
97 Instrument::Instrument(const char* datafile, uint64_t sample_period)
125 Instrument::~Instrument() {
141 void Instrument::Update() {
154 void Instrument::DumpCounters() {
166 void Instrument::DumpCounterNames() {
178 void Instrument::HandleInstrumentationEvent(unsigned event) {
187 void Instrument::DumpEventMarker(unsigned marker)
    [all...]
instrument-arm64.h 53 class Instrument: public DecoderVisitor {
55 explicit Instrument(
58 ~Instrument();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentSelector.java 23 ImmutableSet<Instrument> instruments();
TrialResultFactory.java 19 import com.google.caliper.runner.Instrument.MeasurementCollectingVisitor;
ExperimentingRunnerModule.java 25 import com.google.caliper.runner.Instrument.Instrumentation;
153 * {@link Instrument instruments} passed to {@link #provideInstruments},
157 Class<? extends Instrument> value();
162 static Instrument provideArbitraryMeasurementInstrument() {
168 static Instrument provideAllocationInstrument() {
174 static Instrument provideRuntimeInstrument(
180 static ImmutableSet<Instrument> provideInstruments(
183 Map<Class<? extends Instrument>, Provider<Instrument>> availableInstruments,
188 ImmutableSet.Builder<Instrument> builder = ImmutableSet.builder()
208 Instrument instrument = instrumentProvider.get(); local
    [all...]
BenchmarkClassChecker.java 53 * The set of {@link Instrument instruments} that are used to determine whether a class has any
56 private final ImmutableSet<Instrument> instruments;
77 for (Instrument instrument : instruments) {
78 if (instrument.isBenchmarkMethod(method)) {
97 * Provides the set of supported {@link Instrument instruments}.
100 ImmutableSet<Instrument> instruments();
FullCartesianExperimentSelector.java 19 import com.google.caliper.runner.Instrument.Instrumentation;
55 @Override public ImmutableSet<Instrument> instruments() {
57 .transform(new Function<Instrumentation, Instrument>() {
58 @Override public Instrument apply(Instrumentation input) {
59 return input.instrument();
Instrument.java 43 public abstract class Instrument {
70 * Indicates that trials using this instrument can be run in parallel with other trials.
75 * The application of an instrument to a particular benchmark method.
77 // TODO(gak): consider passing in Instrument explicitly for DI
85 Instrument instrument() { method in class:Instrument.Instrumentation
86 return Instrument.this;
99 return Instrument.this.equals(that.instrument())
107 return Objects.hashCode(Instrument.this, benchmarkMethod)
    [all...]
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
StaticInitializerTest.java 11 import org.robolectric.annotation.internal.Instrument;
23 @Instrument
38 @Instrument public static class ClassWithStaticInitializerB {
56 @Instrument public static class ClassWithStaticInitializerC {
RealApisTest.java 8 import org.robolectric.annotation.internal.Instrument;
32 @Instrument
ClassicSuperHandlingTest.java 9 import org.robolectric.annotation.internal.Instrument;
63 @Instrument
70 @Instrument
77 @Instrument
ThreadSafetyTest.java 11 import org.robolectric.annotation.internal.Instrument;
35 @Instrument
ShadowWranglerIntegrationTest.java 16 import org.robolectric.annotation.internal.Instrument;
146 @Instrument
186 @Instrument
217 @Instrument
224 @Instrument
327 @Instrument
346 @Instrument
372 @Instrument
388 @Instrument
396 @Instrument // because it's fairly common that people accidentally instrument their own shadow
    [all...]
  /external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/annotation/internal/
Instrument.java 15 public @interface Instrument {
  /external/v8/src/compiler/
basic-block-instrumentor.h 23 static BasicBlockProfiler::Data* Instrument(OptimizedCompilationInfo* info,
  /external/vixl/src/aarch64/
instrument-aarch64.h 35 #include "instrument-aarch64.h"
78 class Instrument : public DecoderVisitor {
80 explicit Instrument(
83 ~Instrument();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
AndroidTranslatorClassInstrumentedTest.java 13 import org.robolectric.annotation.internal.Instrument;
54 @Instrument
88 @Instrument
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
AllCommands.java 31 return Arrays.asList(new Dump(), new Instrument(), new Merge(),
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
InvokeDynamicTest.java 12 import org.robolectric.annotation.internal.Instrument;
59 @Instrument
68 @Instrument
109 @Instrument
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ExperimentingRunnerModuleTest.java 28 import com.google.caliper.runner.Instrument.Instrumentation;
46 private Instrument instrumentA = new FakeInstrument();
47 private Instrument instrumentB = new FakeInstrument();
121 static final class FakeInstrument extends Instrument {

Completed in 1371 milliseconds

12 3