HomeSort by relevance Sort by last modified time
    Searched full:instrumented (Results 1 - 25 of 385) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/tests/
asan_test.ignore 1 # blacklisted functions for instrumented ASan unit test
  /external/llvm/lib/Fuzzer/test/
UninstrumentedTest.cpp 1 // This test should not be instrumented.
  /external/llvm/test/Instrumentation/AddressSanitizer/
debug_info_noninstrumented_alloca.ll 1 ; This test checks that non-instrumented allocas stay in the first basic block.
13 ; Won't be instrumented because of asan-skip-promotable-allocas.
16 ; Regular alloca, will get instrumented (forced by the ptrtoint below).
17 %instrumented = alloca i32, align 4
19 ; Won't be instrumented because of asan-skip-promotable-allocas.
25 ; Won't be instrumented because of asan-skip-promotable-allocas.
28 %ptr = ptrtoint i32* %instrumented to i32
instrument_initializer_metadata.ll 46 ; CTOR with priority 0 should not be instrumented.
56 ; Check that xxx is instrumented.
65 ; Check that XXX is instrumented.
75 ; Check that yyy is NOT instrumented (as it does not have dynamic initializer).
84 ; Check that YYY is NOT instrumented (as it does not have dynamic initializer).
  /external/jacoco/org.jacoco.examples.test/src/test/resources/
verify-offline.groovy 4 assert new File(realBaseDir, "build.log").getText().contains(":restore-instrumented-classes");
  /external/llvm/lib/Fuzzer/test/trace-bb/
CMakeLists.txt 1 # These tests are not instrumented with coverage.
  /external/llvm/lib/Fuzzer/test/uninstrumented/
CMakeLists.txt 1 # These tests are not instrumented with coverage.
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
Instrumenter.java 49 * runtime used by the instrumented classes
70 * Creates a instrumented version of the given class if possible.
74 * @return instrumented definition
88 * Creates a instrumented version of the given class if possible.
94 * @return instrumented definition
108 * Creates a instrumented version of the given class if possible.
114 * @return instrumented definition
117 * instrumented
129 * Creates a instrumented version of the given class file.
134 * stream to write the instrumented version of the class t
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
DoNotInstrument.java 4 * Indicates that a class should not be stripped/instrumented under any circumstances.
Instrument.java 4 * Indicates that a class should always be instrumented by AndroidTranslator regardless of its package.
  /external/jacoco/org.jacoco.doc/docroot/doc/
offline.html 35 For such scenarios class files can be pre-instrumented with JaCoCo, for
37 Ant task. At runtime the pre-instrumented classes needs be on the classpath
47 are already instrumented. There are two different ways to provide the
76 Unlike with on-the-fly instrumentation offline instrumented classes get a
79 instrumented classes. The proper location for <code>jacocoagent.jar</code>
80 might depend on your deployment scenario. The first instrumented class loaded
81 will trigger the initialization of the JaCoCo runtime. If no instrumented
85 <h2>Using Pre-Instrumented Classes With the Java Agent</h2>
87 It is possible to also use offline-instrumented classes with the JaCoCo Java
89 agent must be configured in a way that pre-instrumented classes are excluded
    [all...]
  /external/clang/test/Profile/
cxx-implicit.cpp 1 // Ensure that implicit methods aren't instrumented.
README 7 - the use of profile data from instrumented runs (-fprofile-instr-use).
9 In order to test -fprofile-instr-use without actually running an instrumented
cxx-virtual-destructor-calls.cpp 19 // Complete dtor must not be instrumented
22 // Deleting dtor must not be instrumented
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCloseable.java 11 * require this shadow in order to be properly instrumented.
  /external/compiler-rt/test/asan/TestCases/Darwin/
mixing-global-constructors.cc 1 // A global constructor from a non-instrumented part calls a function
2 // in an instrumented part.
  /external/jacoco/jacoco-maven-plugin.test/it/it-offline-instrumentation/
verify.bsh 17 throw new RuntimeException( "Could not find backup of instrumented class: " + file );
21 throw new RuntimeException( "Excluded file should not be instrumented: " + file );
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
Offline.java 20 * The API for classes instrumented in "offline" mode. The agent configuration
39 * API for offline instrumented classes.
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
IRuntime.java 22 * instrumented for this runtime is loaded.
33 * called when classes instrumented for this runtime are not used any more.
  /external/v8/tools/gyp/test/win/linker-flags/
update_pgd.py 18 # Instrumented binaries fail to run unless the Visual C++'s bin dir is included
22 # Run Instrumented binary. The profile will be recorded into *.pgc file.
  /external/compiler-rt/lib/msan/tests/
CMakeLists.txt 91 # Build gtest instrumented with MSan.
96 # Instrumented tests.
103 # Instrumented loadable module objects.
108 # Instrumented loadable library tests.
130 # We should only build MSan unit tests if we can build instrumented libcxx.
  /frameworks/base/docs/html/training/testing/integration-testing/
service-testing.jd 46 <a href="{@docRoot}training/testing/unit-testing/instrumented-unit-tests.html">
47 instrumented unit tests</a> to verify that the behavior in the {@link android.app.Service}
74 instrumented tests, as described in
75 <a href="{@docRoot}training/testing/start/index.html#config-instrumented-tests">
81 <a href="{@docRoot}training/testing/unit-testing/instrumented-unit-tests.html#build">
82 Create an Instrumented Unit Test Class</a>.</p>
89 <a href="{@docRoot}training/testing/unit-testing/instrumented-unit-tests.html#run">
90 Run Instrumented Unit Tests</a>.</p>
137 To run the integration test for your service, follow the steps for running instrumented tests
138 described in <a href="{@docRoot}training/testing/start/index.html#run-instrumented-tests"
    [all...]
  /external/jacoco/jacoco-maven-plugin/META-INF/m2e/
lifecycle-mapping-metadata.xml 24 <goal>restore-instrumented-classes</goal>
  /frameworks/base/docs/html/training/testing/unit-testing/
instrumented-unit-tests.jd 1 page.title=Building Instrumented Unit Tests
14 <li><a href="#build">Create a Instrumented Unit Test Class</a>
19 <li><a href="#run">Run Instrumented Unit Tests</a>
31 class="external-link">Instrumented Unit Tests Code Samples</a></li>
38 <p>Instrumented unit tests are tests that run on physical devices and
41 instrumented unit tests if your tests need access to instrumentation
47 <p>Using instrumented unit tests also helps to reduce the effort required to
55 instrumented tests at
58 instrumented test.</p>
63 you to quickly build and run instrumented test code for your apps. Th
    [all...]
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
CoreTutorial.java 32 * will be instrumented and executed. Finally the coverage information will be
116 final byte[] instrumented = instr.instrument(
119 // Now we're ready to run our instrumented class and need to startup the
125 // instrumented class definition from a byte[] instances.
127 memoryClassLoader.addDefinition(targetName, instrumented);

Completed in 1313 milliseconds

1 2 3 4 5 6 7 8 91011>>