/third_party/boost/libs/lexical_cast/test/ |
D | lexical_cast_stream_detection_test.cpp | 26 std::istream& operator >> (std::istream& istr, const streamable_easy&) { in operator >>() argument 27 int i; istr >> i; BOOST_CHECK_EQUAL(i, streamable_easy::value); in operator >>() 28 return istr; in operator >>() 39 operator >> (std::basic_istream<CharT>& istr, const streamable_medium&) { in operator >>() argument 40 int i; istr >> i; BOOST_CHECK_EQUAL(i, streamable_medium::value); in operator >>() 41 return istr; in operator >>() 52 operator >> (std::basic_istream<CharT, TraitsT>& istr, const streamable_hard&) { in operator >>() argument 53 int i; istr >> i; BOOST_CHECK_EQUAL(i, streamable_hard::value); in operator >>() 54 return istr; in operator >>() 63 std::basic_istream<char, TraitsT>& operator >> (std::basic_istream<char, TraitsT>& istr, const stre… in operator >>() argument [all …]
|
D | lexical_cast_iterator_range_test.cpp | 48 inline std::basic_istream<CharT>& operator >> (std::basic_istream<CharT>& istr, class_with_user_def… in operator >>() argument 50 return istr >> rhs.i; in operator >>()
|
D | lexical_cast_test.cpp | 595 IStream& operator>>(IStream& istr, foo_operators_test& foo) in operator >>() argument 597 istr >> foo.f; in operator >>() 598 return istr; in operator >>()
|
/third_party/boost/libs/proto/test/ |
D | toy_spirit2.cpp | 64 std::string::const_iterator istr = str.begin(), estr = str.end(); in string_icmp() local 65 for(; istr != estr; ++tmp, istr += 2) in string_icmp() 66 if(tmp == end || (*tmp != *istr && *tmp != *(istr+1))) in string_icmp() 133 struct istr struct 135 istr(char const *sz) in istr() function 204 , when< NTBSLiteral, if_<_icase, istr(_value), char const*(_value)> > 352 bool operator ()(istr const &s) const in operator ()()
|
D | toy_spirit.cpp | 113 std::string::const_iterator istr = str.begin(), estr = str.end(); in string_icmp() local 114 for(; istr != estr; ++tmp, istr += 2) in string_icmp() 115 if(tmp == end || (*tmp != *istr && *tmp != *(istr+1))) in string_icmp()
|
/third_party/popt/src/ |
D | poptint.c | 69 strdup_locale_from_utf8 (char * istr) in strdup_locale_from_utf8() argument 75 if (istr == NULL) in strdup_locale_from_utf8() 86 size_t db = strlen(istr); in strdup_locale_from_utf8() 88 char * pin = istr; in strdup_locale_from_utf8() 131 ostr = xstrdup(istr); in strdup_locale_from_utf8()
|
/third_party/gstreamer/gstplugins_bad/ext/openexr/ |
D | gstopenexrdec.cpp | 340 MemIStream *istr; in gst_openexr_dec_handle_frame() local 343 istr = in gst_openexr_dec_handle_frame() 356 file = new RgbaInputFile (*istr); in gst_openexr_dec_handle_frame() 359 delete istr; in gst_openexr_dec_handle_frame() 370 delete istr; in gst_openexr_dec_handle_frame() 382 delete istr; in gst_openexr_dec_handle_frame() 394 delete istr; in gst_openexr_dec_handle_frame() 415 delete istr; in gst_openexr_dec_handle_frame() 445 delete istr; in gst_openexr_dec_handle_frame()
|
/third_party/glib/gio/tests/ |
D | autoptr.c | 9 g_autofree gchar *istr = g_inet_address_to_string (a); in test_autoptr() local 12 g_assert_cmpstr (istr, ==, "127.0.0.1"); in test_autoptr()
|
/third_party/boost/libs/test/example/ |
D | unit_test_example_12.cpp | 112 friend std::istream& operator>>( std::istream& istr, hash_function_test_data& test_data ) in operator >>() argument 114 std::istream& tmp = istr >> test_data.orig_string; in operator >>() 115 return !tmp ? tmp : istr >> test_data.exp_value; in operator >>()
|
/third_party/boost/libs/test/doc/examples/ |
D | runtime-configuration_4.run-fail.cpp | 73 std::istringstream istr(m_current_line); in operator *() local 74 istr >> a >> b; in operator *()
|
/third_party/boost/libs/flyweight/example/ |
D | serialization.cpp | 120 std::istringstream istr(str); in main() local 122 istr>>option; in main()
|
D | perf.cpp | 293 std::istringstream istr(str); in main() local 294 istr>>option; in main()
|
/third_party/boost/libs/process/test/ |
D | async.cpp | 292 std::istream istr(&buf); variable 295 std::getline(istr, line); 335 std::istream istr(&buf); variable 338 std::getline(istr, line);
|
D | async_pipe.cpp | 44 std::istream istr(&buf); variable 45 BOOST_CHECK(std::getline(istr, line));
|
/third_party/libsnd/src/ |
D | common.c | 108 char c, *strptr, istr [5], lead_char, sign_char ; in psf_log_printf() local 343 { istr [0] = d & 0xFF ; in psf_log_printf() 344 istr [1] = (d >> 8) & 0xFF ; in psf_log_printf() 345 istr [2] = (d >> 16) & 0xFF ; in psf_log_printf() 346 istr [3] = (d >> 24) & 0xFF ; in psf_log_printf() 349 { istr [3] = d & 0xFF ; in psf_log_printf() 350 istr [2] = (d >> 8) & 0xFF ; in psf_log_printf() 351 istr [1] = (d >> 16) & 0xFF ; in psf_log_printf() 352 istr [0] = (d >> 24) & 0xFF ; in psf_log_printf() 354 istr [4] = 0 ; in psf_log_printf() [all …]
|
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
D | cpuinfo.c | 33 char *istr = NULL, *valstr = NULL, *saveptr = NULL; in get_cpu_baseinfo() local 61 istr = strtok_r(buf, "\t", &saveptr); in get_cpu_baseinfo() 67 if (!strcmp(istr, "processor")) { in get_cpu_baseinfo()
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | lb.txt | 48 AT{"Éisträich"}
|
/third_party/icu/icu4c/source/data/region/ |
D | lb.txt | 48 AT{"Éisträich"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/region/ |
D | lb.txt | 47 AT{"Éisträich"}
|
/third_party/skia/third_party/externals/icu/source/data/curr/ |
D | lb.txt | 64 "Éisträichesche Schilling", 1193 one{"Éisträichesche Schilling"} 1194 other{"Éisträichesch Schilling"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/ |
D | lb.txt | 63 "Éisträichesche Schilling", 1192 one{"Éisträichesche Schilling"} 1193 other{"Éisträichesch Schilling"}
|
/third_party/icu/icu4c/source/data/curr/ |
D | lb.txt | 64 "Éisträichesche Schilling", 1193 one{"Éisträichesche Schilling"} 1194 other{"Éisträichesch Schilling"}
|
/third_party/mksh/ |
D | var.c | 1855 record_match(const char *istr) in record_match() argument 1862 setstr(vp, istr, 0x4); in record_match()
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | lb.txt | 126 de_AT{"Éisträichescht Däitsch"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/ |
D | lb.txt | 125 de_AT{"Éisträichescht Däitsch"}
|