/external/vixl/src/vixl/a64/ |
D | instrument-a64.cc | 119 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() function in vixl::Instrument 149 Instrument::~Instrument() { in ~Instrument() 165 void Instrument::Update() { in Update() 179 void Instrument::DumpCounters() { in DumpCounters() 191 void Instrument::DumpCounterNames() { in DumpCounterNames() 203 void Instrument::HandleInstrumentationEvent(unsigned event) { in HandleInstrumentationEvent() 212 void Instrument::DumpEventMarker(unsigned marker) { in DumpEventMarker() 222 Counter* Instrument::GetCounter(const char* name) { in GetCounter() 241 void Instrument::Enable() { in Enable() 249 void Instrument::Disable() { in Disable() [all …]
|
D | instrument-a64.h | 74 class Instrument: public DecoderVisitor { 76 explicit Instrument(const char* datafile = NULL, 78 ~Instrument();
|
/external/v8/src/arm64/ |
D | instrument-arm64.cc | 97 Instrument::Instrument(const char* datafile, uint64_t sample_period) in Instrument() function in v8::internal::Instrument 126 Instrument::~Instrument() { in ~Instrument() 142 void Instrument::Update() { in Update() 155 void Instrument::DumpCounters() { in DumpCounters() 167 void Instrument::DumpCounterNames() { in DumpCounterNames() 179 void Instrument::HandleInstrumentationEvent(unsigned event) { in HandleInstrumentationEvent() 188 void Instrument::DumpEventMarker(unsigned marker) { in DumpEventMarker() 198 Counter* Instrument::GetCounter(const char* name) { in GetCounter() 217 void Instrument::Enable() { in Enable() 225 void Instrument::Disable() { in Disable() [all …]
|
D | instrument-arm64.h | 53 class Instrument: public DecoderVisitor { 55 explicit Instrument(const char* datafile = NULL, 57 ~Instrument();
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | ExperimentingRunnerModule.java | 25 import com.google.caliper.runner.Instrument.Instrumentation; 157 Class<? extends Instrument> value(); in value() 162 static Instrument provideArbitraryMeasurementInstrument() { in provideArbitraryMeasurementInstrument() 168 static Instrument provideAllocationInstrument() { in provideAllocationInstrument() 174 static Instrument provideRuntimeInstrument( in provideRuntimeInstrument() 180 static ImmutableSet<Instrument> provideInstruments( in provideInstruments() 183 Map<Class<? extends Instrument>, Provider<Instrument>> availableInstruments, in provideInstruments() argument 188 ImmutableSet.Builder<Instrument> builder = ImmutableSet.builder(); in provideInstruments() 199 Class<? extends Instrument> clazz = in provideInstruments() 200 Util.lenientClassForName(className).asSubclass(Instrument.class); in provideInstruments() [all …]
|
D | Instrument.java | 43 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()
|
D | BenchmarkClassChecker.java | 56 private final ImmutableSet<Instrument> instruments; 77 for (Instrument instrument : instruments) { in isBenchmark() 100 ImmutableSet<Instrument> instruments(); in instruments()
|
D | FullCartesianExperimentSelector.java | 19 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()
|
D | AllocationInstrument.java | 56 public final class AllocationInstrument extends Instrument { 122 return new Instrument.DefaultMeasurementCollectingVisitor( in getMeasurementCollectingVisitor() 163 return new Instrument.DefaultMeasurementCollectingVisitor( in getMeasurementCollectingVisitor()
|
D | ExperimentingCaliperRun.java | 72 private final ImmutableSet<Instrument> instruments; 83 ImmutableSet<Instrument> instruments, in ExperimentingCaliperRun() 109 .transform(new Function<Instrument, String>() { in run() 110 @Override public String apply(Instrument instrument) { in run()
|
D | InstrumentComponent.java | 27 void injectInstrument(Instrument instrument); in injectInstrument()
|
D | TrialResultFactory.java | 19 import com.google.caliper.runner.Instrument.MeasurementCollectingVisitor;
|
D | ExperimentSelector.java | 23 ImmutableSet<Instrument> instruments(); in instruments()
|
D | WorkerProcess.java | 24 import com.google.caliper.runner.Instrument.Instrumentation; 151 Instrument instrument = instrumentation.instrument(); in buildProcess()
|
D | Experiment.java | 21 import com.google.caliper.runner.Instrument.Instrumentation;
|
D | TrialModule.java | 28 import com.google.caliper.runner.Instrument.MeasurementCollectingVisitor;
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | 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 {
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | Foo.java | 3 import com.xtremelabs.robolectric.internal.Instrument; 5 @Instrument
|
D | AndroidTranslatorTest.java | 16 import com.xtremelabs.robolectric.internal.Instrument; 224 @Instrument
|
D | ShadowWranglerTest.java | 8 import com.xtremelabs.robolectric.internal.Instrument; 196 @Instrument
|
/external/caliper/caliper/src/main/resources/com/google/caliper/config/ |
D | global-config.properties | 34 # pointing to a concrete class that extends com.google.caliper.runner.Instrument, and add 37 # Instrument "runtime" 63 # Instrument "arbitrary" 69 # Instrument "allocation"
|
/external/robolectric/v3/ |
D | robolectric-annotations-3.1-SNAPSHOT.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/robolectric/
org/ ... |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/ |
D | Instrument.java | 9 public @interface Instrument { annotation
|
/external/v8/src/compiler/ |
D | basic-block-instrumentor.h | 23 static BasicBlockProfiler::Data* Instrument(CompilationInfo* info,
|
D | basic-block-instrumentor.cc | 50 BasicBlockProfiler::Data* BasicBlockInstrumentor::Instrument( in Instrument() function in v8::internal::compiler::BasicBlockInstrumentor
|