HomeSort by relevance Sort by last modified time
    Searched refs:instrument (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
InstrumentComponent.java 22 * Component to use to inject values into an {@link Instrument}.
27 void injectInstrument(Instrument instrument);
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();
  /packages/apps/Contacts/script/
test.sh 18 adb shell am instrument ${@} -w com.android.contacts.tests/android.test.InstrumentationTestRunner
  /frameworks/base/tests/HierarchyViewerTest/
run_tests.sh 4 adb shell am instrument -w com.android.test.hierarchyviewer/android.test.InstrumentationTestRunner
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
CyclomaticComplexityTest.java 73 instrument(Simple.class);
80 instrument(Simple.class);
96 instrument(If.class);
103 instrument(If.class);
111 instrument(If.class);
131 instrument(TwoIf.class);
138 instrument(TwoIf.class);
146 instrument(TwoIf.class);
155 instrument(TwoIf.class);
175 instrument(NestedIf.class)
254 private void instrument(final Class<? extends Target> clazz) method in class:CyclomaticComplexityTest
    [all...]
  /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...]
CaliperTestWatcher.java 50 private String instrument; field in class:CaliperTestWatcher
59 CaliperTestWatcher instrument(String instrument) { method in class:CaliperTestWatcher
60 this.instrument = instrument;
78 if (instrument != null) {
80 options.add(instrument);
AllocationInstrumentTest.java 50 AllocationInstrument instrument = new AllocationInstrument(); local
53 instrument.setOptions(ImmutableMap.of("allocationAgentJar", fakeJar.getAbsolutePath()));
64 assertEquals(expected, instrument.getExtraCommandLineArgs(vmConfig));
71 .instrument("allocation")
BadUserCodeTest.java 138 .instrument("allocation")
154 .instrument("allocation")
185 .instrument("allocation")
195 .instrument("allocation")
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 10 void instrument(CtClass ctClass); method in interface:ClassHandler
  /test/vts/utils/python/controllers/
attenuator.py 74 When this exception is seen, closing an re-opening the link to the attenuator instrument is
93 accessing any step attenuator instrument comprised of one or more attenuators and a
102 r"""This is the Constructor for Attenuator Instrument.
107 instrument. In some instances setting this number to zero will allow the driver to
130 r"""This function sets the attenuation of an attenuator given its index in the instrument.
135 instrument.
147 the instrument.
151 idx : This zero-based index is the identifier for a particular attenuator in an instrument.
167 r"""This class defines an object representing a single attenuator in a remote instrument.
174 def __init__(self, instrument, idx=0, offset=0)
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
attenuator.py 74 When this exception is seen, closing an re-opening the link to the attenuator instrument is
93 accessing any step attenuator instrument comprised of one or more attenuators and a
102 r"""This is the Constructor for Attenuator Instrument.
107 instrument. In some instances setting this number to zero will allow the driver to
130 r"""This function sets the attenuation of an attenuator given its index in the instrument.
135 instrument.
147 the instrument.
151 idx : This zero-based index is the identifier for a particular attenuator in an instrument.
167 r"""This class defines an object representing a single attenuator in a remote instrument.
174 def __init__(self, instrument, idx=0, offset=0)
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
InstrumentationSizeSzenario.java 36 instr.instrument(reader);
38 instr.instrument(reader).length, reader.b.length);
  /frameworks/base/wifi/tests/
runtests.sh 24 adb shell am instrument -w "$@" 'android.net.wifi.test/android.support.test.runner.AndroidJUnitRunner'
  /packages/apps/Browser2/test/
run_tests.sh 17 adb shell am instrument -w -e mode rebaseline -e class \
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 124 if (op.equals("instrument")) {
196 Instrument instrument = new Instrument(mAm, mPm); local
201 instrument.profileFile = nextArgRequired();
203 instrument.wait = true;
205 instrument.rawMode = true;
207 instrument.proto = true;
211 instrument.args.putString(argKey, argValue);
214 instrument.noWindowAnimation = true
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
ModifiedSystemClassRuntime.java 16 import java.lang.instrument.ClassFileTransformer;
17 import java.lang.instrument.IllegalClassFormatException;
18 import java.lang.instrument.Instrumentation;
128 return instrument(source, accessFieldName);
155 public static byte[] instrument(final byte[] source, method in class:ModifiedSystemClassRuntime
  /external/valgrind/exp-bbv/tests/amd64-linux/
complex_rep.S 1 # When trying (and failing) to instrument at the basic block level
  /external/valgrind/exp-bbv/tests/x86/
complex_rep.S 1 # When trying (and failing) to instrument at the basic block level
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
Instrumenter.java 37 * Several APIs to instrument Java class definitions for coverage tracing.
77 public byte[] instrument(final ClassReader reader) { method in class:Instrumenter
98 public byte[] instrument(final byte[] buffer, final String name) method in class:Instrumenter
101 return instrument(new ClassReader(buffer));
119 public byte[] instrument(final InputStream input, final String name) method in class:Instrumenter
122 return instrument(new ClassReader(input));
141 public void instrument(final InputStream input, final OutputStream output, method in class:Instrumenter
144 output.write(instrument(new ClassReader(input))); method
179 instrument(detector.getInputStream(), output, name);
  /frameworks/base/core/tests/systemproperties/
run_core_systemproperties_test.sh 24 adb shell am instrument -w -e class android.os.SystemPropertiesTest com.android.frameworks.coretests.systemproperties/android.test.InstrumentationTestRunner
  /development/testrunner/
am_instrument_parser.py 18 """Module that assists in parsing the output of "am instrument" commands run on
26 """Given the raw output of an "am instrument" command that targets and
30 result (string): Raw output of "am instrument"
68 """Given the raw output of "am instrument" returns a dictionary of the
73 result (string): Raw output of "am instrument"
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlAppSwitchTest.java 69 Instrumentation instrument = getInstrumentation(); local
70 Context context = instrument.getContext();
79 instrument.waitForIdleSync();
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
CoverageTransformer.java 14 import java.lang.instrument.ClassFileTransformer;
15 import java.lang.instrument.IllegalClassFormatException;
25 * Class file transformer to instrument classes for code coverage analysis.
93 return instrumenter.instrument(classfileBuffer, classname);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
ModifiedSystemClassRuntimeTest.java 20 import java.lang.instrument.ClassDefinition;
21 import java.lang.instrument.ClassFileTransformer;
22 import java.lang.instrument.Instrumentation;

Completed in 1116 milliseconds

1 2 3 4 5 6 7 8 9