Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
734 virtual void handleInvalidMaskType(StringRef MaskType) {} in handleInvalidMaskType() argument
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp8178 void handleInvalidMaskType(StringRef MaskType) override;
8231 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) { in handleInvalidMaskType() argument
8232 S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size); in handleInvalidMaskType()