/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/ |
ShadowingTest.java | 16 import org.robolectric.annotation.internal.Instrument; 72 @Instrument 88 @Instrument 124 @Instrument @SuppressWarnings({"UnusedDeclaration"}) 177 @Instrument 205 @Instrument
|
RobolectricInternalsTest.java | 9 import org.robolectric.annotation.internal.Instrument; 86 @Instrument
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
Experiment.java | 21 import com.google.caliper.runner.Instrument.Instrumentation; 30 * to use, which choices for user parameters and vmArguments to fill in and which instrument to use 76 .add("instrument", instrumentation.instrument())
|
ExperimentingCaliperRun.java | 72 private final ImmutableSet<Instrument> instruments; 83 ImmutableSet<Instrument> instruments, 109 .transform(new Function<Instrument, String>() { 110 @Override public String apply(Instrument instrument) { 111 return instrument.name();
|
AllocationInstrument.java | 47 * {@link Instrument} that watches the memory allocations in an invocation of the 56 public final class AllocationInstrument extends Instrument { 122 return new Instrument.DefaultMeasurementCollectingVisitor( 163 return new Instrument.DefaultMeasurementCollectingVisitor( 197 * This instrument's worker requires the allocationinstrumenter agent jar, specified
|
WorkerProcess.java | 24 import com.google.caliper.runner.Instrument.Instrumentation; 151 Instrument instrument = instrumentation.instrument(); local 168 Iterable<String> instrumentJvmOptions = instrument.getExtraCommandLineArgs(vmConfig); 169 logger.fine(String.format("Instrument(%s) Java args: %s", instrument.getClass().getName(),
|
ArbitraryMeasurementInstrument.java | 42 * Instrument for taking an arbitrary measurement. When using this instrument, the benchmark code 46 public final class ArbitraryMeasurementInstrument extends Instrument {
|
TrialModule.java | 28 import com.google.caliper.runner.Instrument.MeasurementCollectingVisitor; 98 return experiment.instrumentation().instrument().schedulingPolicy(); 133 .instrumentSpec(experiment.instrumentation().instrument().getSpec())
|
TrialRunLoop.java | 25 import com.google.caliper.runner.Instrument.MeasurementCollectingVisitor;
|
RuntimeInstrument.java | 63 * The instrument responsible for measuring the runtime of {@link Benchmark} methods. 66 class RuntimeInstrument extends Instrument { 414 + "consider the macrobenchmark instrument.", nanoTimeGranularity, 463 + "Use the microbenchmark instrument for accurate measurements.",
|
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/ |
Instrument.java | 32 * The <code>instrument</code> command. 34 public class Instrument extends Command { 39 @Argument(usage = "list of folder or files to instrument recusively", metaVar = "<sourcefiles>") 58 total += instrument(s, new File(absoluteDest, s.getName())); 77 total += instrument(src, dest); 82 private int instrument(final File src, final File dest) throws IOException { method in class:Instrument
|
/external/v8/src/compiler/ |
basic-block-instrumentor.cc | 48 BasicBlockProfiler::Data* BasicBlockInstrumentor::Instrument(
|
pipeline.cc | [all...] |
/frameworks/base/cmds/am/src/com/android/commands/am/ |
Am.java | 79 if (op.equals("instrument")) { 152 Instrument instrument = new Instrument(mAm, mPm); local 157 instrument.profileFile = nextArgRequired(); 159 instrument.wait = true; 161 instrument.rawMode = true; 163 instrument.protoStd = true; 165 instrument.protoFile = true; 167 instrument.logPath = nextArg() [all...] |
Instrument.java | 53 * Runs the am instrument command 65 public class Instrument { 68 public static final String DEFAULT_LOG_DIR = "instrument-logs"; 96 * Construct the instrument command runner. 98 public Instrument(IActivityManager am, IPackageManager pm) {
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
InstrumentationConfiguration.java | 16 import org.robolectric.annotation.internal.Instrument; 77 * Determine if {@link SandboxClassLoader} should instrument a given class. 88 || mutableClass.hasAnnotation(Instrument.class))
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
RuntimeInstrumentTest.java | 28 import com.google.caliper.runner.Instrument.Instrumentation; 55 private RuntimeInstrument instrument; field in class:RuntimeInstrumentTest 58 this.instrument = new RuntimeInstrument(ShortDuration.of(100, NANOSECONDS)); 67 return instrument.isBenchmarkMethod(input); 80 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); 82 assertEquals(instrument, instrumentation.instrument()); 88 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); 90 assertEquals(instrument, instrumentation.instrument()); [all...] |
/build/soong/java/ |
app.go | 504 module.Module.properties.Instrument = true 573 module.Module.properties.Instrument = true
|
java.go | 178 Instrument bool `blueprint:"mutated"` 436 return j.properties.Instrument && ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") 1380 func (j *Module) instrument(ctx android.ModuleContext, flags javaBuilderFlags, func [all...] |
/external/conscrypt/benchmark-android/ |
vogar.jar | |
/external/v8/src/arm64/ |
simulator-arm64.h | 15 #include "src/arm64/instrument-arm64.h" [all...] |
simulator-arm64.cc | 310 instrument_ = new Instrument(FLAG_log_instruction_file, [all...] |
/external/vixl/src/aarch64/ |
simulator-aarch64.h | 40 #include "instrument-aarch64.h" [all...] |
simulator-aarch64.cc | 321 instrumentation_ = new Instrument("vixl_stats.csv", 10); [all...] |