Searched refs:ostr (Results 1 - 25 of 27) sorted by relevance

12

/external/openfst/src/include/fst/
H A Dicu.h75 ostringstream ostr; local
82 ostr << static_cast<char>(code);
84 ostr << static_cast<char>((code >> 6) | 0xc0);
85 ostr << static_cast<char>((code & 0x3f) | 0x80);
87 ostr << static_cast<char>((code >> 12) | 0xe0);
88 ostr << static_cast<char>(((code >> 6) & 0x3f) | 0x80);
89 ostr << static_cast<char>((code & 0x3f) | 0x80);
91 ostr << static_cast<char>((code >> 18) | 0xf0);
92 ostr << static_cast<char>(((code >> 12) & 0x3f) | 0x80);
93 ostr << static_cas
[all...]
/external/openssl/crypto/asn1/
H A Dasn_moid.c115 char *ln, *ostr, *p, *lntmp; local
120 ostr = value;
125 ostr = p + 1;
126 if (!*ostr)
128 while(isspace((unsigned char)*ostr)) ostr++;
131 nid = OBJ_create(ostr, name, ln);
/external/libpcap/Win32/Src/
H A Dgetopt.c57 getopt(nargc, nargv, ostr)
60 const char *ostr;
83 !(oli = strchr(ostr, optopt))) {
92 if (opterr && *ostr != ':')
107 if (*ostr == ':')
/external/tcpdump/win32/Src/
H A Dgetopt.c57 getopt(nargc, nargv, ostr)
60 const char *ostr;
79 !(oli = strchr(ostr, optopt))) {
88 if (opterr && *ostr != ':')
103 if (*ostr == ':')
/external/qemu/include/qemu/
H A Dsockets.h13 int inet_listen(const char *str, char *ostr, int olen,
21 int unix_listen(const char *path, char *ostr, int olen);
/external/stlport/test/unit/
H A Dnum_put_get_test.cpp68 static string reset_stream(ostringstream &ostr) argument
70 string tmp = ostr.str();
71 ostr.str("");
403 ostringstream ostr; local
404 ostr << 1.23457e+17f;
405 CPPUNIT_ASSERT(ostr.good());
406 output = reset_stream(ostr);
413 ostringstream ostr; local
414 ostr << setprecision(200) << 1.23457e+17f;
415 CPPUNIT_ASSERT(ostr
421 ostringstream ostr; local
429 ostringstream ostr; local
439 ostringstream ostr; local
449 ostringstream ostr; local
459 ostringstream ostr; local
469 ostringstream ostr; local
477 ostringstream ostr; local
485 ostringstream ostr; local
493 ostringstream ostr; local
501 ostringstream ostr; local
512 ostringstream ostr; local
523 ostringstream ostr; local
530 ostringstream ostr; local
538 ostringstream ostr; local
547 ostringstream ostr; local
[all...]
H A Dmoney_facets_test.cpp65 ostringstream ostr; local
66 ostr.imbue(streamLoc);
67 ostr << showbase;
77 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, true, ostr, ' ', 123456);
80 str_res = ostr.str();
176 ostr.str( "" );
177 ostr.clear();
178 fmg.get(istr, istreambuf_iterator<char, char_traits<char> >(), true, ostr, err, digits);
184 ostr
285 ostringstream ostr; local
[all...]
H A Drope_test.cpp64 ostringstream ostr; local
65 ostr << rstr;
67 CPPUNIT_ASSERT( ostr );
68 CPPUNIT_ASSERT( ostr.str() == cstr );
H A Dtime_facets_test.cpp33 ostringstream ostr; local
34 ostr.imbue(loc);
37 time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + format.size());
54 istringstream istr( ostr.str() );
115 wostringstream ostr; local
116 ostr.imbue(loc);
119 time_put_facet::iter_type ret = tmp.put(ostr, ostr, ' ', &xmas, format.data(), format.data() + format.size());
137 wistringstream istr( ostr
[all...]
H A Dsstream_test.cpp349 ostringstream ostr; local
350 ostr << in.rdbuf();
351 CPPUNIT_ASSERT( ostr );
353 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
377 ostringstream ostr; local
378 ostr << in.rdbuf();
379 CPPUNIT_ASSERT( ostr );
381 CPPUNIT_ASSERT( ostr.str() == "01234567890123456789" );
H A Dlocale_test.cpp283 ostringstream ostr; local
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
285 CPPUNIT_MESSAGE( ostr.str().c_str() );
H A Dfstream_test.cpp536 ostringstream ostr; local
537 ostr << in.rdbuf();
538 CPPUNIT_ASSERT( ostr );
540 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
564 ostringstream ostr; local
565 ostr << in.rdbuf();
566 CPPUNIT_ASSERT( ostr );
568 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
H A Dcodecvt_test.cpp295 ofstream ostr(fileName);
297 CPPUNIT_ASSERT( ostr.good() );
299 ostr << "0123456789";
301 CPPUNIT_ASSERT( ostr.good() );
H A Dstring_test.cpp246 ostringstream ostr;
247 ostr << "Duration: " << duration << endl;
248 CPPUNIT_MESSAGE(ostr.str().c_str());
1277 ostringstream ostr; local
1278 ostr << str;
1279 CPPUNIT_ASSERT( ostr.good() );
1280 CPPUNIT_ASSERT( ostr.str() == str );
/external/bison/examples/calc++/
H A Dlocation.hh154 ** \param ostr the destination output stream
161 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc) argument
164 ostr << loc.begin;
168 ostr << '-' << last;
170 ostr << '-' << last.line << '.' << last.column;
172 ostr << '-' << last.column;
173 return ostr;
H A Dposition.hh156 ** \param ostr the destination output stream
161 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos) argument
164 ostr << *pos.filename << ':';
165 return ostr << pos.line << '.' << pos.column;
/external/bison/data/
H A Dlocation.cc136 ** \param ostr the destination output stream
141 operator<< (std::basic_ostream<YYChar>& ostr, const position& pos)
144 ostr << *pos.filename << ':';
145 return ostr << pos.line << '.' << pos.column;
274 ** \param ostr the destination output stream
281 operator<< (std::basic_ostream<YYChar>& ostr, const location& loc)
284 ostr << loc.begin;
288 ostr << '-' << last;
290 ostr << '-' << last.line << '.' << last.column;
292 ostr << '
[all...]
/external/openfst/src/include/fst/script/
H A Dfst-class.h56 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0;
121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { argument
122 return impl_->Write(ostr, opts);
210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { argument
211 return impl_->Write(ostr, opts);
309 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { argument
310 return GetImpl()->Write(ostr, opts);
/external/qemu/util/
H A Dqemu-sockets-android.c443 int inet_listen(const char *str, char *ostr, int olen, argument
453 if (sock != -1 && ostr) {
456 snprintf(ostr, olen, "[%s]:%s%s",
461 snprintf(ostr, olen, "%s:%s%s",
555 int unix_listen(const char *str, char *ostr, int olen) argument
578 if (sock != -1 && ostr)
579 snprintf(ostr, olen, "%s%s", qemu_opt_get(opts, "path"), optstr ? optstr : "");
610 int unix_listen(const char *path, char *ostr, int olen) argument
H A Dqemu-sockets.c498 int inet_listen(const char *str, char *ostr, int olen, argument
508 if (sock != -1 && ostr) {
511 snprintf(ostr, olen, "[%s]:%s%s",
516 snprintf(ostr, olen, "%s:%s%s",
622 int unix_listen(const char *str, char *ostr, int olen) argument
645 if (sock != -1 && ostr)
646 snprintf(ostr, olen, "%s%s", qemu_opt_get(opts, "path"), optstr ? optstr : "");
679 int unix_listen(const char *path, char *ostr, int olen) argument
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp122 llvm::raw_string_ostream ostr(intermediate);
123 Output yout(ostr);
268 llvm::raw_string_ostream ostr(intermediate);
269 Output yout(ostr);
383 llvm::raw_string_ostream ostr(intermediate);
384 Output yout(ostr);
578 llvm::raw_string_ostream ostr(intermediate);
579 Output yout(ostr);
669 llvm::raw_string_ostream ostr(intermediate);
670 Output yout(ostr);
[all...]
/external/openfst/src/test/
H A Dfst_test.h241 ofstream ostr(aligned.c_str());
245 CHECK(fst.Write(ostr, opts));
260 ofstream ostr(aligned.c_str());
264 CHECK(fst.Write(ostr, opts));
/external/chromium_org/base/
H A Dlogging_unittest.cc248 std::ostringstream ostr; local
249 ostr << wstr;
250 EXPECT_EQ("Hello World", ostr.str());
/external/fio/crc/
H A Dtest.c321 char *ostr, *str = strdup(type); local
326 ostr = str;
337 free(ostr);
/external/fio/
H A Dinit.c1664 char *ostr = cmd_optstr; local
1669 ostr[c++] = l_opts[i].val;
1671 ostr[c++] = ':';
1673 ostr[c++] = ':';
1674 ostr[c++] = ':';
1678 ostr[c] = '\0';
1707 char *ostr = cmd_optstr; local
1718 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {

Completed in 3321 milliseconds

12