HomeSort by relevance Sort by last modified time
    Searched full:ostr (Results 51 - 75 of 84) sorted by null

1 23 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 317 void operator()( std::ostream& ostr, T const& t )
324 set_precision( ostr, cant_use_nl() );
326 ostr << t; // by default print the value
329 void set_precision( std::ostream& ostr, mpl::false_ )
332 ostr.precision( 2 + std::numeric_limits<T>::digits * 301/1000 );
354 void operator()( std::ostream& ostr, T const* t )
356 ostr << t;
365 void operator()( std::ostream& ostr, bool t )
367 ostr << std::boolalpha << t;
375 void operator()( std::ostream& ostr, char t )
    [all...]
  /external/openfst/src/include/fst/script/
fst-class.h 56 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0;
121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
122 return impl_->Write(ostr, opts);
210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
211 return impl_->Write(ostr, opts);
309 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const {
310 return GetImpl()->Write(ostr, opts);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
test_tools.ipp 61 print_log_value<char>::operator()( std::ostream& ostr, char t )
64 ostr << '\'' << t << '\'';
66 ostr << std::hex
78 print_log_value<unsigned char>::operator()( std::ostream& ostr, unsigned char t )
80 ostr << std::hex
93 print_log_value<char const*>::operator()( std::ostream& ostr, char const* t )
95 ostr << ( t ? t : "null string" );
101 print_log_value<wchar_t const*>::operator()( std::ostream& ostr, wchar_t const* t )
103 ostr << ( t ? t : L"null string" );
compiler_log_formatter.ipp 70 compiler_log_formatter::log_finish( std::ostream& ostr )
72 ostr.flush();
unit_test_log.ipp 429 unit_test_log_formatter::log_entry_value( std::ostream& ostr, lazy_ostream const& value )
431 log_entry_value( ostr, (wrap_stringstream().ref() << value).str() );
  /external/qemu/
qemu-sockets-android.c 443 int inet_listen(const char *str, char *ostr, int olen,
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)
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)
qemu-sockets.c 498 int inet_listen(const char *str, char *ostr, int olen,
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)
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)
  /external/stlport/test/unit/
locale_test.cpp 283 ostringstream ostr; local
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
285 CPPUNIT_MESSAGE( ostr.str().c_str() );
fstream_test.cpp 536 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" );
codecvt_test.cpp 295 ofstream ostr(fileName);
297 CPPUNIT_ASSERT( ostr.good() );
299 ostr << "0123456789";
301 CPPUNIT_ASSERT( ostr.good() );
string_test.cpp 246 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 );
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
locale_test.cpp 283 ostringstream ostr; local
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
285 CPPUNIT_MESSAGE( ostr.str().c_str() );
fstream_test.cpp 554 ostringstream ostr; local
555 ostr << in.rdbuf();
556 CPPUNIT_ASSERT( ostr );
558 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
582 ostringstream ostr; local
583 ostr << in.rdbuf();
584 CPPUNIT_ASSERT( ostr );
586 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
codecvt_test.cpp 296 ofstream ostr(fileName);
298 CPPUNIT_ASSERT( ostr.good() );
300 ostr << "0123456789";
302 CPPUNIT_ASSERT( ostr.good() );
string_test.cpp 246 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 );
    [all...]
  /ndk/tests/device/test-stlport/unit/
locale_test.cpp 283 ostringstream ostr; local
284 ostr << "combining '" << loc2.name() << "' money facets with '" << loc1.name() << "'";
285 CPPUNIT_MESSAGE( ostr.str().c_str() );
fstream_test.cpp 554 ostringstream ostr; local
555 ostr << in.rdbuf();
556 CPPUNIT_ASSERT( ostr );
558 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
582 ostringstream ostr; local
583 ostr << in.rdbuf();
584 CPPUNIT_ASSERT( ostr );
586 CPPUNIT_ASSERT( ostr.str() == "0123456789" );
codecvt_test.cpp 296 ofstream ostr(fileName);
298 CPPUNIT_ASSERT( ostr.good() );
300 ostr << "0123456789";
302 CPPUNIT_ASSERT( ostr.good() );
string_test.cpp 246 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 );
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 105 llvm::raw_string_ostream ostr(intermediate);
106 Output yout(ostr);
246 llvm::raw_string_ostream ostr(intermediate);
247 Output yout(ostr);
428 llvm::raw_string_ostream ostr(intermediate);
429 Output yout(ostr);
518 llvm::raw_string_ostream ostr(intermediate);
519 Output yout(ostr);
602 llvm::raw_string_ostream ostr(intermediate);
603 Output yout(ostr);
    [all...]
  /external/openfst/src/test/
fst_test.h 241 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/third_party/icu/source/i18n/
nfrule.cpp     [all...]
  /external/icu4c/i18n/
nfrule.cpp     [all...]
  /external/linux-tools-perf/util/
parse-events.c 836 const char *ostr; local
839 ostr = str;
855 evsel->name = calloc(str - ostr + 1, 1);
858 strncpy(evsel->name, ostr, str - ostr);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_nfa.h 230 _M_print(std::ostream& ostr) const;

Completed in 418 milliseconds

1 23 4