HomeSort by relevance Sort by last modified time
    Searched full:instrumentation (Results 276 - 300 of 2634) sorted by null

<<11121314151617181920>>

  /platform_testing/libraries/base-app-helpers/src/android/platform/test/helpers/
AbstractPlayStoreHelper.java 19 import android.app.Instrumentation;
23 public AbstractPlayStoreHelper(Instrumentation instr) {
AbstractRecentsHelper.java 19 import android.app.Instrumentation;
24 public AbstractRecentsHelper(Instrumentation instr) {
AbstractSettingsHelper.java 19 import android.app.Instrumentation;
23 public AbstractSettingsHelper(Instrumentation instr) {
  /platform_testing/tests/perf/PowerPerfTest/
AndroidManifest.xml 31 <instrumentation
35 </instrumentation>
  /platform_testing/utils/dialogs/
AndroidManifest.xml 29 <instrumentation android:name=".DismissDialogsInstrumentation"
32 </instrumentation>
  /platform_testing/utils/permissions/
AndroidManifest.xml 33 <instrumentation android:name=".PermissionInstrumentation"
36 </instrumentation>
  /sdk/testapps/libsTest/appTest/
AndroidManifest.xml 21 This declares that this app uses the instrumentation test runner targeting
25 <instrumentation
  /sdk/testapps/libsTest/lib1Test/
AndroidManifest.xml 24 This declares that this app uses the instrumentation test runner targeting
28 <instrumentation
  /sdk/testapps/libsTest/lib2Test/
AndroidManifest.xml 22 This declares that this app uses the instrumentation test runner targeting
26 <instrumentation
  /sdk/testapps/testProjectTest/testapp/
AndroidManifest.xml 19 This declares that this app uses the instrumentation test runner targeting
23 <instrumentation
  /sdk/testapps/testProjectTest/testlib/
AndroidManifest.xml 19 This declares that this app uses the instrumentation test runner targeting
23 <instrumentation
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialModule.java 76 .className(experiment.instrumentation().benchmarkMethod().getDeclaringClass().getName())
77 .methodName(experiment.instrumentation().benchmarkMethod().getName())
92 return experiment.instrumentation().getMeasurementCollectingVisitor();
98 return experiment.instrumentation().instrument().schedulingPolicy();
133 .instrumentSpec(experiment.instrumentation().instrument().getSpec())
Instrument.java 66 public abstract Instrumentation createInstrumentation(Method benchmarkMethod)
78 public abstract class Instrumentation {
81 protected Instrumentation(Method benchmarkMethod) {
97 } else if (obj instanceof Instrumentation) {
98 Instrumentation that = (Instrumentation) obj;
112 return MoreObjects.toStringHelper(Instrumentation.class)
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
TestLogParser.java 21 * \brief Test log parser for instrumentation
52 public void init (DeqpInstrumentation instrumentation, String logFileName, boolean logData) throws FileNotFoundException
54 assert instrumentation != null;
60 m_instrumentation = instrumentation;
113 private static native void nativeParse (long nativePointer, DeqpInstrumentation instrumentation, byte[] buffer, int size);
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestUtil.java 50 TestResultInstrumentation instrumentation,
56 waitForStorages(instrumentation, manager, device.getDeviceId());
59 instrumentation.show(Objects.toString(exp.getMessage()));
109 TestResultInstrumentation instrumentation,
124 instrumentation.show("Wait for storages.");
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 33 * A test that dumps data usage to instrumentation out, used for measuring data usage for idle
53 * Test that dumps all the data usage metrics for wifi to instrumentation out.
61 * Test that dumps all the data usage metrics for all mobile to instrumentation out.
71 * to instrumentation out.
90 * Print network data usage stats to instrumentation out
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
ImageCapture.java 22 import android.app.Instrumentation;
31 * Junit / Instrumentation test case for camera test
68 public void captureImages(String reportTag, Instrumentation inst) {
93 Instrumentation inst = getInstrumentation();
107 Instrumentation inst = getInstrumentation();
VideoCapture.java 23 import android.app.Instrumentation;
33 * Junit / Instrumentation test case for camera test
69 public void captureVideos(String reportTag, Instrumentation inst) throws Exception{
86 Instrumentation inst = getInstrumentation();
100 Instrumentation inst = getInstrumentation();
  /packages/apps/Camera2/tests_camera/src/com/android/camera/stress/
ImageCapture.java 22 import android.app.Instrumentation;
31 * Junit / Instrumentation test case for camera test
68 public void captureImages(String reportTag, Instrumentation inst) {
94 Instrumentation inst = getInstrumentation();
109 Instrumentation inst = getInstrumentation();
VideoCapture.java 23 import android.app.Instrumentation;
33 * Junit / Instrumentation test case for camera test
70 public void captureVideos(String reportTag, Instrumentation inst) throws Exception{
88 Instrumentation inst = getInstrumentation();
103 Instrumentation inst = getInstrumentation();
  /packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
ImageCapture.java 23 import android.app.Instrumentation;
32 * Junit / Instrumentation test case for camera test
70 public void captureImages(String reportTag, Instrumentation inst) {
96 Instrumentation inst = getInstrumentation();
111 Instrumentation inst = getInstrumentation();
VideoCapture.java 24 import android.app.Instrumentation;
34 * Junit / Instrumentation test case for camera test
72 public void captureVideos(String reportTag, Instrumentation inst) throws Exception{
90 Instrumentation inst = getInstrumentation();
105 Instrumentation inst = getInstrumentation();
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 40 + " [-j JAR_PATH] [-i INSTRUMENTATION] [-m MANIFEST_FILE] [-e EXPECTATION_FILE]"
54 String instrumentation = null; local
73 instrumentation = getArg(args, ++i, "Missing value for instrumentation");
114 runner = getElementAttribute(documentElement, "instrumentation",
116 targetNameSpace = getElementAttribute(documentElement, "instrumentation",
131 appNameSpace, appPackageName, name, runner, instrumentation, targetNameSpace,
  /packages/apps/Music/tests/src/com/android/music/functional/
TestPlaylist.java 21 import android.app.Instrumentation;
22 import android.app.Instrumentation.ActivityMonitor;
40 * Junit / Instrumentation test case for the PlaylistBrowserActivity
63 Instrumentation inst = getInstrumentation();
71 Instrumentation inst = getInstrumentation();
85 Instrumentation inst = getInstrumentation();
112 Instrumentation inst = getInstrumentation();
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
DeviceReportLog.java 19 import android.app.Instrumentation;
35 * NOTE: tests MUST call {@link #submit(Instrumentation)} if and only if the test passes in order to
256 * Closes report file and submits report to instrumentation.
258 public void submit(Instrumentation instrumentation) {
264 instrumentation.sendStatus(INST_STATUS_IN_PROGRESS, output);
268 instrumentation.sendStatus(INST_STATUS_ERROR, null);
273 * Closes report file. Static functions that do not have access to instrumentation can
274 * use this to close report logs. Summary, if present, is not reported to instrumentation, hence

Completed in 822 milliseconds

<<11121314151617181920>>