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

1 2 3 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
plain_report_formatter.ipp 61 print_stat_value( std::ostream& ostr, counter_t v, counter_t indent, counter_t total,
65 ostr << std::setw( indent ) << ""
68 ostr << " out of " << total;
70 ostr << ' ' << res << '\n';
83 plain_report_formatter::results_report_start( std::ostream& ostr )
86 ostr << '\n';
92 plain_report_formatter::results_report_finish( std::ostream& ostr )
94 ostr.flush();
100 plain_report_formatter::test_unit_report_start( test_unit const& tu, std::ostream& ostr )
115 ostr << std::setw( m_indent ) << "
    [all...]
xml_log_formatter.ipp 52 xml_log_formatter::log_start( std::ostream& ostr, counter_t )
54 ostr << "<TestLog>";
60 xml_log_formatter::log_finish( std::ostream& ostr )
62 ostr << "</TestLog>";
68 xml_log_formatter::log_build_info( std::ostream& ostr )
70 ostr << "<BuildInfo"
83 xml_log_formatter::test_unit_start( std::ostream& ostr, test_unit const& tu )
85 ostr << "<" << tu_type_name( tu ) << " name" << attr_value() << tu.p_name.get() << ">";
91 xml_log_formatter::test_unit_finish( std::ostream& ostr, test_unit const& tu, unsigned long elapsed )
94 ostr << "<TestingTime>" << elapsed << "</TestingTime>"
    [all...]
xml_report_formatter.ipp 37 xml_report_formatter::results_report_start( std::ostream& ostr )
39 ostr << "<TestResult>";
45 xml_report_formatter::results_report_finish( std::ostream& ostr )
47 ostr << "</TestResult>";
54 xml_report_formatter::test_unit_report_start( test_unit const& tu, std::ostream& ostr )
69 ostr << '<' << ( tu.p_type == tut_case ? "TestCase" : "TestSuite" )
77 ostr << " test_cases_passed" << attr_value() << tr.p_test_cases_passed
83 ostr << '>';
89 xml_report_formatter::test_unit_report_finish( test_unit const& tu, std::ostream& ostr )
91 ostr << "</" << ( tu.p_type == tut_case ? "TestCase" : "TestSuite" ) << '>'
    [all...]
  /external/openfst/src/include/fst/
icu.h 75 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_cast<char>(((code >> 6) & 0x3f) | 0x80)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/output/
plain_report_formatter.hpp 39 void results_report_start( std::ostream& ostr );
40 void results_report_finish( std::ostream& ostr );
42 void test_unit_report_start( test_unit const&, std::ostream& ostr );
43 void test_unit_report_finish( test_unit const&, std::ostream& ostr );
45 void do_confirmation_report( test_unit const&, std::ostream& ostr );
xml_report_formatter.hpp 39 void results_report_start( std::ostream& ostr );
40 void results_report_finish( std::ostream& ostr );
42 void test_unit_report_start( test_unit const&, std::ostream& ostr );
43 void test_unit_report_finish( test_unit const&, std::ostream& ostr );
45 void do_confirmation_report( test_unit const&, std::ostream& ostr );
  /external/stlport/test/unit/
num_put_get_test.cpp 68 static string reset_stream(ostringstream &ostr)
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.good())
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...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 68 static string reset_stream(ostringstream &ostr)
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.good())
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...]
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 68 static string reset_stream(ostringstream &ostr)
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.good())
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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
custom_manip.hpp 35 explicit custom_printer( std::ostream& ostr ) : m_ostr( &ostr ) {}
51 operator<<( std::ostream& ostr, custom_manip<Uniq> const& ) { return custom_printer<custom_manip<Uniq> >( ostr ); }
lazy_ostream.hpp 40 friend std::ostream& operator<<( std::ostream& ostr, lazy_ostream const& o ) { return o( ostr ); }
46 virtual std::ostream& operator()( std::ostream& ostr ) const { return ostr; }
72 virtual std::ostream& operator()( std::ostream& ostr ) const
74 return m_prev(ostr) << m_value;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
results_reporter.hpp 45 virtual void results_report_start( std::ostream& ostr ) = 0;
46 virtual void results_report_finish( std::ostream& ostr ) = 0;
48 virtual void test_unit_report_start( test_unit const&, std::ostream& ostr ) = 0;
49 virtual void test_unit_report_finish( test_unit const&, std::ostream& ostr ) = 0;
51 virtual void do_confirmation_report( test_unit const&, std::ostream& ostr ) = 0;
  /external/qemu/
qemu_socket.h 13 int inet_listen(const char *str, char *ostr, int olen,
21 int unix_listen(const char *path, char *ostr, int olen);
  /external/openssh/openbsd-compat/
getopt.c 58 BSDgetopt(nargc, nargv, ostr)
61 const char *ostr;
67 if (ostr == NULL)
83 !(oli = strchr(ostr, BSDoptopt))) {
92 if (BSDopterr && *ostr != ':')
107 if (*ostr == ':')
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
dromaeo-object-string.html 41 var ostr = [], tmp, tmp2, num = 5000, tmpstr;
44 ostr.push( String.fromCharCode( (25 * Math.random()) + 97 ) );
46 ostr = ostr.join("");
47 ostr += ostr;
48 ostr += ostr;
54 str = new String(ostr);
  /external/bison/data/
location.cc 136 ** \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 << '-' << last.column
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
regex_compiler.h 535 _M_print(std::ostream& ostr)
540 ostr << "any-character\n";
543 ostr << "backref\n";
546 ostr << "bracket-begin\n";
549 ostr << "bracket-end\n";
552 ostr << "char-class-name \"" << _M_curValue << "\"\n";
555 ostr << "closure0\n";
558 ostr << "closure1\n";
561 ostr << "coll-elem-multi \"" << _M_curValue << "\"\n";
564 ostr << "coll-elem-single \"" << _M_curValue << "\"\n"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
regex_compiler.h 535 _M_print(std::ostream& ostr)
540 ostr << "any-character\n";
543 ostr << "backref\n";
546 ostr << "bracket-begin\n";
549 ostr << "bracket-end\n";
552 ostr << "char-class-name \"" << _M_curValue << "\"\n";
555 ostr << "closure0\n";
558 ostr << "closure1\n";
561 ostr << "coll-elem-multi \"" << _M_curValue << "\"\n";
564 ostr << "coll-elem-single \"" << _M_curValue << "\"\n"
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_nfa.tcc 40 _M_print(std::ostream& ostr) const
45 ostr << "alt next=" << _M_next << " alt=" << _M_alt;
48 ostr << "subexpr begin next=" << _M_next << " index=" << _M_subexpr;
51 ostr << "subexpr end next=" << _M_next << " index=" << _M_subexpr;
54 ostr << "match next=" << _M_next;
57 ostr << "accept next=" << _M_next;
60 ostr << "unknown next=" << _M_next;
63 return ostr;

Completed in 964 milliseconds

1 2 3 4