Home
last modified time | relevance | path

Searched refs:result_string (Results 1 – 10 of 10) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-api-strings.c186 char result_string[1] = { 'E' }; in main() local
190 (jerry_char_t *) result_string, in main()
191 sizeof (result_string)); in main()
193 TEST_ASSERT (result_string[0] == '3'); in main()
195 result_string[0] = 'E'; in main()
199 (jerry_char_t *) result_string, in main()
200 sizeof (result_string)); in main()
202 TEST_ASSERT (result_string[0] == '3'); in main()
/third_party/boost/libs/regex/test/regress/
Dinfo.hpp91 string_type result_string; member
130 const string_type& result_string = string_type()) in set_info() argument
141 dat.result_string = result_string; in set_info()
177 static const string_type& result_string() in result_string() function in test_info_base
179 return data().result_string; in result_string()
Dtest_icu.cpp569 string_type result_string; in test_icu() local
574result_string.assign(test_info<UChar32>::result_string().begin(), test_info<UChar32>::result_strin… in test_icu()
579 …:copy(test_info<UChar32>::result_string().begin(), test_info<UChar32>::result_string().end(), std:… in test_icu()
584 if(result != result_string) in test_icu()
602 result16.assign(u16_conv(result_string.begin()), u16_conv(result_string.end())); in test_icu()
607 …std::copy(u16_conv(result_string.begin()), u16_conv(result_string.end()), std::back_inserter(resul… in test_icu()
642 result8.assign(u8_conv(result_string.begin()), u8_conv(result_string.end())); in test_icu()
647 …std::copy(u8_conv(result_string.begin()), u8_conv(result_string.end()), std::back_inserter(result8… in test_icu()
Dtest_regex_replace.hpp30 const string_type& result_string = test_info<charT>::result_string(); in test_regex_replace() local
33 if(result != result_string) in test_regex_replace()
Dtest_mfc.cpp474 …const CStringA result_string(test_info<char>::result_string().c_str(), test_info<char>::result_str… in test_mfc()
477 if(result != result_string) in test_mfc()
513 …const CStringW result_string(test_info<wchar_t>::result_string().c_str(), test_info<wchar_t>::resu… in test_mfc()
516 if(result != result_string) in test_mfc()
/third_party/glib/tests/gobject/
Daccumulator.c73 gchar *result_string; in test_signal1_accumulator() local
76 result_string = g_strconcat (accu_string, new_string, NULL); in test_signal1_accumulator()
78 result_string = g_strdup (new_string); in test_signal1_accumulator()
80 result_string = NULL; in test_signal1_accumulator()
82 g_value_set_string_take_ownership (return_accu, result_string); in test_signal1_accumulator()
Dtestgobject.c238 gchar *result_string; in test_signal_accumulator() local
241 result_string = g_strconcat (accu_string, new_string, NULL); in test_signal_accumulator()
243 result_string = g_strdup (new_string); in test_signal_accumulator()
245 result_string = NULL; in test_signal_accumulator()
247 g_value_take_string (return_accu, result_string); in test_signal_accumulator()
/third_party/mbedtls/tests/suites/
Dtest_suite_ctr_drbg.function140 data_t * result_string )
146 result_string );
154 data_t * result_string )
160 result_string );
168 data_t * add2, data_t * result_string )
173 result_string );
181 data_t * add2, data_t * result_string )
186 result_string );
/third_party/node/test/fixtures/wpt/encoding/resources/
Dencode-form-common.js121 var result_string = query.substr(query.indexOf("=") + 1);
122 var results = result_string.split(encodedSeparator);
/third_party/python/Lib/test/
Dtest_argparse.py4774 def assertStringEqual(self, obj, result_string): argument
4776 self.assertEqual(func(obj), result_string)