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

1 2

  /external/chromium/chrome/common/
json_value_serializer_perftest.cc 33 std::string test_case; local
34 EXPECT_TRUE(file_util::ReadFileToString(filename, &test_case));
35 test_cases_.push_back(test_case);
  /external/chromium/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/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/libvpx/libvpx/third_party/googletest/src/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/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/srtp/crypto/hash/
auth.c 87 auth_test_case_t *test_case = at->test_data; local
100 if (test_case == NULL)
104 while (test_case != NULL) {
107 if (test_case->tag_length_octets > SELF_TEST_TAG_BUF_OCTETS)
111 status = auth_type_alloc(at, &a, test_case->key_length_octets,
112 test_case->tag_length_octets);
117 status = auth_init(a, test_case->key);
124 octet_string_set_to_zero(tag, test_case->tag_length_octets);
125 status = auth_compute(a, test_case->data,
126 test_case->data_length_octets, tag)
    [all...]
  /external/chromium/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...]
gtest_unittest.cc 5103 const TestCase* const test_case = GetUnitTestImpl()-> local
    [all...]
  /external/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/libvpx/libvpx/third_party/googletest/src/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/protobuf/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(),
147 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
148 ASSERT_TRUE(test_case != NULL)
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
280 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
    [all...]
gtest_unittest.cc 5103 const TestCase* const test_case = GetUnitTestImpl()-> local
    [all...]
  /external/srtp/crypto/cipher/
cipher.c 85 const cipher_test_case_t *test_case = ct->test_data; local
100 if (test_case == NULL)
107 while (test_case != NULL) {
110 status = cipher_type_alloc(ct, &c, test_case->key_length_octets);
120 status = cipher_init(c, test_case->key, direction_encrypt);
127 if (test_case->ciphertext_length_octets > SELF_TEST_BUF_OCTETS) {
131 for (i=0; i < test_case->plaintext_length_octets; i++)
132 buffer[i] = test_case->plaintext[i];
136 test_case->plaintext_length_octets));
139 status = cipher_set_iv(c, test_case->idx)
    [all...]
  /external/srtp/crypto/test/
sha1_driver.c 72 hash_test_case_t *test_case; local
75 test_case = malloc(sizeof(hash_test_case_t));
76 if (test_case == NULL)
79 tmp_len = hex_string_to_octet_string((char *)test_case->data, hex_data, data_len*2);
83 tmp_len = hex_string_to_octet_string((char *)test_case->hash, hex_hash, hash_len*2);
87 test_case->data_len = data_len;
88 test_case->hash_len = hash_len;
91 test_case->next_test_case = list_head;
92 *list_ptr = test_case;
98 sha1_test_case_validate(const hash_test_case_t *test_case) {
491 hash_test_case_t *test_case; local
    [all...]
  /external/chromium/base/test/
test_suite.cc 102 const testing::TestCase& test_case = *instance->GetTestCase(i); local
103 for (int j = 0; j < test_case.total_test_count(); ++j) {
104 if (test_match(*test_case.GetTestInfo(j))) {
  /external/chromium/base/
time_win_unittest.cc 191 int test_case = 0; local
192 while (cases[test_case].func) {
195 cases[test_case].func();
204 printf("%s: %1.2fus per call\n", cases[test_case].description,
206 test_case++;
  /external/chromium/chrome/browser/
enumerate_modules_model_unittest_win.cc 25 ModuleEnumerator::Module test_case; member in struct:NormalizationEntryList
59 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case;
103 ModuleEnumerator::Module test_case; member in struct:MatchingEntryList
198 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case;
212 string16 test_case; member in struct:CollapsePathList
231 module.location = kCollapsePathList[i].test_case;
  /cts/tests/tests/nativeopengl/standalone/jni/
GLTestHelper.cpp 119 virtual void OnTestCaseStart(const TestCase& test_case) {
121 test_case.test_to_run_count(),
122 test_case.name());
150 virtual void OnTestCaseEnd(const TestCase& test_case) {
152 test_case.test_to_run_count(), test_case.name(),
153 test_case.elapsed_time());
168 const TestCase& test_case = *unit_test.GetTestCase(i); local
170 if (!test_case.should_run() || test_case.failed_test_count() == 0)
    [all...]
  /external/icu4c/test/letest/
gendata.cpp 133 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
149 if (testCase->getTagName().compare(test_case) == 0) {
xmlreader.cpp 146 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
167 if (testCase->getTagName().compare(test_case) == 0) {
letest.cpp 579 UnicodeString test_case = UNICODE_STRING_SIMPLE("test-case"); local
600 if (testCase->getTagName().compare(test_case) == 0) {
    [all...]
  /external/chromium/net/base/
cookie_monster_unittest.cc 2028 const TestCase *test_case = &test_cases[ci]; local
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 217 static bool TestCasePassed(const TestCase* test_case) {
218 return test_case->should_run() && test_case->Passed();
222 static bool TestCaseFailed(const TestCase* test_case) {
223 return test_case->should_run() && test_case->Failed();
226 // Returns true iff test_case contains at least one test that should
228 static bool ShouldRunTestCase(const TestCase* test_case) {
229 return test_case->should_run();
1729 const TestCase* const test_case = impl->current_test_case(); local
3097 TestCase* const test_case = local
3223 TestCase * const test_case = test_case_node->element(); local
3260 const TestCase* const test_case = test_case_node->element(); local
    [all...]
  /external/chromium/testing/gtest/src/
gtest.cc 324 static bool TestCasePassed(const TestCase* test_case) {
325 return test_case->should_run() && test_case->Passed();
329 static bool TestCaseFailed(const TestCase* test_case) {
330 return test_case->should_run() && test_case->Failed();
333 // Returns true iff test_case contains at least one test that should
335 static bool ShouldRunTestCase(const TestCase* test_case) {
336 return test_case->should_run();
1953 const TestCase* const test_case = impl->current_test_case(); local
2837 const TestCase& test_case = *unit_test.GetTestCase(i); local
4101 const std::vector<TestCase*>::const_iterator test_case = local
4390 TestCase* const test_case = test_cases_[i]; local
4433 const TestCase* const test_case = test_cases_[i]; local
    [all...]
  /external/gtest/src/
gtest.cc 324 static bool TestCasePassed(const TestCase* test_case) {
325 return test_case->should_run() && test_case->Passed();
329 static bool TestCaseFailed(const TestCase* test_case) {
330 return test_case->should_run() && test_case->Failed();
333 // Returns true iff test_case contains at least one test that should
335 static bool ShouldRunTestCase(const TestCase* test_case) {
336 return test_case->should_run();
1953 const TestCase* const test_case = impl->current_test_case(); local
2837 const TestCase& test_case = *unit_test.GetTestCase(i); local
4101 const std::vector<TestCase*>::const_iterator test_case = local
4390 TestCase* const test_case = test_cases_[i]; local
4433 const TestCase* const test_case = test_cases_[i]; local
    [all...]

Completed in 8286 milliseconds

1 2