Home
last modified time | relevance | path

Searched refs:temp_str (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/log/src/
Dcode_conversion.cpp172 std::string temp_str; in code_convert_impl() local
173 …code_convert(str1, str1 + len, temp_str, temp_str.max_size(), std::use_facet< std::codecvt< char16… in code_convert_impl()
174 const std::size_t temp_size = temp_str.size(); in code_convert_impl()
175 …return code_convert(temp_str.c_str(), temp_str.c_str() + temp_size, str2, max_size, std::use_facet… in code_convert_impl()
197 std::string temp_str; in code_convert_impl() local
198 …code_convert(str1, str1 + len, temp_str, temp_str.max_size(), std::use_facet< std::codecvt< char32… in code_convert_impl()
199 const std::size_t temp_size = temp_str.size(); in code_convert_impl()
200 …return code_convert(temp_str.c_str(), temp_str.c_str() + temp_size, str2, max_size, std::use_facet… in code_convert_impl()
210 std::string temp_str; in code_convert_impl() local
211 …code_convert(str1, str1 + len, temp_str, temp_str.max_size(), std::use_facet< std::codecvt< char16… in code_convert_impl()
[all …]
/third_party/pulseaudio/src/tests/
Dformat-test.c39 char *temp_str, **temp_str_array; in START_TEST() local
133 fail_unless(pa_format_info_get_prop_string(f1, "format.test_string", &temp_str) == 0); in START_TEST()
134 fail_unless(pa_streq(temp_str, "foo")); in START_TEST()
135 pa_xfree(temp_str); in START_TEST()