Searched refs:Stream (Results 1 - 25 of 670) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDiagnosticPrinter.cpp23 Stream << C;
28 Stream << C;
33 Stream << C;
38 Stream << Str;
43 Stream << Str;
49 Stream << Str;
54 Stream << N;
58 Stream << N;
64 Stream << N;
69 Stream <<
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DUserID.cpp10 #include "lldb/Utility/Stream.h"
17 Stream &lldb_private::operator<<(Stream &strm, const UserID &uid) {
H A DStream.cpp1 //===-- Stream.cpp ----------------------------------------------*- C++ -*-===//
9 #include "lldb/Utility/Stream.h"
25 Stream::Stream(uint32_t flags, uint32_t addr_size, ByteOrder byte_order) function in class:Stream
29 Stream::Stream() function in class:Stream
34 Stream::~Stream() {}
36 ByteOrder Stream::SetByteOrder(ByteOrder byte_order) {
43 void Stream
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.h15 #include "lldb/Utility/Stream.h"
19 bool Char8StringSummaryProvider(ValueObject &valobj, Stream &stream,
23 ValueObject &valobj, Stream &stream,
27 ValueObject &valobj, Stream &stream,
30 bool WCharStringSummaryProvider(ValueObject &valobj, Stream &stream,
33 bool Char8SummaryProvider(ValueObject &valobj, Stream &stream,
37 ValueObject &valobj, Stream &stream,
40 bool Char32SummaryProvider(ValueObject &valobj, Stream &stream,
43 bool WCharSummaryProvider(ValueObject &valobj, Stream &stream,
H A DBlockPointer.h16 bool BlockPointerSummaryProvider(ValueObject &, Stream &,
H A DLibCxxVariant.h16 #include "lldb/Utility/Stream.h"
21 ValueObject &valobj, Stream &stream,
H A DLibStdcpp.h15 #include "lldb/Utility/Stream.h"
20 ValueObject &valobj, Stream &stream,
24 ValueObject &valobj, Stream &stream,
28 ValueObject &valobj, Stream &stream,
33 ValueObject &valobj, Stream &stream,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCF.h14 #include "lldb/Utility/Stream.h"
18 bool CFBagSummaryProvider(ValueObject &valobj, Stream &stream,
21 bool CFBinaryHeapSummaryProvider(ValueObject &valobj, Stream &stream,
24 bool CFBitVectorSummaryProvider(ValueObject &valobj, Stream &stream,
27 bool CFAbsoluteTimeSummaryProvider(ValueObject &valobj, Stream &stream,
H A DCocoa.h16 #include "lldb/Utility/Stream.h"
22 bool NSIndexSetSummaryProvider(ValueObject &valobj, Stream &stream,
25 bool NSArraySummaryProvider(ValueObject &valobj, Stream &stream,
29 bool NSDataSummaryProvider(ValueObject &valobj, Stream &stream,
32 bool NSNumberSummaryProvider(ValueObject &valobj, Stream &stream,
35 bool NSDecimalNumberSummaryProvider(ValueObject &valobj, Stream &stream,
38 bool NSNotificationSummaryProvider(ValueObject &valobj, Stream &stream,
41 bool NSTimeZoneSummaryProvider(ValueObject &valobj, Stream &stream,
44 bool NSMachPortSummaryProvider(ValueObject &valobj, Stream &stream,
47 bool NSDateSummaryProvider(ValueObject &valobj, Stream
[all...]
H A DCoreMedia.h15 #include "lldb/Utility/Stream.h"
20 bool CMTimeSummaryProvider(ValueObject &valobj, Stream &stream,
H A DNSString.h15 #include "lldb/Utility/Stream.h"
21 bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream,
26 Stream &stream, const TypeSummaryOptions &summary_options);
28 bool NSAttributedStringSummaryProvider(ValueObject &valobj, Stream &stream,
32 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DCXXFunctionPointer.h16 bool CXXFunctionPointerSummaryProvider(ValueObject &valobj, Stream &stream,
H A DVectorType.h16 bool VectorTypeSummaryProvider(ValueObject &, Stream &,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFTypeUnit.cpp12 #include "lldb/Utility/Stream.h"
17 void DWARFTypeUnit::Dump(Stream *s) const {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DDumpRegisterValue.h19 class Stream;
23 bool DumpRegisterValue(const RegisterValue &reg_val, Stream *s,
H A DDumpDataExtractor.h21 class Stream;
82 DumpDataExtractor(const DataExtractor &DE, Stream *s, lldb::offset_t offset,
88 void DumpHexBytes(Stream *s, const void *src, size_t src_len,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbFPOProgramToDWARFExpression.h16 class Stream;
23 lldb_private::Stream &stream);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp26 void GuidAdapter::format(raw_ostream &Stream, StringRef Style) { argument
30 Stream << "{";
35 Stream << Lookup[HighNibble] << Lookup[LowNibble];
38 Stream << "-";
40 Stream << "}";
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolStream.cpp1 //===- SymbolStream.cpp - PDB Symbol Stream Access ------------------------===//
22 SymbolStream::SymbolStream(std::unique_ptr<MappedBlockStream> Stream) argument
23 : Stream(std::move(Stream)) {}
28 BinaryStreamReader Reader(*Stream);
30 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength()))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h21 /// corresponds to the Stream Type field in the minidump file. The "Kind" field
27 struct Stream { struct in namespace:llvm::MinidumpYAML
39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {} function in struct:llvm::MinidumpYAML::Stream
40 virtual ~Stream(); // anchor
49 static std::unique_ptr<Stream> create(minidump::StreamType Type);
52 static Expected<std::unique_ptr<Stream>>
61 template <typename EntryT> struct ListStream : public Stream {
67 : Stream(EntryT::Kind, EntryT::Type), Entries(std::move(Entries)) {}
69 static bool classof(const Stream *S) { return S->Kind == EntryT::Kind; }
74 static constexpr Stream
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DFormatters.h34 void format(raw_ostream &Stream, StringRef Style) override;
51 static void format(const codeview::TypeIndex &V, raw_ostream &Stream, argument
54 Stream << "<no type>";
56 Stream << formatv("{0:X+4}", V.getIndex());
58 Stream << " (" << codeview::TypeIndex::simpleTypeName(V) << ")";
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream, argument
66 Stream << V;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DBitstreamRemarkParser.h31 BitstreamCursor &Stream; member in struct:llvm::remarks::BitstreamMetaParserHelper
42 /// Continue parsing with \p Stream. \p Stream is expected to contain a
44 /// \p Stream is expected to have a BLOCKINFO_BLOCK set.
45 BitstreamMetaParserHelper(BitstreamCursor &Stream,
56 BitstreamCursor &Stream; member in struct:llvm::remarks::BitstreamRemarkParserHelper
77 /// Continue parsing with \p Stream. \p Stream is expected to contain a
79 /// \p Stream is expected to have a BLOCKINFO_BLOCK set and to have already
81 BitstreamRemarkParserHelper(BitstreamCursor &Stream);
91 BitstreamCursor Stream; member in struct:llvm::remarks::BitstreamParserHelper
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dsystem.h63 # define putc(C, Stream) putc_unlocked (C, Stream)
71 # define getc(Stream) getc_unlocked (Stream)
79 # define fputc(C, Stream) fputc_unlocked (C, Stream)
84 # define clearerr(Stream) clearerr_unlocked (Stream)
91 # define feof(Stream) feof_unlocked (Stream)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h51 class Stream;
100 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
102 bool parseRewriteFunctionDescriptor(yaml::Stream &Stream,
106 bool parseRewriteGlobalVariableDescriptor(yaml::Stream &Stream,
110 bool parseRewriteGlobalAliasDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointPrecondition.h19 class Stream;
26 virtual void GetDescription(Stream &stream, lldb::DescriptionLevel level);

Completed in 320 milliseconds

1234567891011>>