Searched refs:Stream (Results 126 - 150 of 667) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanRunToAddress.h32 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
34 bool ValidatePlan(Stream *error) override;
H A DThreadPlanStepOverBreakpoint.h23 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
24 bool ValidatePlan(Stream *error) override;
H A DThreadPlanStepThrough.h21 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
22 bool ValidatePlan(Stream *error) override;
H A DThreadPlanStepUntil.h21 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
22 bool ValidatePlan(Stream *error) override;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTimer.h18 class Stream;
54 static void DumpCategoryTimes(Stream *s);
H A DConstString.h20 class Stream;
321 void Dump(Stream *s, const char *value_if_empty = nullptr) const;
327 void DumpDebug(Stream *s) const;
454 /// Stream the string value \a str to the stream \a s
455 Stream &operator<<(Stream &s, ConstString str);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointName.cpp17 #include "lldb/Utility/Stream.h"
38 bool BreakpointName::Permissions::GetDescription(Stream *s,
56 bool BreakpointName::GetDescription(Stream *s, lldb::DescriptionLevel level) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.h84 bool EvaluateExpression(llvm::StringRef expr, Stream &output_stream,
85 Stream &error_stream, CommandReturnObject &result);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.h24 class Stream;
54 bool DoCheckersExplainStop(lldb::addr_t addr, Stream &message) override;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.h64 bool GetObjectDescription(Stream &str, ValueObject &object) override;
66 bool GetObjectDescription(Stream &str, Value &value,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h34 void GetName(lldb_private::Stream &s) const;
36 void AppendTypeName(lldb_private::Stream &s) const;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DStreamString.cpp14 StreamString::StreamString() : Stream(0, 4, eByteOrderBig) {}
18 : Stream(flags, addr_size, byte_order), m_packet() {}
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.h39 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
60 Error initialize(BinaryStreamRef Stream);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DModuleDebugStream.h1 //===- ModuleDebugStream.h - PDB Module Info Stream Access ------*- C++ -*-===//
33 std::unique_ptr<msf::MappedBlockStream> Stream);
77 std::shared_ptr<msf::MappedBlockStream> Stream; member in class:llvm::pdb::ModuleDebugStreamRef
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGeneratePCH.cpp30 SemaPtr(nullptr), Buffer(std::move(Buffer)), Stream(this->Buffer->Data),
31 Writer(Stream, this->Buffer->Data, ModuleCache, Extensions,
H A DASTWriter.cpp517 TypeExtQualAbbrev = Stream.EmitAbbrev(std::move(Abv));
541 TypeFunctionProtoAbbrev = Stream.EmitAbbrev(std::move(Abv));
549 llvm::BitstreamWriter &Stream,
553 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
561 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
565 llvm::BitstreamWriter &Stream,
571 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
574 static void AddStmtsExprs(llvm::BitstreamWriter &Stream, argument
576 #define RECORD(X) EmitRecordID(X, #X, Stream, Record)
708 Stream
548 EmitBlockID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, ASTWriter::RecordDataImpl &Record) argument
564 EmitRecordID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, ASTWriter::RecordDataImpl &Record) argument
1555 CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) argument
1574 CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) argument
1589 CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream, bool Compressed) argument
1604 CreateSLocExpansionAbbrev(llvm::BitstreamWriter &Stream) argument
1887 emitBlob(llvm::BitstreamWriter &Stream, StringRef Blob, unsigned SLocBufferBlobCompressedAbbrv, unsigned SLocBufferBlobAbbrv) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFileExtension.h99 const llvm::BitstreamCursor &Stream) = 0;
124 llvm::BitstreamWriter &Stream) = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolSerializer.cpp23 : Storage(Allocator), Stream(RecordBuffer, support::little), Writer(Stream),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptor.cpp21 Error DbiModuleDescriptor::initialize(BinaryStreamRef Stream, argument
23 BinaryStreamReader Reader(Stream);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h39 ArrayRef<uint8_t> getRawStream(const minidump::Directory &Stream) const {
40 return getData().slice(Stream.Location.RVA, Stream.Location.DataSize);
177 Expected<const T &> getStream(minidump::StreamType Stream) const;
182 Expected<ArrayRef<T>> getListStream(minidump::StreamType Stream) const;
191 if (Optional<ArrayRef<uint8_t>> Stream = getRawStream(Type)) {
192 if (Stream->size() >= sizeof(T))
193 return *reinterpret_cast<const T *>(Stream->data());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h36 explicit BinaryStreamReader(BinaryStream &Stream);
42 : Stream(Other.Stream), Offset(Other.Offset) {}
45 Stream = Other.Stream;
85 Bytes.data(), Stream.getEndian());
257 uint32_t getLength() const { return Stream.getLength(); }
278 BinaryStreamRef Stream; member in class:llvm::BinaryStreamReader
H A DFormatCommon.h40 raw_svector_ostream Stream(Item);
42 Adapter.format(Stream, Options);
H A DFormatVariadic.h20 // // Stream to an existing raw_ostream.
109 raw_string_ostream Stream(Result);
110 Stream << *this;
111 Stream.flush();
117 raw_svector_ostream Stream(Result);
118 Stream << *this;
231 // implementation should write the formatted text into `Stream`.
234 // void format(const T &Obj, raw_ostream &Stream, StringRef Options)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h42 void Dump(Stream *s) const override;
93 void GetDescription(Stream *s, lldb::DescriptionLevel level);
94 void Dump(Stream *s) const override;
95 void DumpSnapshots(Stream *s, const char *prefix = nullptr) const;
96 void DumpWithLevel(Stream *s, lldb::DescriptionLevel description_level) const;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h27 class Stream;
46 Stream *s);
128 const char *current_line_cstr, Stream *s,
134 const char *current_line_cstr, Stream *s,
137 size_t DisplayMoreWithLineNumbers(Stream *s, uint32_t count, bool reverse,

Completed in 230 milliseconds

1234567891011>>