/external/spirv-llvm/lib/SPIRV/Mangler/ |
D | Mangler.cpp | 33 MangleVisitor(SPIRversion ver, std::stringstream& s) : TypeVisitor(ver), m_stream(s), seqId(0) { in MangleVisitor() 41 m_stream << '0'; in mangleSequenceID() 50 m_stream << bstr; in mangleSequenceID() 52 m_stream << '_'; in mangleSequenceID() 59 if ((fpos = m_stream.str().find(typeStr)) != std::string::npos) { in mangleSubstitution() 76 m_stream << 'S'; in mangleSubstitution() 87 m_stream << mangledPrimitiveString(t->getPrimitive()); in visit() 92 size_t fpos = m_stream.str().size(); in visit() 107 m_stream << "P" << qualStr; in visit() 112 substitutions[m_stream.str().substr(fpos + 1)] = seqId++; in visit() [all …]
|
/external/catch2/examples/ |
D | 231-Cfg-OutputStreams.cpp | 14 std::FILE* m_stream; member in out_buff 16 out_buff(std::FILE* stream) :m_stream(stream) {} in out_buff() 21 if (putc(c, m_stream) == EOF) { in sync()
|
D | 301-Gen-MapTypeConversion.cpp | 16 std::stringstream m_stream; member in LineGenerator 19 m_stream.str("1\n2\n3\n4\n"); in LineGenerator() 30 return !!std::getline(m_stream, m_line); in next()
|
/external/deqp/framework/delibs/decpp/ |
D | deSha1.cpp | 49 deSha1Stream_init(&m_stream); in Sha1Stream() 54 deSha1Stream_process(&m_stream, size, data); in process() 60 deSha1Stream_finalize(&m_stream, &hash); in finalize()
|
D | deSha1.hpp | 59 deSha1Stream m_stream; member in de::Sha1Stream
|
/external/catch2/include/internal/ |
D | catch_interfaces_reporter.cpp | 14 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig() 17 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} in ReporterConfig() 19 std::ostream& ReporterConfig::stream() const { return *m_stream; } in stream() 47 builder.m_info.message = builder.m_stream.str(); in AssertionStats()
|
D | catch_message.h | 43 m_stream << value; 47 ReusableStringStream m_stream; member 57 m_stream << value;
|
D | catch_config.cpp | 16 m_stream( openStream() ) in Config() 52 std::ostream& Config::stream() const { return m_stream->stream(); } in stream()
|
D | catch_config.hpp | 115 std::unique_ptr<IStream const> m_stream; member in Catch::Config
|
D | catch_message.cpp | 52 m_info.message = builder.m_stream.str(); in ScopedMessage()
|
D | catch_capture.hpp | 129 …ssageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
|
D | catch_interfaces_reporter.h | 39 std::ostream* m_stream;
|
/external/deqp/framework/common/ |
D | tcuThreadUtil.hpp | 96 …uilder (const MessageBuilder& other) : m_thread(other.m_thread), m_stream(other.m_stream.str()) {} in MessageBuilder() 98 MessageBuilder& operator<< (const T& t) { m_stream << t; return *this; } in operator <<() 110 std::stringstream m_stream; member in tcu::ThreadUtil::MessageBuilder
|
D | tcuThreadUtil.cpp | 163 m_thread.pushMessage(m_stream.str()); in operator <<()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderRenderCase.hpp | 67 m_string = m_stream.str(); in str() 74 m_stream << "\t"; in operator <<() 76 m_stream << line << "\n"; in operator <<() 82 std::ostringstream m_stream; member in deqp::LineStream
|
/external/deqp/modules/glshared/ |
D | glsShaderRenderCase.hpp | 61 const char* str (void) const { m_string = m_stream.str(); return m_string.c_str(); } in str() 62 …<< (const char* line) { for (int i = 0; i < m_indent; i++) { m_stream << "\t"; } m_stream << line… in operator <<() 66 std::ostringstream m_stream; member in deqp::gls::LineStream
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.hpp | 56 const char* str (void) const { m_string = m_stream.str(); return m_string.c_str(); } in str() 57 …<< (const char* line) { for (int i = 0; i < m_indent; i++) { m_stream << "\t"; } m_stream << line… in operator <<() 61 std::ostringstream m_stream; member in vkt::sr::LineStream
|
/external/bcc/tests/cc/ |
D | catch.hpp | 1234 m_stream.oss << value; in operator <<() 1270 CopyableStream m_stream; member in Catch::ResultBuilder 1930 m_stream << value; in operator <<() 1935 std::ostringstream m_stream; member 3539 m_stream( openStream() ) in Config() 3576 virtual std::ostream& stream() const { return m_stream->stream(); } in stream() 3601 std::auto_ptr<IStream const> m_stream; member in Catch::Config 5046 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig() 5049 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} in ReporterConfig() 5051 std::ostream& stream() const { return *m_stream; } in stream() [all …]
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 2245 m_stream << value; in operator <<() 2249 ReusableStringStream m_stream; member 2259 m_stream << value; in operator <<() 2405 …ssageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \ 4741 std::unique_ptr<IStream const> m_stream; member in Catch::Config 4877 std::ostream* m_stream; member 8021 m_stream( openStream() ) in Config() 8057 std::ostream& Config::stream() const { return m_stream->stream(); } in stream() 8916 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig() 8919 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} in ReporterConfig() [all …]
|