HomeSort by relevance Sort by last modified time
    Searched refs:InstrumentSpec (Results 1 - 5 of 5) sorted by null

  /external/caliper/caliper/src/main/java/com/google/caliper/model/
InstrumentSpec.java 35 public final class InstrumentSpec {
36 static final InstrumentSpec DEFAULT = new InstrumentSpec();
45 private InstrumentSpec() {
50 private InstrumentSpec(Builder builder) {
66 } else if (obj instanceof InstrumentSpec) {
67 InstrumentSpec that = (InstrumentSpec) obj;
120 public InstrumentSpec build() {
122 return new InstrumentSpec(this)
    [all...]
Trial.java 41 private InstrumentSpec instrumentSpec;
48 this.instrumentSpec = InstrumentSpec.DEFAULT;
56 this.instrumentSpec = builder.instrumentSpec;
69 public InstrumentSpec instrumentSpec() {
70 return instrumentSpec;
88 && this.instrumentSpec.equals(that.instrumentSpec
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
InstrumentConfig.java 22 import com.google.caliper.model.InstrumentSpec;
33 * {@link InstrumentSpec} in that any number of configurations can yield the same spec
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Instrument.java 26 import com.google.caliper.model.InstrumentSpec;
137 final InstrumentSpec getSpec() {
138 return new InstrumentSpec.Builder()
ConsoleOutput.java 20 import com.google.caliper.model.InstrumentSpec;
52 private final Set<InstrumentSpec> instrumentSpecs = Sets.newHashSet();
131 instrumentSpecs.add(trial.instrumentSpec());

Completed in 155 milliseconds