Home
last modified time | relevance | path

Searched refs:test_string (Results 1 – 20 of 20) sorted by relevance

/external/chromium-trace/catapult/devil/devil/utils/
Dcmd_helper_test.py29 test_string = 'hello $TEST_VAR'
30 cmd = 'TEST_VAR=world; echo %s' % cmd_helper.SingleQuote(test_string)
31 self.assertEquals(test_string,
50 test_string = 'hello $TEST_VAR'
51 cmd = 'TEST_VAR=world; echo %s' % cmd_helper.DoubleQuote(test_string)
/external/libbrillo/brillo/
Dsecure_blob_unittest.cc113 std::string test_string("Test String"); in TEST_F() local
114 SecureBlob blob = SecureBlob(test_string.begin(), test_string.end()); in TEST_F()
115 EXPECT_EQ(blob.size(), test_string.length()); in TEST_F()
117 EXPECT_EQ(test_string.compare(result_string), 0); in TEST_F()
/external/selinux/libsemanage/tests/
Dtest_utilities.c226 char *test_string = "abaababbaaaba"; in test_semanage_str_count() local
228 CU_ASSERT_EQUAL(semanage_str_count(test_string, 'z'), 0); in test_semanage_str_count()
229 CU_ASSERT_EQUAL(semanage_str_count(test_string, 'a'), 8); in test_semanage_str_count()
230 CU_ASSERT_EQUAL(semanage_str_count(test_string, 'b'), 5); in test_semanage_str_count()
/external/webrtc/webrtc/base/
Dbitbuffer_unittest.cc302 char test_string[] = "my precious"; in TEST() local
305 for (size_t i = 0; i < arraysize(test_string); ++i) { in TEST()
306 EXPECT_TRUE(buffer.WriteExponentialGolomb(test_string[i])); in TEST()
309 for (size_t i = 0; i < arraysize(test_string); ++i) { in TEST()
313 EXPECT_EQ(test_string[i], static_cast<char>(val)); in TEST()
/external/opencv3/3rdparty/jinja2/
Dtests.py75 def test_string(value): function
141 'string': test_string,
/external/autotest/client/bin/
Dfsinfo_unittest.py102 test_string = '-q -b 1234 -O fdasfa,fdasfdas -l adfas -k -L'
103 result = fsinfo.opt_string2dict(test_string)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/utils/
Dtest_utils.py304 test_string = 'Thu, 15 May 2014 09:06:03 GMT'
308 datetime.datetime.strptime(test_string, boto.utils.RFC1123)
311 result = boto.utils.parse_ts(test_string)
/external/clang/test/FixIt/
Dtypo.cpp42 bool test_string(std::string s) { in test_string() function
/external/opencv3/modules/core/test/
Dtest_io.cpp112 … string test_string = "vw wv23424rt\"&amp;&lt;&gt;&amp;&apos;@#$@$%$%&%IJUKYILFD@#$@%$&*&() "; in run() local
172 … fs << "test_int" << test_int << "test_real" << test_real << "test_string" << test_string; in run()
206 real_string != test_string ) in run()
/external/autotest/client/common_lib/
Dglobal_config_unittest.py116 def test_string(self): member in global_config_test
Dcontrol_data_unittest.py182 def test_string(self): member in SetMethodTests
/external/autotest/site_utils/
Dgenerate_test_report518 def _PrintErrorLogs(self, test, test_string): argument
537 [test_string, self._Indent(line.rstrip())])
/external/clang/test/CodeGen/
Dbuiltins-systemz-vector-error.c65 void test_string(void) { in test_string() function
Dbuiltins-systemz-vector.c392 void test_string(void) { in test_string() function
Dbuiltins-systemz-zvector.c2385 void test_string(void) { in test_string() function
/external/jsmn/
Djsmn_test.c163 int test_string() { in test_string() function
608 test(test_string, "test string JSON data types"); in main()
/external/valgrind/VEX/test/
Dtest-amd64.c1194 void test_string(void) in test_string() function
1698 test_string(); in main()
Dtest-i386.c1154 void test_string(void) in test_string() function
1658 test_string(); in main()
/external/clang/test/Analysis/
Didentical-expressions.cpp1046 const char *test_string() { in test_string() function
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/
Dtest_tree.py1152 def test_string(self): member in TestElementObjects