HomeSort by relevance Sort by last modified time
    Searched defs:test_case (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /frameworks/rs/tests/lldb/tests/testcases/
test_allocation_dump_2_cpp.py 29 def test_case(self): member in class:TestAllocationDump2Cpp
test_allocation_dump_2_jni.py 29 def test_case(self): member in class:TestAllocationDump2JNI
  /external/ltp/testcases/kernel/syscalls/clock_getres/
clock_getres01.c 37 static struct test_case { struct
  /external/google-breakpad/src/testing/gtest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/googletest/googletest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/ltp/testcases/kernel/syscalls/flistxattr/
flistxattr02.c 49 static struct test_case { struct
60 struct test_case *t = tc + n;
  /external/ltp/testcases/kernel/syscalls/lgetxattr/
lgetxattr02.c 49 static struct test_case { struct
61 struct test_case *tc = tcase + n;
  /external/ltp/testcases/kernel/syscalls/listxattr/
listxattr02.c 55 static struct test_case { struct
68 struct test_case *t = tc + n;
  /external/ltp/testcases/kernel/syscalls/llistxattr/
llistxattr02.c 54 static struct test_case { struct
67 struct test_case *t = tc + n;
  /external/ltp/testcases/kernel/syscalls/mq_unlink/
mq_unlink01.c 35 struct test_case { struct
42 static struct test_case tcase[] = {
86 struct test_case *tc = &tcase[i];
  /external/ltp/testcases/kernel/syscalls/removexattr/
removexattr02.c 46 static struct test_case { struct
59 static void verify_removexattr(struct test_case *tc);
84 static void verify_removexattr(struct test_case *tc)
  /external/ltp/testcases/kernel/syscalls/request_key/
request_key02.c 46 static struct test_case { struct
58 struct test_case *tc = tcases + n;
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_decode_unittest.cpp 101 const auto& test_case = test_data[i]; local
102 CFX_ByteString output = PDF_EncodeText(test_case.input);
103 ASSERT_EQ(test_case.expected_length, output.GetLength()) << "for case "
106 for (FX_STRSIZE j = 0; j < test_case.expected_length; ++j) {
107 EXPECT_EQ(test_case.expected_output[j], str_ptr[j]) << "for case " << i
  /external/protobuf/gtest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/v8/testing/gtest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/
sample9_unittest.cc 143 const TestCase& test_case = *unit_test.GetTestCase(i); local
144 for (int j = 0; j < test_case.total_test_count(); ++j) {
145 const TestInfo& test_info = *test_case.GetTestInfo(j);
  /external/ltp/testcases/kernel/syscalls/getxattr/
getxattr01.c 65 struct test_case { struct
72 struct test_case tc[] = {
  /external/ltp/testcases/kernel/syscalls/kcmp/
kcmp01.c 42 static struct test_case { struct
68 static void do_child(const struct test_case *test)
104 struct test_case *tc = &test_cases[n];
kcmp02.c 49 static struct test_case { struct
85 struct test_case *test = &test_cases[n];
  /external/ltp/testcases/kernel/syscalls/mprotect/
mprotect01.c 50 struct test_case { struct
55 void (*setupfunc) (struct test_case *self);
60 static void setup1(struct test_case *self);
61 static void setup2(struct test_case *self);
62 static void setup3(struct test_case *self);
66 struct test_case TC[] = {
121 static void setup1(struct test_case *self)
126 static void setup2(struct test_case *self)
137 static void setup3(struct test_case *self)
  /external/ltp/testcases/kernel/syscalls/sched_getattr/
sched_getattr02.c 47 static struct test_case { struct
61 static void sched_getattr_verify(const struct test_case *test);
65 static void sched_getattr_verify(const struct test_case *test)
  /external/google-breakpad/src/testing/gtest/test/
gtest-unittest-api_test.cc 76 const TestCase* test_case = unit_test.GetTestCase(i); local
77 if (0 == strcmp(test_case->name(), name))
78 return test_case;
86 static TestInfo const** const GetSortedTests(const TestCase* test_case) {
88 new const TestInfo*[test_case->total_test_count()];
90 for (int i = 0; i < test_case->total_test_count(); ++i)
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
148 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
149 ASSERT_TRUE(test_case != NULL)
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
279 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
    [all...]
  /external/googletest/googletest/test/
gtest-unittest-api_test.cc 76 const TestCase* test_case = unit_test.GetTestCase(i); local
77 if (0 == strcmp(test_case->name(), name))
78 return test_case;
86 static TestInfo const** GetSortedTests(const TestCase* test_case) {
88 new const TestInfo*[test_case->total_test_count()];
90 for (int i = 0; i < test_case->total_test_count(); ++i)
91 tests[i] = test_case->GetTestInfo(i);
93 std::sort(tests, tests + test_case->total_test_count(),
148 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
149 ASSERT_TRUE(test_case != NULL)
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
279 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
    [all...]

Completed in 950 milliseconds

1 2 3 4