Searched refs:OptionType (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/ |
H A D | CheckerRegistryData.h | 45 StringRef OptionType; member 52 CmdLineOption(StringRef OptionType, StringRef OptionName, in CmdLineOption() 55 : OptionType(OptionType), OptionName(OptionName), in CmdLineOption() 59 assert((OptionType == "bool" || OptionType == "string" || in CmdLineOption() 60 OptionType == "int") && in CmdLineOption() 63 assert((OptionType != "bool" || in CmdLineOption() 69 assert((OptionType != "int" || !DefaultValStr.getAsInteger(0, Tmp)) && in CmdLineOption()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
H A D | RefactoringOption.h | 53 template <typename OptionType> 54 std::shared_ptr<OptionType> createRefactoringOption() { in createRefactoringOption() 55 static_assert(std::is_base_of<RefactoringOption, OptionType>::value, in createRefactoringOption() 57 return std::make_shared<OptionType>(); in createRefactoringOption()
|
H A D | RefactoringActionRuleRequirements.h | 95 template <typename OptionType> 98 OptionRequirement() : Opt(createRefactoringOption<OptionType>()) {} in OptionRequirement() 105 Expected<typename OptionType::ValueType> 107 return static_cast<OptionType *>(Opt.get())->getValue(); in evaluate()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
H A D | CheckerRegistry.cpp | 363 if (Option.OptionType == "bool") { in insertAndValidate() 375 if (Option.OptionType == "int") { in insertAndValidate() 423 void CheckerRegistry::addPackageOption(StringRef OptionType, in addPackageOption() argument 431 PackageFullName, CmdLineOption{OptionType, OptionName, DefaultValStr, in addPackageOption() 450 void CheckerRegistry::addCheckerOption(StringRef OptionType, in addCheckerOption() argument 458 CheckerFullName, CmdLineOption{OptionType, OptionName, DefaultValStr, in addCheckerOption()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/ |
H A D | CheckerRegistry.h | 154 void addCheckerOption(StringRef OptionType, StringRef CheckerFullName, 171 void addPackageOption(StringRef OptionType, StringRef PackageFullName,
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaStmtAttr.cpp | 93 LoopHintAttr::OptionType Option; in handleLoopHintAttr() 96 auto SetHints = [&Option, &State](LoopHintAttr::OptionType O, in handleLoopHintAttr() 122 Option = llvm::StringSwitch<LoopHintAttr::OptionType>( in handleLoopHintAttr() 275 LoopHintAttr::OptionType Option = LH->getOption(); in CheckForIncompatibleAttributes()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | CheckerRegistryData.cpp | 29 Out << OptionName << " (" << OptionType << ", " in dumpToStream() 216 ("(" + Option.OptionType + ") " + Option.Description + " (default: " + in printCheckerOptionList()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGLoopInfo.cpp | 611 LoopHintAttr::OptionType Option = LoopHintAttr::Unroll; in push()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | Attr.td | 3479 let Args = [EnumArgument<"Option", "OptionType",
|