/external/swiftshader/third_party/subzero/src/ |
D | IceInstrumentation.h | 39 class Instrumentation { 40 Instrumentation() = delete; 41 Instrumentation(const Instrumentation &) = delete; 42 Instrumentation &operator=(const Instrumentation &) = delete; 45 Instrumentation(GlobalContext *Ctx) : Ctx(Ctx) {} in Instrumentation() function 46 virtual ~Instrumentation() = default;
|
D | IceInstrumentation.cpp | 28 void Instrumentation::instrumentFunc(Cfg *Func) { in instrumentFunc() 59 void Instrumentation::instrumentInst(LoweringContext &Context) { in instrumentInst() 121 void Instrumentation::setHasSeenGlobals() { in setHasSeenGlobals() 129 LockedPtr<VariableDeclarationList> Instrumentation::getGlobals() { in getGlobals()
|
D | IceASanInstrumentation.h | 31 class ASanInstrumentation : public Instrumentation { 37 ASanInstrumentation(GlobalContext *Ctx) : Instrumentation(Ctx), RzNum(0) { in ASanInstrumentation()
|
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/ |
D | PreMain.java | 14 import java.lang.instrument.Instrumentation; 44 public static void premain(final String options, final Instrumentation inst) in premain() 57 private static IRuntime createRuntime(final Instrumentation inst) in createRuntime() 77 final Instrumentation instrumentation) throws Exception { in redefineJavaBaseModule() 84 Instrumentation.class.getMethod("redefineModule", // in redefineJavaBaseModule()
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
D | FullCartesianExperimentSelector.java | 19 import com.google.caliper.runner.Instrument.Instrumentation; 41 private ImmutableSet<Instrumentation> instrumentations; 46 ImmutableSet<Instrumentation> instrumentations, in FullCartesianExperimentSelector() 57 .transform(new Function<Instrumentation, Instrument>() { in instruments() 58 @Override public Instrument apply(Instrumentation input) { in instruments() 75 for (Instrumentation instrumentation : instrumentations) {
|
D | Instrument.java | 66 public abstract Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation() 78 public abstract class Instrumentation { class in Instrument 81 protected Instrumentation(Method benchmarkMethod) { in Instrumentation() method in Instrument.Instrumentation 97 } else if (obj instanceof Instrumentation) { in equals() 98 Instrumentation that = (Instrumentation) obj; in equals() 112 return MoreObjects.toStringHelper(Instrumentation.class) in toString()
|
D | Experiment.java | 21 import com.google.caliper.runner.Instrument.Instrumentation; 35 private final Instrumentation instrumentation; 40 Instrumentation instrumentation, in Experiment() 48 Instrumentation instrumentation() { in instrumentation()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
D | ModifiedSystemClassRuntimeTest.java | 21 import java.lang.instrument.Instrumentation; 44 Instrumentation inst = newInstrumentationMock(); in testCreateForNegative() 58 private Instrumentation newInstrumentationMock() { in newInstrumentationMock() 59 return (Instrumentation) Proxy.newProxyInstance(getClass() in newInstrumentationMock() 60 .getClassLoader(), new Class[] { Instrumentation.class }, in newInstrumentationMock()
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | ExperimentingRunnerModuleTest.java | 28 import com.google.caliper.runner.Instrument.Instrumentation; 64 new ImmutableSet.Builder<Instrumentation>() in provideInstrumentations_noNames() 82 new ImmutableSet.Builder<Instrumentation>() in provideInstrumentations_withNames() 90 new ImmutableSet.Builder<Instrumentation>() in provideInstrumentations_withNames() 127 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation() 129 return new Instrumentation(benchmarkMethod) { in createInstrumentation()
|
D | RuntimeInstrumentTest.java | 28 import com.google.caliper.runner.Instrument.Instrumentation; 80 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); in createInstrumentation_macrobenchmark() 88 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); in createInstrumentation_microbenchmark() 96 Instrumentation instrumentation = instrument.createInstrumentation(benchmarkMethod); in createInstrumentation_picobenchmark()
|
/external/javassist/src/main/javassist/util/ |
D | HotSwapAgent.java | 22 import java.lang.instrument.Instrumentation; 81 private static Instrumentation instrumentation = null; 88 public Instrumentation instrumentation() { return instrumentation; } in instrumentation() 93 public static void premain(String agentArgs, Instrumentation inst) throws Throwable { in premain() 100 public static void agentmain(String agentArgs, Instrumentation inst) throws Throwable { in agentmain()
|
/external/objenesis/tck-android/src/main/java/org/objenesis/tck/android/ |
D | TckInstrumentation.java | 19 import android.app.Instrumentation; 33 public class TckInstrumentation extends Instrumentation { 50 bundle.putString(Instrumentation.REPORT_KEY_STREAMRESULT, fromStdout); in onCreate()
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/ |
D | BaseTestResult.java | 7 import android.app.Instrumentation; 31 private final Instrumentation mInstrumentation; 38 public BaseTestResult(Instrumentation instrumentation) { in BaseTestResult()
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | InstrumentationUtils.java | 7 import android.app.Instrumentation; 21 public static <R> R runOnMainSyncAndGetResult(Instrumentation instrumentation, in runOnMainSyncAndGetResult()
|
/external/llvm-project/llvm/test/tools/llvm-profdata/ |
D | show-instr-level.test | 3 FE: Instrumentation level: Front-end 7 IR: Instrumentation level: IR
|
D | header-directives.test | 5 ENTRYFIRST: Instrumentation level: IR entry_first = 1 6 NOTENTRYFIRST: Instrumentation level: IR entry_first = 0
|
/external/llvm-project/llvm/utils/gn/secondary/llvm/lib/Transforms/Instrumentation/ |
D | BUILD.gn | 1 static_library("Instrumentation") { 22 "Instrumentation.cpp",
|
/external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/ |
D | TestRunnerTestRule.java | 10 import android.app.Instrumentation; 49 Instrumentation instrumentation = new Instrumentation() { in before()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/ |
D | ModifiedSystemClassRuntime.java | 18 import java.lang.instrument.Instrumentation; 98 public static IRuntime createFor(final Instrumentation inst, in createFor() 119 public static IRuntime createFor(final Instrumentation inst, in createFor()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | LLVMBuild.txt | 1 ;===- ./lib/Transforms/Instrumentation/LLVMBuild.txt -----------*- Conf -*--===; 20 name = Instrumentation
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | LLVMBuild.txt | 1 ;===- ./lib/Transforms/Instrumentation/LLVMBuild.txt -----------*- Conf -*--===; 19 name = Instrumentation
|
/external/deqp/android/package/src/com/drawelements/deqp/platformutil/ |
D | DeqpPlatformCapabilityQueryInstrumentation.java | 26 import android.app.Instrumentation; 29 public class DeqpPlatformCapabilityQueryInstrumentation extends Instrumentation
|
/external/opencensus-java/contrib/agent/src/main/java/io/opencensus/contrib/agent/ |
D | AgentMain.java | 26 import java.lang.instrument.Instrumentation; 64 public static void premain(String agentArgs, Instrumentation instrumentation) throws Exception { in premain()
|
/external/grpc-grpc-java/android-interop-testing/ |
D | README.md | 38 Instrumentation tests 41 Instrumentation tests must be run on a connected device or emulator. Run with the
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/agent/ |
D | AgentPremain.java | 29 import java.lang.instrument.Instrumentation; 52 public static void premain(String agentArgument, Instrumentation instrumentation) { in premain()
|