/external/chromium_org/chrome/android/host_driven_tests/ |
DummyTest.py | 11 from pylib.host_driven import test_case namespace 15 class DummyTest(test_case.HostDrivenTestCase):
|
SyncTest.py | 9 from pylib.host_driven import test_case namespace 14 class SyncTest(test_case.HostDrivenTestCase):
|
/external/chromium_org/build/android/pylib/linker/ |
setup.py | 11 import test_case namespace 28 test_case.LinkerLibraryAddressTest, 29 test_case.LinkerSharedRelroTest, 30 test_case.LinkerRandomizationTest ]
|
test_runner.py | 18 import test_case namespace 90 assert isinstance(test, test_case.LinkerTestCaseBase)
|
/external/chromium_org/chrome/browser/chromeos/net/ |
onc_utils_unittest.cc | 31 base::DictionaryValue* test_case; local 32 (*it)->GetAsDictionary(&test_case); 35 test_case->GetDictionary("ONC_ProxySettings", &onc_proxy_settings); 38 test_case->GetDictionary("ProxyConfig", &expected_proxy_config);
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_regexes_unittest.cc | 36 const TestCase& test_case = kPositiveCases[i]; local 37 SCOPED_TRACE(test_case.input); 38 SCOPED_TRACE(test_case.pattern); 39 EXPECT_TRUE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input), 40 ASCIIToUTF16(test_case.pattern))); 56 const TestCase& test_case = kNegativeCases[i]; local 57 SCOPED_TRACE(test_case.input); 58 SCOPED_TRACE(test_case.pattern); 59 EXPECT_FALSE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input), 60 ASCIIToUTF16(test_case.pattern))) [all...] |
/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/chromium_org/build/android/pylib/host_driven/ |
test_runner.py | 16 import test_case namespace 83 assert isinstance(test, test_case.HostDrivenTestCase)
|
setup.py | 12 import test_case namespace 130 issubclass(test_class, test_case.HostDrivenTestCase) and 131 test_class is not test_case.HostDrivenTestCase)
|
/external/chromium_org/net/http/ |
http_content_disposition_unittest.cc | 580 const ParseResultTestCase& test_case = kTestCases[i]; local 581 HttpContentDisposition content_disposition(test_case.header, "utf-8"); 585 << " with header " << test_case.header); 586 EXPECT_EQ(test_case.expected_flags, result);
|
/external/chromium_org/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/chromium_org/ui/base/ime/win/ |
imm32_manager_unittest.cc | 73 const InputModeTestCase& test_case = GetParam(); local 78 IMM32Manager::ConvertInputModeToImmFlags(test_case.input_mode, 79 test_case.conversion_mode, 83 EXPECT_EQ(test_case.expected_open, open); 84 EXPECT_EQ(test_case.expected_conversion_mode, conversion_mode);
|
tsf_input_scope_unittest.cc | 106 const GetInputScopesTestCase& test_case = GetParam(); local 109 test_case.input_type, test_case.input_mode); 111 EXPECT_EQ(test_case.expected_size, input_scopes.size()); 112 for (size_t i = 0; i < test_case.expected_size; ++i) 113 EXPECT_EQ(test_case.expected_input_scopes[i], input_scopes[i]);
|
/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/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...] |
/ndk/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/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...] |
/external/chromium_org/base/i18n/ |
rtl_unittest.cc | 368 string16 test_case = WideToUTF16(cases[i]); local 369 string16 adjusted_string = test_case; 374 EXPECT_NE(test_case, adjusted_string); 376 EXPECT_EQ(test_case, adjusted_string) << " for test case [" << test_case
|
/external/chromium_org/chromeos/network/onc/ |
onc_utils_unittest.cc | 116 const base::DictionaryValue* test_case = NULL; local 117 it.value().GetAsDictionary(&test_case); 120 test_case->GetList("WithCertRefs", &networks_with_cert_refs); 123 test_case->GetList("WithResolvedRefs", &expected_resolved_onc);
|
/external/chromium_org/content/browser/worker_host/test/ |
worker_browsertest.cc | 35 GURL GetTestURL(const std::string& test_case, const std::string& query) { 37 "workers", test_case.c_str()); 42 const std::string& test_case, 44 GURL url = GetTestURL(test_case, query); 52 void RunTest(const std::string& test_case, const std::string& query) { 53 RunTest(shell(), test_case, query); local
|
/external/chromium_org/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/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_token_matcher_unittest.py | 56 def test_case(self): member in class:SwitchLineProcessorTest
|
/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...] |