Searched refs:ostream (Results 1 - 25 of 829) sorted by relevance

1234567891011>>

/external/libchrome/base/strings/
H A Dnullable_string16.cc7 #include <ostream>
13 std::ostream& operator<<(std::ostream& out, const NullableString16& value) {
/external/pcre/pcrecpp/
H A Dpcre_stringpiece.cc37 std::ostream& operator<<(std::ostream& o, const pcrecpp::StringPiece& piece) {
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkStrUtil.inl122 inline std::ostream& operator<< (std::ostream& s, VkPipelineCacheHeaderVersion value) { return s << getPipelineCacheHeaderVersionStr(value); }
123 inline std::ostream& operator<< (std::ostream& s, VkResult value) { return s << getResultStr(value); }
124 inline std::ostream& operator<< (std::ostream& s, VkStructureType value) { return s << getStructureTypeStr(value); }
125 inline std::ostream& operator<< (std::ostream& s, VkSystemAllocationScope value) { return s << getSystemAllocationScopeStr(value); }
126 inline std::ostream& operator<< (std::ostream
[all...]
H A DvkStrUtil.hpp38 inline std::ostream& operator<< (std::ostream& s, const Handle<Type>& handle)
H A DvkSpirVAsm.hpp29 #include <ostream>
38 void disassembleSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* dst, SpirvVersion spirvVersion);
41 bool validateSpirV (size_t binarySizeInWords, const deUint32* binary, std::ostream* infoLog, SpirvVersion spirvVersion);
H A DvkStrUtil.cpp36 std::ostream& operator<< (std::ostream& str, const CharPtr& ptr)
/external/libcxx/test/libcxx/input.output/iostream.format/output.streams/
H A Dversion.pass.cpp10 // <ostream>
12 #include <ostream>
H A Dtraits_mismatch.fail.cpp10 // <ostream>
17 #include <ostream>
/external/libtextclassifier/
H A Dtypes-test-util.h20 #include <ostream>
27 inline std::ostream& operator<<(std::ostream& stream, const Token& value) {
33 inline std::ostream& operator<<(std::ostream& stream,
40 inline std::ostream& operator<<(std::ostream& stream,
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream_sentry/
H A Ddestruct.pass.cpp10 // <ostream>
17 #include <ostream>
42 std::ostream os((std::streambuf*)0);
43 std::ostream::sentry s(os);
49 std::ostream os(&sb);
50 std::ostream::sentry s(os);
56 std::ostream os(&sb);
57 std::ostream::sentry s(os);
65 std::ostream os(&sb);
68 std::ostream
[all...]
H A Dconstruct.pass.cpp10 // <ostream>
17 #include <ostream>
40 std::ostream os((std::streambuf*)0);
41 std::ostream::sentry s(os);
46 std::ostream os(&sb);
47 std::ostream::sentry s(os);
52 std::ostream os(&sb);
54 std::ostream os2(&sb2);
57 std::ostream::sentry s(os);
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
H A Dtie_ostream.pass.cpp22 std::ostream* os = (std::ostream*)1;
23 std::ostream* r = ios.tie(os);
/external/parameter-framework/upstream/xmlserializer/
H A DXmlStreamDocSink.h32 #include <ostream>
45 * @param[out] output a reference to a ostream that will be filled by the doProcess method
47 CXmlStreamDocSink(std::ostream &output);
61 * Result ostream containing the XML informations
63 std::ostream &_output;
/external/deqp/executor/
H A DxeTestLogWriter.hpp30 #include <ostream>
40 void writeTestLog (const BatchResult& batchResult, std::ostream& stream);
44 void writeTestResult (const TestCaseResult& result, std::ostream& stream);
/external/deqp/framework/egl/
H A DegluStrUtil.hpp72 std::ostream& operator<< (std::ostream& str, const ConfigAttribValueFmt& attribFmt);
75 std::ostream& operator<< (std::ostream& str, const SurfaceAttribValueFmt& attribFmt);
78 std::ostream& operator<< (std::ostream& str, const ContextAttribValueFmt& attribFmt);
81 std::ostream& operator<< (std::ostream& str, const ConfigAttribListFmt& fmt);
84 std::ostream& operator<< (std::ostream
[all...]
/external/deqp/framework/opengl/
H A DgluStrUtil.hpp73 std::ostream& operator<< (std::ostream& str, const TextureUnitStr& unitStr);
74 std::ostream& operator<< (std::ostream& str, const TextureParameterValueStr& valueStr);
75 std::ostream& operator<< (std::ostream& str, const BooleanPointerFmt& fmt);
76 std::ostream& operator<< (std::ostream& str, const EnumPointerFmt& fmt);
94 std::ostream& operator<< (std::ostream
[all...]
/external/v8/src/compiler/
H A Dopcodes.cc8 #include <ostream>
34 std::ostream& operator<<(std::ostream& os, IrOpcode::Value opcode) {
/external/v8/src/
H A Dostreams.h11 #include <ostream> // NOLINT
37 class V8_EXPORT_PRIVATE OFStream : public std::ostream {
80 std::ostream& operator<<(std::ostream& os, const AsReversiblyEscapedUC16& c);
83 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os,
88 std::ostream& operator<<(std::ostream& os, const AsUC16& c);
92 std::ostream& operator<<(std::ostream
[all...]
/external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/
H A Dtypes.pass.cpp22 static_assert((std::is_base_of<std::ostream, std::ostrstream>::value), "");
/external/icu/icu4c/source/io/unicode/
H A Dustream.h42 * Write the contents of a UnicodeString to a C++ ostream. This functions writes
43 * the characters in a UnicodeString to an ostream. The UChars in the
44 * UnicodeString are converted to the char based ostream with the default
48 U_IO_API std::ostream & U_EXPORT2 operator<<(std::ostream& stream, const UnicodeString& s);
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.unformatted/
H A Dflush.pass.cpp10 // <ostream>
17 #include <ostream>
46 std::ostream os(&sb);
/external/llvm/include/llvm/Support/
H A Draw_os_ostream.h1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Draw_os_ostream.h1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A Draw_os_ostream.h1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
26 std::ostream &OS;
36 raw_os_ostream(std::ostream &O) : OS(O) {}
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dversioned_computation_handle.cc26 std::ostream& operator<<(std::ostream& out,

Completed in 792 milliseconds

1234567891011>>