Searched refs:MaskType (Results 1 – 14 of 14) sorted by relevance
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | Log.h | 124 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 D | LLDBLog.h | 18 enum class LLDBLog : Log::MaskType {
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OSLog.h | 77 StringRef MaskType; variable 83 MaskType(maskType) { in TheKind() 108 StringRef getMaskType() const { return MaskType; } in getMaskType()
|
| H A D | FormatString.h | 512 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 D | OSLog.cpp | 29 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 D | PrintfFormatString.cpp | 144 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 D | LogChannelDWARF.h | 17 enum class DWARFLog : Log::MaskType {
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindowsLog.h | 17 enum class WindowsLog : Log::MaskType {
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/POSIX/ |
| H A D | ProcessPOSIXLog.h | 18 enum class POSIXLog : Log::MaskType {
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDPLog.h | 17 enum class KDPLog : Log::MaskType {
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemoteLog.h | 18 enum class GDBRLog : Log::MaskType {
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | LogTest.cpp | 22 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 D | Log.cpp | 97 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 D | SemaChecking.cpp | 9430 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()
|