HomeSort by relevance Sort by last modified time
    Searched refs:TestInfo (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/autotest/server/site_tests/brillo_HWRandom/
brillo_HWRandom.py 19 TestInfo = collections.namedtuple('TestInfo', 'number custom_args')
36 TestInfo(number=0, custom_args=['-p', '50']),
37 TestInfo(number=1, custom_args=['-p', '50', '-t', '50000']),
38 TestInfo(number=2, custom_args=['-p', '50', '-t', '1000']),
39 TestInfo(number=3, custom_args=['-p', '50', '-t', '5000']),
40 TestInfo(number=8, custom_args=['-p', '40']),
41 TestInfo(number=10, custom_args=[]),
42 TestInfo(number=11, custom_args=[]),
43 TestInfo(number=12, custom_args=[])
    [all...]
  /cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/test/
TestInfo.java 24 public final class TestInfo {
30 public TestInfo(final String testPackage, final String testClass, final String testMethod) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DeskClockTestsActivity.java 17 import com.android.cts.verifier.IntentDrivenTestActivity.TestInfo;
69 private static final TestInfo[] ALARM_TESTS = new TestInfo[] {
70 new TestInfo(
77 new TestInfo(
84 new TestInfo(
94 new TestInfo(
103 private static final TestInfo[] TIMER_TESTS = new TestInfo[] {
104 new TestInfo(
    [all...]
  /cts/hostsidetests/inputmethodservice/hostside/src/android/inputmethodservice/cts/hostside/
InputMethodServiceLifecycleTest.java 34 import android.inputmethodservice.cts.common.test.TestInfo;
67 final TestInfo testSwitchIme1ToIme2 = new TestInfo(DeviceTestConstants.PACKAGE,
81 final TestInfo testCreateIme1 = new TestInfo(DeviceTestConstants.PACKAGE,
89 final TestInfo testIme1IsNotCurrentIme = new TestInfo(DeviceTestConstants.PACKAGE,
99 final TestInfo testCreateIme1 = new TestInfo(DeviceTestConstants.PACKAGE,
107 final TestInfo testIme1IsNotCurrentIme = new TestInfo(DeviceTestConstants.PACKAGE
    [all...]
  /cts/hostsidetests/inputmethodservice/common/src/android/inputmethodservice/cts/common/
DeviceEventConstants.java 19 import android.inputmethodservice.cts.common.test.TestInfo;
45 * method name, for example {@link TestInfo#getTestName()}).
  /external/google-breakpad/src/testing/gtest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /external/googletest/googletest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /external/protobuf/gtest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /external/v8/testing/gtest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 44 using ::testing::TestInfo;
64 virtual void OnTestStart(const TestInfo& test_info) {
84 virtual void OnTestEnd(const TestInfo& test_info) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
sample10_unittest.cc 44 using ::testing::TestInfo;
81 virtual void OnTestStart(const TestInfo& /* test_info */) {
86 virtual void OnTestEnd(const TestInfo& /* test_info */) {
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
CameraLatencyTest.java 76 private List<TestInfo> mTestCases = new ArrayList<>();
86 static class TestInfo {
94 return String.format("TestInfo: name(%s) class(%s) metric(%s) patterns(%s)", mTestName,
104 TestInfo t = new TestInfo();
128 t = new TestInfo();
148 for (TestInfo test : mTestCases) {
157 private void executeTest(TestInfo test, ITestInvocationListener listener)
197 private void logOutputFile(TestInfo test, ITestInvocationListener listener)
228 private void parseOutputFile(TestInfo test, InputStream dataStream
    [all...]
CameraStressTest.java 80 private List<TestInfo> mTestCases = new ArrayList<>();
89 static class TestInfo {
98 return String.format("TestInfo: name(%s) class(%s) metric(%s) patterns(%s)", mTestName,
134 TestInfo t = new TestInfo();
155 t = new TestInfo();
164 t = new TestInfo();
177 for (TestInfo test : mTestCases) {
186 private void executeTest(TestInfo test, ITestInvocationListener listener)
232 private void logOutputFiles(TestInfo test, ITestInvocationListener listener
    [all...]
  /prebuilts/ndk/r11/sources/android/support/tests/minitest/
minitest.cc 10 struct TestInfo {
14 TestInfo* next;
17 TestInfo* g_test_infos;
18 TestInfo** g_test_infos_tail;
171 TestInfo* info = reinterpret_cast<TestInfo*>(::malloc(sizeof(*info)));
185 TestInfo* info = g_test_infos;
  /prebuilts/ndk/r13/sources/android/support/tests/minitest/
minitest.cc 10 struct TestInfo {
14 TestInfo* next;
17 TestInfo* g_test_infos;
18 TestInfo** g_test_infos_tail;
171 TestInfo* info = reinterpret_cast<TestInfo*>(::malloc(sizeof(*info)));
185 TestInfo* info = g_test_infos;
  /external/google-breakpad/src/testing/gtest/test/
gtest_shuffle_test_.cc 43 using ::testing::TestInfo;
87 virtual void OnTestStart(const TestInfo& test_info) {
  /external/googletest/googletest/test/
gtest_shuffle_test_.cc 43 using ::testing::TestInfo;
86 virtual void OnTestStart(const TestInfo& test_info) {

Completed in 454 milliseconds

1 2 3 4 5 6 7