Home
last modified time | relevance | path

Searched refs:MaskType (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DLog.h124 using MaskType = uint64_t;
126 template <MaskType Bit>
127 static constexpr MaskType ChannelFlag = MaskType(1) << Bit;
133 MaskType flag;
138 : name(name), description(description), flag(MaskType(mask)) { in Category()
140 std::is_same<Log::MaskType, std::underlying_type_t<Cat>>::value, ""); in Category()
152 const MaskType default_flags;
158 default_flags(MaskType(default_flags)) { in Channel()
167 Log *GetLog(MaskType mask) { in GetLog()
264 std::atomic<MaskType> m_mask{0};
[all …]
H A DLLDBLog.h18 enum class LLDBLog : Log::MaskType {
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOSLog.h77 StringRef MaskType; variable
83 MaskType(maskType) { in TheKind()
108 StringRef getMaskType() const { return MaskType; } in getMaskType()
H A DFormatString.h512 StringRef MaskType; variable
598 StringRef getMaskType() const { return MaskType; } in getMaskType()
599 void setMaskType(StringRef S) { MaskType = S; } in setMaskType()
735 virtual void handleInvalidMaskType(StringRef MaskType) {} in handleInvalidMaskType() argument
/llvm-project-15.0.7/clang/lib/AST/
H A DOSLog.cpp29 StringRef MaskType; member
131 ArgsData.back().MaskType = FS.getMaskType(); in HandlePrintfSpecifier()
138 if (!Data.MaskType.empty()) { in computeLayout()
141 Size, 0, Data.MaskType); in computeLayout()
H A DPrintfFormatString.cpp144 StringRef MaskType = MatchedStr.substr(sizeof("mask.") - 1); in ParsePrintfSpecifier() local
145 unsigned Size = MaskType.size(); in ParsePrintfSpecifier()
147 H.handleInvalidMaskType(MaskType); in ParsePrintfSpecifier()
148 FS.setMaskType(MaskType); in ParsePrintfSpecifier()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.h17 enum class DWARFLog : Log::MaskType {
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DProcessWindowsLog.h17 enum class WindowsLog : Log::MaskType {
/llvm-project-15.0.7/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.h18 enum class POSIXLog : Log::MaskType {
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDPLog.h17 enum class KDPLog : Log::MaskType {
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteLog.h18 enum class GDBRLog : Log::MaskType {
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DLogTest.cpp22 enum class TestChannel : Log::MaskType {
373 EXPECT_THAT(mask, testing::AnyOf(0, Log::MaskType(TestChannel::FOO))); in TEST_F()
/llvm-project-15.0.7/lldb/source/Utility/
H A DLog.cpp97 MaskType mask = m_mask.fetch_or(flags, std::memory_order_relaxed); in Enable()
108 MaskType mask = m_mask.fetch_and(~flags, std::memory_order_relaxed); in Disable()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp9430 void handleInvalidMaskType(StringRef MaskType) override;
9483 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) { in handleInvalidMaskType() argument
9484 S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size); in handleInvalidMaskType()