/development/samples/ApiDemos/src/com/example/android/apis/app/ |
ContactsSelectInstrumentation.java | 20 import android.app.Instrumentation; 29 * This is an example implementation of the {@link android.app.Instrumentation} 31 * instrumentation implementation here is loaded into the application's 34 public class ContactsSelectInstrumentation extends Instrumentation { 39 // When this instrumentation is created, we simply want to start
|
LocalSampleInstrumentation.java | 20 import android.app.Instrumentation; 27 * This is an example implementation of the {@link android.app.Instrumentation} 28 * class demonstrating instrumentation against one of this application's sample 31 public class LocalSampleInstrumentation extends Instrumentation { 43 // When this instrumentation is created, we simply want to start
|
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/ |
UiAutomationDriver.java | 20 import android.app.Instrumentation; 44 public UiAutomationDriver(Instrumentation instrumentation) { 45 super(instrumentation); 46 this.uiAutomation = instrumentation.getUiAutomation();
|
/external/droiddriver/src/com/google/android/droiddriver/base/ |
AbstractDroidDriver.java | 19 import android.app.Instrumentation; 45 protected final Instrumentation instrumentation; field in class:AbstractDroidDriver 49 protected AbstractDroidDriver(Instrumentation instrumentation) { 50 this.instrumentation = Preconditions.checkNotNull(instrumentation);
|
/frameworks/base/docs/html/training/activity-testing/ |
activity-functional-testing.jd | 14 <li><a href="#keyinput">Send Keyboard Input Using Instrumentation</a></li> 82 started, the {@link android.app.Instrumentation.ActivityMonitor ActivityMonitor} 86 {@link android.app.Instrumentation.ActivityMonitor ActivityMonitor} incremented 91 can register an {@link android.app.Instrumentation.ActivityMonitor ActivityMonitor}. 92 The {@link android.app.Instrumentation.ActivityMonitor ActivityMonitor} is 96 {@link android.app.Instrumentation.ActivityMonitor ActivityMonitor}, you should:</p> 98 <li>Retrieve the {@link android.app.Instrumentation} instance for your test 101 <li>Add an instance of {@link android.app.Instrumentation.ActivityMonitor} to 102 the current instrumentation using one of the {@link android.app.Instrumentation} [all...] |
/external/llvm/include/llvm/Transforms/ |
Instrumentation.h | 1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===// 10 // This file defines constructor functions for instrumentation passes. 24 // Insert edge profiling instrumentation 27 // Insert optimal edge profiling instrumentation 30 // Insert path profiling instrumentation 33 // Insert GCOV profiling instrumentation 61 // Insert AddressSanitizer (address sanity checking) instrumentation 70 // Insert MemorySanitizer instrumentation (detection of uninitialized reads) 74 // Insert ThreadSanitizer (race detection) instrumentation [all...] |
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/ |
InstrumentationResultPrinter.java | 18 import android.app.Instrumentation; 26 * A {@link RunListener} that sends detailed pass/fail results back as instrumentation status 27 * bundles. This output appears when running the instrumentation in '-r' or raw mode. 32 * This value, if stored with key {@link android.app.Instrumentation#REPORT_KEY_IDENTIFIER}, 95 public InstrumentationResultPrinter(Instrumentation i) { 102 mResultTemplate.putString(Instrumentation.REPORT_KEY_IDENTIFIER, REPORT_VALUE_ID); 124 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, 128 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, ""); 138 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, "."); 159 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT [all...] |
/art/runtime/ |
instrumentation.h | 37 namespace instrumentation { namespace in namespace:art 41 // Instrumentation event listener API. Registered listeners will get the appropriate call back for 78 // Instrumentation is a catch-all for when extra information is required from the runtime. The 79 // typical use for instrumentation is for profiling and debugging. Instrumentation may add stubs 82 class Instrumentation { 92 Instrumentation() : 100 // Add a listener to be notified of the masked together sent of instrumentation events. This 108 // Removes a listener possibly removing instrumentation stubs. 117 // will short-cut to GetCode if instrumentation and static method resolution stubs aren' [all...] |
/development/samples/SpinnerTest/ |
_index.html | 11 which extends both <a href="../../../reference/android/app/Instrumentation">Android instrumentation</a> and the JUnit 37 Application control using instrumentation: The <code>testStateDestroy()</code> and <code>testStatePause()</code> 38 methods demonstrate how to use instrumentation to trigger stages in the lifecycle of the activity under test. 42 The <a href="AndroidManifest.html">manifest</a> declares an <code><instrumentation></code> element 45 instrumentation to use. The <code>android:targetPackage</code> attribute specifies
|
/packages/apps/Settings/tests/ |
AndroidManifest.xml | 51 <instrumentation android:name="android.test.InstrumentationTestRunner" 54 </instrumentation> 56 <instrumentation android:name="SettingsLaunchPerformance" 59 </instrumentation> 61 <instrumentation android:name="android.test.InstrumentationTestRunner" 64 </instrumentation>
|
/development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/authenticator/ |
AuthenticatorActivityTest.java | 19 import android.app.Instrumentation; 35 private Instrumentation mInstrumentation; 68 Instrumentation.ActivityMonitor monitor =
|
/external/llvm/docs/HistoricalNotes/ |
2003-06-25-Reoptimizer1.txt | 3 First-level instrumentation 6 We use opt to do Bytecode-to-bytecode instrumentation. Look at 8 no arguments and no return value. This instrumentation is designed to 15 instrumentation on the hot loop region (the instructions between the 20 Second-level instrumentation 23 We remove the first-level instrumentation by overwriting the CALL to 59 instrumentation, by making sure that the number of times we took an 78 with a time when we will next turn instrumentation back on for that 80 that off the prio. queue and turn instrumentation back on for that 90 optimized trace does not have instrumentation. The original code an [all...] |
/frameworks/testing/androidtestlib/src/com/android/test/ |
InjectContext.java | 18 import android.app.Instrumentation; 32 * Use this to inject a {@link Context} representing {@link Instrumentation#getTargetContext()} 39 * The test runner will set the value of this field with the {@link Instrumentation} after
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/ |
AndroidJUnit3Builder.java | 18 import android.app.Instrumentation; 32 private Instrumentation mInstr; 36 public AndroidJUnit3Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) {
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/ |
AndroidJUnit4Builder.java | 18 import android.app.Instrumentation; 35 private final Instrumentation mInstrumentation; 39 public AndroidJUnit4Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) {
|
/packages/providers/ContactsProvider/tests/ |
AndroidManifest.xml | 35 The test declared in this instrumentation will be run along with tests declared by 41 <instrumentation android:name="android.test.InstrumentationTestRunner" 44 </instrumentation>
|
/build/core/ |
proguard_tests.flags | 23 #-keep class * extends android.app.Instrumentation
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
WrappedGTestResultParser.java | 52 * Strips the instrumentation information and then forwards 66 * Parses raw instrumentation output and returns the 69 * @param lines the raw instrumentation output 78 CLog.e("Instrumentation Error:");
|
/development/samples/ApiDemos/tests/ |
Android.mk | 13 # running the tests using an instrumentation targeting ApiDemos, we
|
/external/chromium_org/tools/android/ |
android_tools.gyp | 8 # unittests and instrumentation test apks.
|
/external/droiddriver/samples/testapp/tests/src/com/google/android/apps/common/testing/ui/testapp/sendactivity/ |
UseInstrumentation.java | 11 return new DroidDriverBuilder(getInstrumentation()).use(Implementation.INSTRUMENTATION).build();
|
/external/valgrind/main/callgrind/tests/ |
clreq.c | 2 // Similar to Cachegrind, check if instrumentation works in the presence
|
/external/valgrind/main/ |
valgrind.pc.in | 11 Description: A dynamic binary instrumentation framework
|
/frameworks/base/core/tests/coretests/src/android/util/ |
KeyUtils.java | 19 import android.app.Instrumentation; 46 final Instrumentation inst = test.getInstrumentation(); 59 final Instrumentation inst = test.getInstrumentation(); 78 final Instrumentation inst = test.getInstrumentation();
|
/frameworks/base/tests/AppLaunch/ |
AndroidManifest.xml | 6 <instrumentation android:label="Measure app start up time"
|