/external/llvm-project/lldb/source/DataFormatters/ |
D | ValueObjectPrinter.cpp | 49 m_stream = s; in Init() 54 assert(m_stream && "cannot print to a NULL Stream"); in Init() 79 m_stream->Indent(); in PrintValueObject() 93 m_stream->EOL(); in PrintValueObject() 216 m_stream->Printf("%s: ", m_valobj->GetLocationAsCString()); in PrintLocationIfNeeded() 295 m_stream->PutCString(dest_stream.GetString()); in PrintDecl() 302 m_stream->Printf("(%s) ", typeName.GetData()); in PrintDecl() 304 m_stream->Printf("%s =", varName.GetData()); in PrintDecl() 306 m_stream->Printf(" ="); in PrintDecl() 405 m_stream->Printf(" <could not resolve type>"); in PrintValueAndSummaryIfNeeded() [all …]
|
/external/llvm-project/lldb/source/Host/common/ |
D | File.cpp | 259 return _fileno(m_stream); in GetDescriptor() 261 return fileno(m_stream); in GetDescriptor() 291 m_stream = llvm::sys::RetryAfterSignal(nullptr, ::fdopen, m_descriptor, in GetStream() 297 if (m_stream) { in GetStream() 304 return m_stream; in GetStream() 311 if (::fclose(m_stream) == EOF) in Close() 314 if (::fflush(m_stream) == EOF) in Close() 323 m_stream = kInvalidStream; in Close() 380 result = ::fseek(m_stream, offset, SEEK_SET); in SeekFromStart() 406 result = ::fseek(m_stream, offset, SEEK_CUR); in SeekFromCurrent() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_instruction_misc.cpp | 32 m_stream(stream), in EmitVertex() 41 return oth.m_stream == m_stream && in is_equal_to() 47 os << (m_cut ? "EMIT_CUT_VERTEX @" : "EMIT_VERTEX @") << m_stream; in do_print()
|
D | sfn_instruction_misc.h | 38 int stream() const { return m_stream;} in stream() 43 int m_stream; variable
|
D | sfn_instruction_export.cpp | 205 m_stream(stream) in StreamOutIntruction() 218 return 4 * m_stream + op; in op() 233 m_stream == oth.m_stream; in is_equal_to() 238 os << "WRITE STREAM(" << m_stream << ") " << gpr() in do_print()
|
/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/examples/ |
D | 231-Cfg-OutputStreams.cpp | 15 std::FILE* m_stream; member in out_buff 17 out_buff(std::FILE* stream):m_stream(stream) {} in out_buff() 22 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() 28 return !!std::getline(m_stream, m_line); in next()
|
/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() 61 std::ostream& Config::stream() const { return m_stream->stream(); } in stream()
|
D | catch_config.hpp | 124 std::unique_ptr<IStream const> m_stream; member in Catch::Config
|
D | catch_message.cpp | 53 m_info.message = builder.m_stream.str(); in ScopedMessage()
|
D | catch_capture.hpp | 131 …ssageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
|
/external/llvm-project/lldb/source/API/ |
D | SBReproducerPrivate.h | 43 m_stream(directory.CopyByAppendingPathComponent("sbapi.bin").GetPath(), in SBProvider() 45 m_serializer(m_stream) {} in SBProvider() 54 llvm::raw_fd_ostream m_stream; variable
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | File.h | 378 m_stream(kInvalidStream), m_options(), m_own_stream(false) {} in NativeFile() 381 : m_descriptor(kInvalidDescriptor), m_own_descriptor(false), m_stream(fh), in NativeFile() 386 m_stream(kInvalidStream), m_options(options), m_own_stream(false) {} in NativeFile() 421 bool StreamIsValid() const { return m_stream != kInvalidStream; } in StreamIsValid() 426 FILE *m_stream; variable
|
/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
|
/external/llvm-project/lldb/include/lldb/DataFormatters/ |
D | StringPrinter.h | 33 void SetStream(Stream *s) { m_stream = s; } in SetStream() 35 Stream *GetStream() const { return m_stream; } in GetStream() 79 Stream *m_stream = nullptr;
|
D | ValueObjectPrinter.h | 123 Stream *m_stream; variable
|
/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/openglcts/modules/common/ |
D | glcShaderRenderCase.hpp | 68 m_string = m_stream.str(); in str() 75 m_stream << "\t"; in operator <<() 77 m_stream << line << "\n"; in operator <<() 83 std::ostringstream m_stream; member in deqp::LineStream
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | Stream.h | 44 Stream *m_stream; variable 49 ByteDelta(Stream &s) : m_stream(&s), m_start(s.GetWrittenBytes()) {} in ByteDelta() 52 size_t operator*() const { return m_stream->GetWrittenBytes() - m_start; }
|
D | ReproducerInstrumentation.h | 594 Serializer(llvm::raw_ostream &stream = llvm::outs()) : m_stream(stream) {} 603 void SerializeAll() { m_stream.flush(); } 631 m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T)); 654 m_stream << t; 655 m_stream.write(0x0); 678 llvm::raw_ostream &m_stream;
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.hpp | 57 const char* str (void) const { m_string = m_stream.str(); return m_string.c_str(); } in str() 58 …<< (const char* line) { for (int i = 0; i < m_indent; i++) { m_stream << "\t"; } m_stream << line… in operator <<() 62 std::ostringstream m_stream; member in vkt::sr::LineStream
|