Home
last modified time | relevance | path

Searched refs:StreamType (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {} in Stream()
43 const minidump::StreamType Type;
46 static StreamKind getKind(minidump::StreamType Type);
49 static std::unique_ptr<Stream> create(minidump::StreamType Type);
75 static constexpr minidump::StreamType Type = minidump::StreamType::ModuleList;
86 static constexpr minidump::StreamType Type = minidump::StreamType::ThreadList;
96 static constexpr minidump::StreamType Type = minidump::StreamType::MemoryList;
113 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream()
118 : Stream(StreamKind::Exception, minidump::StreamType::Exception), in ExceptionStream()
133 minidump::StreamType::MemoryInfoList) {} in MemoryInfoListStream()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h404 template <typename Self, typename StreamType>
420 static void print(const SExpr *E, StreamType &SS) { in print()
428 void newline(StreamType &SS) { in newline()
485 void printBlockLabel(StreamType & SS, const BasicBlock *BB, int index) { in printBlockLabel()
498 void printSExpr(const SExpr *E, StreamType &SS, unsigned P, bool Sub=true) {
525 void printNull(StreamType &SS) { in printNull()
529 void printFuture(const Future *E, StreamType &SS) { in printFuture()
533 void printUndefined(const Undefined *E, StreamType &SS) { in printUndefined()
537 void printWildcard(const Wildcard *E, StreamType &SS) { in printWildcard()
542 void printLiteralT(const LiteralT<T> *E, StreamType &SS) { in printLiteralT()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMinidump.cpp18 MinidumpFile::getRawStream(minidump::StreamType Type) const { in getRawStream()
58 Optional<ArrayRef<uint8_t>> Stream = getRawStream(StreamType::MemoryInfoList); in getMemoryInfoList()
75 Expected<ArrayRef<T>> MinidumpFile::getListStream(StreamType Type) const { in getListStream()
95 MinidumpFile::getListStream(StreamType) const;
97 MinidumpFile::getListStream(StreamType) const;
99 MinidumpFile::getListStream(StreamType) const;
128 DenseMap<StreamType, std::size_t> StreamMap; in create()
130 StreamType Type = StreamDescriptor.value().Type; in create()
138 if (Type == StreamType::Unused && Loc.DataSize == 0) { in create()
144 if (Type == DenseMapInfo<StreamType>::getEmptyKey() || in create()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMinidump.h45 Optional<ArrayRef<uint8_t>> getRawStream(minidump::StreamType Type) const;
63 return getStream<minidump::SystemInfo>(minidump::StreamType::SystemInfo); in getSystemInfo()
72 return getListStream<minidump::Module>(minidump::StreamType::ModuleList); in getModuleList()
81 return getListStream<minidump::Thread>(minidump::StreamType::ThreadList); in getThreadList()
90 minidump::StreamType::Exception); in getExceptionStream()
102 minidump::StreamType::MemoryList); in getMemoryList()
166 DenseMap<minidump::StreamType, std::size_t> StreamMap) in MinidumpFile() argument
177 Expected<const T &> getStream(minidump::StreamType Stream) const;
182 Expected<ArrayRef<T>> getListStream(minidump::StreamType Stream) const;
186 DenseMap<minidump::StreamType, std::size_t> StreamMap;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DMinidump.h50 enum class StreamType : uint32_t { enum
121 support::little_t<StreamType> Type;
253 template <> struct DenseMapInfo<minidump::StreamType> {
254 static minidump::StreamType getEmptyKey() { return minidump::StreamType(-1); }
256 static minidump::StreamType getTombstoneKey() {
257 return minidump::StreamType(-2);
260 static unsigned getHashValue(minidump::StreamType Val) {
264 static bool isEqual(minidump::StreamType LHS, minidump::StreamType RHS) {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp70 Stream::StreamKind Stream::getKind(StreamType Type) { in getKind()
72 case StreamType::Exception: in getKind()
74 case StreamType::MemoryInfoList: in getKind()
76 case StreamType::MemoryList: in getKind()
78 case StreamType::ModuleList: in getKind()
80 case StreamType::SystemInfo: in getKind()
82 case StreamType::LinuxCPUInfo: in getKind()
83 case StreamType::LinuxProcStatus: in getKind()
84 case StreamType::LinuxLSBRelease: in getKind()
85 case StreamType::LinuxCMDLine: in getKind()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamRef.h24 template <class RefType, class StreamType> class BinaryStreamRefBase {
27 explicit BinaryStreamRefBase(StreamType &BorrowedImpl) in BinaryStreamRefBase()
33 BinaryStreamRefBase(std::shared_ptr<StreamType> SharedImpl, uint32_t Offset, in BinaryStreamRefBase()
37 BinaryStreamRefBase(StreamType &BorrowedImpl, uint32_t Offset, in BinaryStreamRefBase()
143 std::shared_ptr<StreamType> SharedImpl;
144 StreamType *BorrowedImpl = nullptr;
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
H A Dthompson.d717 @trusted struct ThompsonMatcher(Char, StreamType = Input!Char)
721 alias Stream = StreamType;
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/
H A Dthompson.d715 @trusted class ThompsonMatcher(Char, StreamType = Input!Char): Matcher!Char
719 alias Stream = StreamType;