Searched refs:stream (Results 1 - 25 of 32) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/error.reporting/
H A Dmake_error_code.pass.cpp20 std::error_code ec = make_error_code(std::io_errc::stream);
21 assert(ec.value() == static_cast<int>(std::io_errc::stream));
H A Dmake_error_condition.pass.cpp20 const std::error_condition ec1 = std::make_error_condition(std::io_errc::stream);
21 assert(ec1.value() == static_cast<int>(std::io_errc::stream));
/ndk/tests/device/test-gnustl-full/unit/
H A Dstrstream_buffer_read_test.cpp30 strstream stream(hello, sizeof(hello), ios_base::in);
32 stream >> cur;
/ndk/tests/device/test-stlport/unit/
H A Dstrstream_buffer_read_test.cpp30 strstream stream(hello, sizeof(hello), ios_base::in);
32 stream >> cur;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
H A Dstream_inserter.pass.cpp25 out << std::error_code(std::io_errc::stream);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.cons/
H A Ddtor.pass.cpp35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
42 assert(stream.getloc().name() == "C");
48 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
55 assert(stream.getloc().name() == "C");
61 void f3(std::ios_base::event ev, std::ios_base& stream, int index) argument
68 assert(stream.getloc().name() == "C");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
H A Dimbue.pass.cpp37 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
44 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
50 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
57 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
63 void f3(std::ios_base::event ev, std::ios_base& stream, int index) argument
70 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
H A Dimbue.pass.cpp31 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
38 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
44 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
51 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
57 void f3(std::ios_base::event ev, std::ios_base& stream, int index) argument
64 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
H A Dcopyfmt.pass.cpp34 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
43 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
49 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
58 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
64 void g1(std::ios_base::event ev, std::ios_base& stream, int index) argument
73 assert(stream.getloc().name() == LOCALE_fr_FR_UTF_8);
79 void g2(std::ios_base::event ev, std::ios_base& stream, int index) argument
88 assert(stream.getloc().name() == LOCALE_fr_FR_UTF_8);
94 void g3(std::ios_base::event ev, std::ios_base& stream, int index) argument
103 assert(stream
[all...]
H A Dmove.pass.cpp42 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
47 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
52 void g1(std::ios_base::event ev, std::ios_base& stream, int index) argument
61 void g2(std::ios_base::event ev, std::ios_base& stream, int index) argument
70 void g3(std::ios_base::event ev, std::ios_base& stream, int index) argument
H A Dswap.pass.cpp41 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
47 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
53 void g1(std::ios_base::event ev, std::ios_base& stream, int index) argument
59 void g2(std::ios_base::event ev, std::ios_base& stream, int index) argument
65 void g3(std::ios_base::event ev, std::ios_base& stream, int index) argument
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
H A Dwrap_stringstream.hpp51 wrapped_stream& stream();
66 targ.stream() << t;
74 basic_wrap_stringstream<CharT>::stream() function in class:boost::basic_wrap_stringstream
123 targ.stream() << man;
133 targ.stream() << man;
143 targ.stream() << man;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/
H A Dregister_callback.pass.cpp35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
39 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/
H A Dctor_char_pointer_error_code.pass.cpp14 // explicit failure(const char* msg, const error_code& ec = io_errc::stream);
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
37 (std::io_errc::stream))) != std::string::npos);
H A Dctor_string_error_code.pass.cpp14 // explicit failure(const string& msg, const error_code& ec = io_errc::stream);
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
37 (std::io_errc::stream))) != std::string::npos);
/ndk/sources/host-tools/ndk-stack/binutils/
H A Daddr2line.c80 usage (FILE *stream, int status)
82 fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
83 fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
84 fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
85 fprintf (stream, _(" The options are:\n\
100 list_supported_targets (program_name, stream);
102 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
79 usage(FILE *stream, int status) argument
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h162 GTEST_API_ std::string StringStreamToString(::std::stringstream* stream);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
H A Dlcast_precision.hpp155 // so assume stream precision remains the default 6 decimal digits.
168 inline void lcast_set_precision(std::ios_base& stream, T*) argument
170 stream.precision(lcast_get_precision<T>());
174 inline void lcast_set_precision(std::ios_base& stream, Source*, Target*) argument
178 stream.precision(s > t ? s : t);
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest-param-test_test.cc83 ::std::stringstream stream; local
84 stream << value;
85 return stream.str();
98 ::std::stringstream stream; local
99 stream << "(" << get<0>(value) << ", " << get<1>(value) << ")";
100 return stream.str();
105 ::std::stringstream stream; local
106 stream << "(" << get<0>(value) << ", " << get<1>(value)
108 return stream.str();
115 ::std::stringstream stream; local
[all...]
/ndk/tests/device/test-gnustl-full/unit/cppunit/
H A Dfile_reporter.h26 // CppUnit mini file(stream) reporter
52 explicit FileReporter(FILE* stream, bool doMonitor = false): argument
55 { _file = stream; }
/ndk/tests/device/test-stlport/unit/cppunit/
H A Dfile_reporter.h26 // CppUnit mini file(stream) reporter
52 explicit FileReporter(FILE* stream, bool doMonitor = false): argument
55 { _file = stream; }
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest.cc271 "This flag specifies the host name and the port number on which to stream "
1489 ::std::stringstream stream; local
1503 stream << CodePointToUtf8(unicode_code_point);
1505 return StringStreamToString(&stream);
2622 // We need to flush the stream buffers into the console before each
3025 static void OutputXmlAttribute(std::ostream* stream,
3031 static void OutputXmlCDataSection(::std::ostream* stream, const char* data);
3034 static void OutputXmlTestInfo(::std::ostream* stream,
3039 static void PrintXmlTestCase(::std::ostream* stream,
3042 // Prints an XML summary of unit_test to output stream ou
3095 std::stringstream stream; local
3220 OutputXmlCDataSection(::std::ostream* stream, const char* data) argument
3239 OutputXmlAttribute( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value) argument
3257 OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) argument
3307 PrintXmlTestCase(std::ostream* stream, const TestCase& test_case) argument
3330 PrintXmlUnitTest(std::ostream* stream, const UnitTest& unit_test) argument
[all...]
/ndk/tests/abcc/jni/device/
H A DAbcc_device.cpp192 std::ostringstream stream; local
193 stream << android_getCpuCount();
194 cmd += " -thread=" + stream.str();
/ndk/sources/host-tools/make-3.81/glob/
H A Dglob.c1220 __ptr_t stream = NULL;
1289 stream = ((flags & GLOB_ALTDIRFUNC)
1292 if (stream == NULL)
1317 ? (*pglob->gl_readdir) (stream)
1318 : readdir ((DIR *) stream));
1398 if (stream != NULL)
1401 (*pglob->gl_closedir) (stream);
1403 closedir ((DIR *) stream);
1413 (*pglob->gl_closedir) (stream);
1415 closedir ((DIR *) stream);
1219 __ptr_t stream = NULL; local
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
H A Dlexical_cast.hpp221 // selectors for choosing stream character type
1230 namespace detail // optimized stream wrapper
1707 std::istrstream stream(start, finish - start);
1709 std::istringstream stream; local
1711 std::basic_istringstream<CharT, Traits> stream; local
1713 static_cast<unlocked_but_t*>(stream.rdbuf())
1716 stream.unsetf(std::ios::skipws);
1717 lcast_set_precision(stream, static_cast<InputStreamable*>(0));
1721 return stream >> output &&
1722 stream
[all...]

Completed in 1565 milliseconds

12