/frameworks/multidex/ |
settings.gradle | 2 include ':instrumentation'
|
/external/caliper/lib/ |
java-allocation-instrumenter-2.0-sources.jar | |
/external/llvm/lib/Transforms/ |
CMakeLists.txt | 2 add_subdirectory(Instrumentation)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/ |
test_instrumentation.template | 0 <instrumentation android:targetPackage="TEST_TARGET_PCKG" android:name="android.test.InstrumentationTestRunner" />
|
/art/runtime/ |
instrumentation_test.cc | 17 #include "instrumentation.h" 32 namespace instrumentation { namespace in namespace:art 34 class TestInstrumentationListener FINAL : public instrumentation::InstrumentationListener { 148 // Unique keys used to test Instrumentation::ConfigureStubs. 152 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { 154 instrumentation::Instrumentation* instr = Runtime::Current()->GetInstrumentation(); 159 ScopedSuspendAll ssa("Instrumentation::ConfigureStubs"); 163 Instrumentation::InstrumentationLevel GetCurrentInstrumentationLevel() { 174 instrumentation::Instrumentation* instr = Runtime::Current()->GetInstrumentation() 209 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local 225 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local 240 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local 255 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local 270 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local 282 instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); local [all...] |
/external/droiddriver/src/io/appium/droiddriver/instrumentation/ |
InstrumentationInputInjector.java | 17 package io.appium.droiddriver.instrumentation; 19 import android.app.Instrumentation; 28 private final Instrumentation instrumentation; field in class:InstrumentationInputInjector 30 public InstrumentationInputInjector(Instrumentation instrumentation) { 31 this.instrumentation = instrumentation; 37 instrumentation.sendPointerSync((MotionEvent) event); 39 instrumentation.sendKeySync((KeyEvent) event) [all...] |
/external/droiddriver/src/io/appium/droiddriver/base/ |
DroidDriverContext.java | 19 import android.app.Instrumentation; 30 private final Instrumentation instrumentation; field in class:DroidDriverContext 34 public DroidDriverContext(Instrumentation instrumentation, BaseDroidDriver<R, E> driver) { 35 this.instrumentation = instrumentation; 40 public Instrumentation getInstrumentation() { 41 return instrumentation;
|
/external/valgrind/VEX/ |
HACKING.README | 3 binary instrumentation and translation. See LICENSE.README for
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
Experiment.java | 21 import com.google.caliper.runner.Instrument.Instrumentation; 35 private final Instrumentation instrumentation; field in class:Experiment 40 Instrumentation instrumentation, 43 this.instrumentation = checkNotNull(instrumentation); 48 Instrumentation instrumentation() { method in class:Experiment 49 return instrumentation; [all...] |
/cts/tests/app/app/src/android/app/stubs/ |
OrientationTestUtils.java | 20 import android.app.Instrumentation; 36 * Same as {@link #toggleOrientation(Activity)} except {@link Instrumentation#waitForIdleSync()} 40 * @param instrumentation use for idle syncing 43 final Instrumentation instrumentation) { 48 changeOrientation(activity, instrumentation, newOrientation); 49 changeOrientation(activity, instrumentation, originalOrientation); 53 Instrumentation instrumentation, final int orientation) { 55 if (instrumentation != null) [all...] |
/art/runtime/entrypoints/quick/ |
quick_instrumentation_entrypoints.cc | 20 #include "instrumentation.h" 32 // Instrumentation changes the stack. Thus, when exiting, the stack cannot be verified, so skip 35 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local 37 if (instrumentation->IsDeoptimized(method)) { 40 result = instrumentation->GetQuickCodeFor(method, sizeof(void*)); 44 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? nullptr : this_object, 54 // Instrumentation exit stub must not be entered with a pending exception. 55 CHECK(!self->IsExceptionPending()) << "Enter instrumentation exit stub with pending exception 67 instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); local [all...] |
/cts/tests/tests/view/src/android/view/animation/cts/ |
AnimationTestUtils.java | 19 import android.app.Instrumentation; 43 * @param instrumentation to run animation. 47 public static void assertRunAnimation(final Instrumentation instrumentation, 49 assertRunAnimation(instrumentation, view, animation, animation.getDuration()); 55 * @param instrumentation to run animation. 60 public static void assertRunAnimation(final Instrumentation instrumentation, 63 instrumentation.runOnMainSync(new Runnable() { 85 instrumentation.waitForIdleSync() [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/ |
AndroidManifest.xml | 44 <instrumentation android:name=".CameraStressTestRunner" 47 </instrumentation> 49 <instrumentation android:name=".Camera2InstrumentationTestRunner" 52 </instrumentation> 54 <instrumentation android:name=".MediaFrameworkTestRunner" 57 </instrumentation> 59 <instrumentation android:name=".MediaFrameworkPerfTestRunner" 62 </instrumentation> 64 <instrumentation android:name=".MediaFrameworkUnitTestRunner" 67 </instrumentation> [all...] |
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/ |
InstrumentationAutomationSupport.java | 18 import android.app.Instrumentation; 22 * A wrapper around {@link Instrumentation} to provide sendStatus function 25 * {@link Instrumentation#sendStatus(int, Bundle)} instead. 30 private Instrumentation mInstrumentation; 32 InstrumentationAutomationSupport(Instrumentation instrumentation) { 33 mInstrumentation = instrumentation;
|
/frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/ |
Utils.java | 16 import android.app.Instrumentation; 43 private static UiObject2 waitForActivity(Instrumentation instrumentation, BySelector selector) { 44 UiDevice device = UiDevice.getInstance(instrumentation); 57 public static UiObject2 waitForElementLayout(Instrumentation instrumentation) { 58 return waitForActivity(instrumentation, ROOT_ELEMENT_LAYOUT); 64 public static UiObject2 startElementLayout(Instrumentation instrumentation, int numElements) { 69 instrumentation.getTargetContext().startActivity(intent) [all...] |
/art/test/572-checker-array-get-regression/ |
info.txt | 2 instrumentation of array loads with a large constant index, where we
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
AutoCompleteTextViewCallbacks.java | 19 import android.app.Instrumentation; 39 final Instrumentation instrumentation = getInstrumentation(); local 43 instrumentation.waitForIdleSync(); 45 instrumentation.waitForIdleSync(); 64 final Instrumentation instrumentation = getInstrumentation(); local 68 instrumentation.waitForIdleSync(); 79 instrumentation.waitForIdleSync(); 97 instrumentation.waitForIdleSync(); 113 final Instrumentation instrumentation = getInstrumentation(); local [all...] |
AutoCompleteTextViewPopup.java | 19 import android.app.Instrumentation; 48 final Instrumentation instrumentation = getInstrumentation(); local 52 instrumentation.waitForIdleSync(); 64 instrumentation.waitForIdleSync(); 80 final Instrumentation instrumentation = getInstrumentation(); local 84 instrumentation.waitForIdleSync(); 107 final Instrumentation instrumentation = getInstrumentation() local 140 final Instrumentation instrumentation = getInstrumentation(); local 174 final Instrumentation instrumentation = getInstrumentation(); local [all...] |
/frameworks/base/core/java/android/test/ |
InstrumentationTestSuite.java | 19 import android.app.Instrumentation; 26 * A {@link junit.framework.TestSuite} that injects {@link android.app.Instrumentation} into 37 private final Instrumentation mInstrumentation; 40 * @param instr The instrumentation that will be injected into each 43 public InstrumentationTestSuite(Instrumentation instr) { 48 public InstrumentationTestSuite(String name, Instrumentation instr) { 55 * @param instr The instrumentation to inject into each test before 58 public InstrumentationTestSuite(final Class theClass, Instrumentation instr) {
|
/packages/apps/Music/tests/ |
AndroidManifest.xml | 24 <instrumentation android:name="com.android.music.tests.MusicPlayerLaunchPerformance" 27 </instrumentation> 29 <instrumentation android:name="com.android.music.tests.MusicPlayerFunctionalTestRunner" 32 </instrumentation> 34 <instrumentation android:name="com.android.music.tests.MusicPlayerStressTestRunner" 37 </instrumentation>
|
/cts/tests/tests/media/src/android/media/cts/ |
Utils.java | 19 import android.app.Instrumentation; 33 Instrumentation instrumentation) { 34 setAppOps(packageName, operation, instrumentation, true); 38 Instrumentation instrumentation) { 39 setAppOps(packageName, operation, instrumentation, false); 49 Instrumentation instrumentation, boolean enable) { 56 instrumentation.getUiAutomation().executeShellCommand(cmd.toString()) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ToolbarTest.java | 19 import android.app.Instrumentation; 70 final Instrumentation instrumentation = getInstrumentation(); local 72 ViewTestUtils.runOnMainAndDrawSync(instrumentation, mMainToolbar, 76 ViewTestUtils.runOnMainAndDrawSync(instrumentation, mMainToolbar, 80 ViewTestUtils.runOnMainAndDrawSync(instrumentation, mMainToolbar, 84 ViewTestUtils.runOnMainAndDrawSync(instrumentation, mMainToolbar, 90 final Instrumentation instrumentation = getInstrumentation(); local 92 ViewTestUtils.runOnMainAndDrawSync(instrumentation, mMainToolbar 142 final Instrumentation instrumentation = getInstrumentation(); local 173 final Instrumentation instrumentation = getInstrumentation(); local 191 final Instrumentation instrumentation = getInstrumentation(); local 223 final Instrumentation instrumentation = getInstrumentation(); local 240 final Instrumentation instrumentation = getInstrumentation(); local 277 final Instrumentation instrumentation = getInstrumentation(); local 306 final Instrumentation instrumentation = getInstrumentation(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
InstrumentationRunnerValidator.java | 22 import com.android.ide.common.xml.ManifestData.Instrumentation; 34 * Provides validation for Android instrumentation test runner 82 Instrumentation[] instrumentations = manifestData.getInstrumentations(); 107 * Return the set of instrumentation names for the Android project. 109 * @return array of instrumentation class names, possibly empty 117 * Helper method to get the first instrumentation that can be used as a test runner. 119 * @return fully qualified instrumentation class name. <code>null</code> if no valid 120 * instrumentation can be found. 124 for (String instrumentation : getInstrumentationNames()) { 125 if (validateInstrumentationRunner(instrumentation) == INSTRUMENTATION_OK) [all...] |
/cts/hostsidetests/appsecurity/test-apps/InstrumentationAppDiffCert/ |
AndroidManifest.xml | 20 A simple app to test that an instrumentation cannot target an app signed with a different 29 <instrumentation android:name="android.app.Instrumentation" 31 android:label="Instrumentation that targets app with different cert" /> 34 A self-instrumenting test runner, that will try to start the above instrumentation and 37 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner" 39 android:label="Test for instrumentation with different cert" />
|
/packages/apps/Camera2/tests_camera/ |
AndroidManifest.xml | 26 <instrumentation android:name="com.android.camera.CameraLaunchPerformance" 29 </instrumentation> 31 <instrumentation android:name="com.android.camera.stress.CameraStressTestRunner" 34 </instrumentation> 36 <instrumentation android:name="com.android.camera.CameraTestRunner" 39 </instrumentation> 41 <instrumentation android:name="android.test.InstrumentationTestRunner"
|