Home
last modified time | relevance | path

Searched refs:Instrument (Results 1 – 25 of 90) sorted by relevance

1234

/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DExperimentingRunnerModule.java25 import com.google.caliper.runner.Instrument.Instrumentation;
162 Class<? extends Instrument> value(); in value()
168 static Instrument provideArbitraryMeasurementInstrument() { in provideArbitraryMeasurementInstrument()
175 static Instrument provideAllocationInstrument() { in provideAllocationInstrument()
182 static Instrument provideRuntimeInstrument( in provideRuntimeInstrument()
188 static ImmutableSet<Instrument> provideInstruments( in provideInstruments()
191 Map<Class<? extends Instrument>, Provider<Instrument>> availableInstruments, in provideInstruments() argument
196 ImmutableSet.Builder<Instrument> builder = ImmutableSet.builder(); in provideInstruments()
207 Class<? extends Instrument> clazz = in provideInstruments()
208 Util.lenientClassForName(className).asSubclass(Instrument.class); in provideInstruments()
[all …]
DInstrument.java43 public abstract class Instrument { class
85 Instrument instrument() { in instrument()
86 return Instrument.this; in instrument()
99 return Instrument.this.equals(that.instrument()) in equals()
107 return Objects.hashCode(Instrument.this, benchmarkMethod); in hashCode()
113 .add("instrument", Instrument.this) in toString()
DBenchmarkClassChecker.java56 private final ImmutableSet<Instrument> instruments;
77 for (Instrument instrument : instruments) { in isBenchmark()
100 ImmutableSet<Instrument> instruments(); in instruments()
DFullCartesianExperimentSelector.java19 import com.google.caliper.runner.Instrument.Instrumentation;
55 @Override public ImmutableSet<Instrument> instruments() { in instruments()
57 .transform(new Function<Instrumentation, Instrument>() { in instruments()
58 @Override public Instrument apply(Instrumentation input) { in instruments()
/external/llvm-project/clang/test/SemaCXX/
Dwarn-return-std-move.cpp15 struct Instrument { struct
16 Instrument() {} in Instrument() argument
17 Instrument(Instrument&&) { /* MOVE */ } in Instrument() argument
18 Instrument(const Instrument&) { /* COPY */ } in Instrument() function
20 struct ConvertFromBase { Instrument i; };
21 struct ConvertFromDerived { Instrument i; };
23 Instrument i;
32 Instrument i;
37 Instrument i;
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
DShadowWranglerIntegrationTest.java16 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 shadows
[all …]
DStaticInitializerTest.java11 import org.robolectric.annotation.internal.Instrument;
23 @Instrument
38 @Instrument public static class ClassWithStaticInitializerB {
56 @Instrument public static class ClassWithStaticInitializerC {
DClassicSuperHandlingTest.java9 import org.robolectric.annotation.internal.Instrument;
63 @Instrument
70 @Instrument
77 @Instrument
DShadowingTest.java16 import org.robolectric.annotation.internal.Instrument;
72 @Instrument
88 @Instrument
124 @Instrument @SuppressWarnings({"UnusedDeclaration"})
177 @Instrument
205 @Instrument
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
DInvokeDynamicTest.java12 import org.robolectric.annotation.internal.Instrument;
59 @Instrument
68 @Instrument
109 @Instrument
DFakeApp.java4 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
DAFinalClass.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAGrandparent.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAClassWithoutEqualsHashCodeToString.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAChild.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAParent.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAClassThatExtendsAClassWithFinalEqualsHashCode.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAnInstrumentedClassWithoutToStringWithSuperToString.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAClassWithNativeMethodReturningPrimitive.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
DAnEnum.java3 import org.robolectric.annotation.internal.Instrument;
5 @Instrument
DAClassWithMethodReturningBoolean.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
DAClassWithMethodReturningArray.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
DAClassWithMethodReturningInteger.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
DAClassWithMethodReturningDouble.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument
DAClassThatRefersToAForgettableClassInItsConstructor.java3 import org.robolectric.annotation.internal.Instrument;
6 @Instrument

1234