Searched refs:test_case (Results 1 - 25 of 126) sorted by relevance

123456

/external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
H A Dauth.c87 const auth_test_case_t *test_case = 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
[all...]
/external/srtp/crypto/hash/
H A Dauth.c87 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
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_regexes_unittest.cc38 const TestCase& test_case = kPositiveCases[i]; local
39 SCOPED_TRACE(test_case.input);
40 SCOPED_TRACE(test_case.pattern);
41 EXPECT_TRUE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
42 ASCIIToUTF16(test_case.pattern)));
58 const TestCase& test_case = kNegativeCases[i]; local
59 SCOPED_TRACE(test_case.input);
60 SCOPED_TRACE(test_case.pattern);
61 EXPECT_FALSE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
62 ASCIIToUTF16(test_case
[all...]
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Dsha1_driver.c72 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) { argument
506 hash_test_case_t *test_case; local
[all...]
/external/srtp/crypto/test/
H A Dsha1_driver.c72 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) { argument
491 hash_test_case_t *test_case; local
[all...]
/external/chromium_org/net/android/tools/
H A Dproxy_test_cases.py287 for test_case in test_cases:
288 print ("TEST_F(ProxyConfigServiceAndroidTest, %s) {" % test_case["name"])
289 if "description" in test_case:
290 self._GenerateDescription(test_case["description"]);
291 self._GenerateConfiguration(test_case["properties"])
292 self._GenerateMappings(test_case["mappings"])
313 for test_case in test_cases:
314 if test_case.has_key("cpp-only"):
316 if "description" in test_case:
317 self._GenerateDescription(test_case["descriptio
[all...]
/external/chromium_org/chrome/android/host_driven_tests/
H A DDummyTest.py11 from pylib.host_driven import test_case namespace
15 class DummyTest(test_case.HostDrivenTestCase):
/external/chromium_org/third_party/libsrtp/srtp/crypto/cipher/
H A Dcipher.c85 const cipher_test_case_t *test_case = 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
[all...]
/external/srtp/crypto/cipher/
H A Dcipher.c85 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
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dtest_util.py367 def ExpectAllFieldsSet(test_case, message):
369 test_case.assertTrue(message.HasField('optional_int32'))
370 test_case.assertTrue(message.HasField('optional_int64'))
371 test_case.assertTrue(message.HasField('optional_uint32'))
372 test_case.assertTrue(message.HasField('optional_uint64'))
373 test_case.assertTrue(message.HasField('optional_sint32'))
374 test_case.assertTrue(message.HasField('optional_sint64'))
375 test_case.assertTrue(message.HasField('optional_fixed32'))
376 test_case.assertTrue(message.HasField('optional_fixed64'))
377 test_case
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Dtest_util.py355 def ExpectAllFieldsSet(test_case, message):
357 test_case.assertTrue(message.HasField('optional_int32'))
358 test_case.assertTrue(message.HasField('optional_int64'))
359 test_case.assertTrue(message.HasField('optional_uint32'))
360 test_case.assertTrue(message.HasField('optional_uint64'))
361 test_case.assertTrue(message.HasField('optional_sint32'))
362 test_case.assertTrue(message.HasField('optional_sint64'))
363 test_case.assertTrue(message.HasField('optional_fixed32'))
364 test_case.assertTrue(message.HasField('optional_fixed64'))
365 test_case
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest-unittest-api_test.cc76 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) { argument
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 !
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
279 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
[all...]
/external/gtest/test/
H A Dgtest-unittest-api_test.cc76 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) { argument
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 !
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
279 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
[all...]
/external/protobuf/gtest/test/
H A Dgtest-unittest-api_test.cc76 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) { argument
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 !
211 const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); local
280 const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); local
[all...]
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser_unittest.h40 const SingleLineTestData& test_case,
45 EXPECT_EQ(test_case.type, entry.type);
46 EXPECT_EQ(base::UTF8ToUTF16(test_case.filename), entry.name);
47 EXPECT_EQ(test_case.size, entry.size);
53 EXPECT_EQ(test_case.year, time_exploded.year);
54 EXPECT_EQ(test_case.month, time_exploded.month);
55 EXPECT_EQ(test_case.day_of_month, time_exploded.day_of_month);
56 EXPECT_EQ(test_case.hour, time_exploded.hour);
57 EXPECT_EQ(test_case.minute, time_exploded.minute);
39 VerifySingleLineTestCase( const SingleLineTestData& test_case, const std::vector<FtpDirectoryListingEntry>& entries) argument
/external/chromium_org/build/android/pylib/linker/
H A Dsetup.py11 from pylib.linker import test_case namespace
26 test_case.LinkerLibraryAddressTest,
27 test_case.LinkerSharedRelroTest,
28 test_case.LinkerRandomizationTest ]
/external/chromium_org/chrome/browser/chromeos/net/
H A Donc_utils_unittest.cc31 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/content/test/
H A Dfileapi_test_file_set.cc42 const FileSystemTestCaseRecord& test_case) {
43 base::FilePath path = root_path.Append(test_case.path);
44 if (test_case.is_directory) {
51 if (test_case.data_file_size) {
52 std::string content = base::RandBytesAsString(test_case.data_file_size);
53 EXPECT_LE(test_case.data_file_size, kint32max);
41 SetUpOneFileSystemTestCase(const base::FilePath& root_path, const FileSystemTestCaseRecord& test_case) argument
/external/chromium_org/chrome/test/ppapi/
H A Dppapi_test.cc152 GURL PPAPITestBase::GetTestFileUrl(const std::string& test_case) { argument
157 test_path = test_path.Append(FILE_PATH_LITERAL("test_case.html"));
165 std::string query = BuildQuery(std::string(), test_case);
170 void PPAPITestBase::RunTest(const std::string& test_case) { argument
171 GURL url = GetTestFileUrl(test_case);
175 void PPAPITestBase::RunTestViaHTTP(const std::string& test_case) { argument
184 RunTestURL(GetTestURL(http_server, test_case, std::string()));
187 void PPAPITestBase::RunTestWithSSLServer(const std::string& test_case) { argument
205 test_case,
209 void PPAPITestBase::RunTestWithWebSocketServer(const std::string& test_case) { argument
235 RunTestIfAudioOutputAvailable( const std::string& test_case) argument
240 RunTestViaHTTPIfAudioOutputAvailable( const std::string& test_case) argument
271 GetTestURL( const net::SpawnedTestServer& http_server, const std::string& test_case, const std::string& extra_params) argument
312 BuildQuery(const std::string& base, const std::string& test_case) argument
353 RunTest(const std::string& test_case) argument
359 RunTestViaHTTP(const std::string& test_case) argument
365 RunTestWithSSLServer(const std::string& test_case) argument
371 RunTestWithWebSocketServer(const std::string& test_case) argument
377 RunTestIfAudioOutputAvailable( const std::string& test_case) argument
384 RunTestViaHTTPIfAudioOutputAvailable( const std::string& test_case) argument
392 BuildQuery(const std::string& base, const std::string& test_case) argument
405 BuildQuery(const std::string& base, const std::string& test_case) argument
418 BuildQuery(const std::string& base, const std::string& test_case) argument
438 BuildQuery( const std::string& base, const std::string& test_case) argument
460 BuildQuery( const std::string& base, const std::string& test_case) argument
[all...]
H A Dppapi_test.h47 const std::string& test_case) = 0;
50 GURL GetTestFileUrl(const std::string& test_case);
51 virtual void RunTest(const std::string& test_case);
52 virtual void RunTestViaHTTP(const std::string& test_case);
53 virtual void RunTestWithSSLServer(const std::string& test_case);
54 virtual void RunTestWithWebSocketServer(const std::string& test_case);
55 virtual void RunTestIfAudioOutputAvailable(const std::string& test_case);
57 const std::string& test_case);
84 // Gets the URL of the the given |test_case| for the given HTTP test server.
87 const std::string& test_case,
[all...]
/external/chromium_org/content/test/ppapi/
H A Dppapi_test.h52 const std::string& test_case) = 0;
55 GURL GetTestFileUrl(const std::string& test_case);
56 virtual void RunTest(const std::string& test_case);
60 virtual void RunTestAndReload(const std::string& test_case);
77 const std::string& test_case) OVERRIDE;
/external/chromium_org/build/android/pylib/gtest/
H A Dtest_package.py92 test_case = test.split()[0]
93 if test_case.endswith('.'):
94 current = test_case
/external/chromium_org/ui/base/ime/win/
H A Dimm32_manager_unittest.cc73 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);
/external/chromium_org/chrome/browser/download/
H A Ddownload_item_model_unittest.cc179 const TestCase& test_case = kTestCases[i]; local
180 SetupInterruptedDownloadItem(test_case.reason);
181 EXPECT_STREQ(test_case.expected_status,
266 const TestCase& test_case = kTestCases[i]; local
267 SetupInterruptedDownloadItem(test_case.reason);
273 test_case.expected_tooltip,
339 const TestCase& test_case = kTestCases[i]; local
343 .WillRepeatedly(Return(test_case.received_bytes));
345 .WillRepeatedly(Return(test_case.total_bytes));
349 Return(test_case
411 const TestCase& test_case = kTestCases[i]; local
[all...]
/external/chromium_org/content/browser/shared_worker/
H A Dworker_browsertest.cc33 GURL GetTestURL(const std::string& test_case, const std::string& query) { argument
35 "workers", test_case.c_str());
40 const std::string& test_case,
42 GURL url = GetTestURL(test_case, query);
50 void RunTest(const std::string& test_case, const std::string& query) { argument
51 RunTest(shell(), test_case, query); local
39 RunTest(Shell* window, const std::string& test_case, const std::string& query) argument

Completed in 658 milliseconds

123456