Home
last modified time | relevance | path

Searched refs:Category (Results 1 – 25 of 105) sorted by relevance

12345

/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/MCTargetDesc/
H A DSPIRVBaseInfo.cpp22 OperandCategory::OperandCategory Category; member
30 OperandCategory::OperandCategory Category; member
36 OperandCategory::OperandCategory Category; member
57 getSymbolicOperandMnemonic(SPIRV::OperandCategory::OperandCategory Category, in getSymbolicOperandMnemonic() argument
60 SPIRV::lookupSymbolicOperandByCategoryAndValue(Category, Value); in getSymbolicOperandMnemonic()
64 if (Category != SPIRV::OperandCategory::ImageOperandOperand && in getSymbolicOperandMnemonic()
65 Category != SPIRV::OperandCategory::FPFastMathModeOperand && in getSymbolicOperandMnemonic()
66 Category != SPIRV::OperandCategory::SelectionControlOperand && in getSymbolicOperandMnemonic()
67 Category != SPIRV::OperandCategory::LoopControlOperand && in getSymbolicOperandMnemonic()
68 Category != SPIRV::OperandCategory::FunctionControlOperand && in getSymbolicOperandMnemonic()
[all …]
H A DSPIRVBaseInfo.h246 getSymbolicOperandMnemonic(SPIRV::OperandCategory::OperandCategory Category,
249 getSymbolicOperandMinVersion(SPIRV::OperandCategory::OperandCategory Category,
252 getSymbolicOperandMaxVersion(SPIRV::OperandCategory::OperandCategory Category,
255 getSymbolicOperandCapabilities(SPIRV::OperandCategory::OperandCategory Category,
260 getSymbolicOperandExtensions(SPIRV::OperandCategory::OperandCategory Category,
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DNoSanitizeList.cpp31 StringRef Name, StringRef Category) const { in containsPrefix()
33 SSCL->inSectionBlame(Mask, Prefix, Name, Category); in containsPrefix()
46 StringRef Category) const { in containsGlobal()
47 return containsPrefix(Mask, "global", GlobalName, Category); in containsGlobal()
51 StringRef Category) const { in containsType()
52 return containsPrefix(Mask, "type", MangledTypeName, Category); in containsType()
61 StringRef Category) const { in containsFile()
62 return containsPrefix(Mask, "src", FileName, Category); in containsFile()
66 StringRef Category) const { in containsMainFile()
67 return containsPrefix(Mask, "mainfile", FileName, Category); in containsMainFile()
[all …]
H A DXRayLists.cpp58 StringRef Category) const { in shouldImbueFunctionsInFile()
60 Category) || in shouldImbueFunctionsInFile()
61 AttrList->inSection("always", "src", Filename, Category)) in shouldImbueFunctionsInFile()
64 Category) || in shouldImbueFunctionsInFile()
65 AttrList->inSection("never", "src", Filename, Category)) in shouldImbueFunctionsInFile()
72 StringRef Category) const { in shouldImbueLocation()
76 Category); in shouldImbueLocation()
H A DSanitizerSpecialCaseList.cpp59 StringRef Category) const { in inSection()
60 return inSectionBlame(Mask, Prefix, Query, Category) != NotFound; in inSection()
66 StringRef Category) const { in inSectionBlame()
70 SpecialCaseList::inSectionBlame(S.Entries, Prefix, Query, Category); in inSectionBlame()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTimer.h25 class Category {
27 explicit Category(const char *category_name);
36 std::atomic<Category *> m_next;
38 Category(const Category &) = delete;
39 const Category &operator=(const Category &) = delete;
43 Timer(Category &category, const char *format, ...)
67 Category &m_category;
84 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \
87 static ::lldb_private::Timer::Category _cat(LLVM_PRETTY_FUNCTION); \
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DNoSanitizeList.h33 StringRef Category) const;
40 StringRef Category = StringRef()) const;
42 StringRef Category = StringRef()) const;
45 StringRef Category = StringRef()) const;
47 StringRef Category = StringRef()) const;
49 StringRef Category = StringRef()) const;
H A DAttrDocs.td52 let Category = DocCatVariable;
61 let Category = DocCatVariable;
80 let Category = DocCatFunction;
105 let Category = DocCatFunction;
129 let Category = DocCatVariable;
166 let Category = DocCatVariable;
182 let Category = DocCatVariable;
197 let Category = DocCatVariable;
211 let Category = DocCatVariable;
229 let Category = DocCatVariable;
[all …]
H A DXRayLists.h52 StringRef Category = StringRef()) const;
55 StringRef Category = StringRef()) const;
H A DSanitizerSpecialCaseList.h45 StringRef Category = StringRef()) const;
53 StringRef Category = StringRef()) const;
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DCommonOptionsParser.cpp84 int &argc, const char **argv, cl::OptionCategory &Category, in init() argument
88 cl::Optional, cl::cat(Category), in init()
93 cl::cat(Category), cl::sub(cl::SubCommand::getAll())); in init()
98 cl::cat(Category), cl::sub(cl::SubCommand::getAll())); in init()
103 cl::cat(Category), cl::sub(cl::SubCommand::getAll())); in init()
107 cl::HideUnrelatedOptions(Category); in init()
156 int &argc, const char **argv, llvm::cl::OptionCategory &Category, in create() argument
160 Parser.init(argc, argv, Category, OccurrencesFlag, Overview); in create()
167 int &argc, const char **argv, cl::OptionCategory &Category, in CommonOptionsParser() argument
169 llvm::Error Err = init(argc, argv, Category, OccurrencesFlag, Overview); in CommonOptionsParser()
H A DExecution.cpp59 llvm::cl::OptionCategory &Category, in createExecutorFromCommandLineArgsImpl() argument
62 CommonOptionsParser::create(argc, argv, Category, llvm::cl::ZeroOrMore, in createExecutorFromCommandLineArgsImpl()
89 llvm::cl::OptionCategory &Category, in createExecutorFromCommandLineArgs() argument
91 return internal::createExecutorFromCommandLineArgsImpl(argc, argv, Category, in createExecutorFromCommandLineArgs()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DIncludeStyle.cpp17 IO &IO, IncludeStyle::IncludeCategory &Category) { in mapping() argument
18 IO.mapOptional("Regex", Category.Regex); in mapping()
19 IO.mapOptional("Priority", Category.Priority); in mapping()
20 IO.mapOptional("SortPriority", Category.SortPriority); in mapping()
21 IO.mapOptional("CaseSensitive", Category.RegexIsCaseSensitive); in mapping()
H A DHeaderIncludes.cpp193 for (const auto &Category : Style.IncludeCategories) { in IncludeCategoryManager() local
194 CategoryRegexs.emplace_back(Category.Regex, Category.RegexIsCaseSensitive in IncludeCategoryManager()
293 for (const auto &Category : Style.IncludeCategories) in HeaderIncludes() local
294 Priorities.insert(Category.Priority); in HeaderIncludes()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DSortJavaScriptImports.cpp80 ReferenceCategory Category = ReferenceCategory::SIDE_EFFECT; member
104 if (LHS.Category != RHS.Category) in operator <()
105 return LHS.Category < RHS.Category; in operator <()
106 if (LHS.Category == JsModuleReference::ReferenceCategory::SIDE_EFFECT || in operator <()
107 LHS.Category == JsModuleReference::ReferenceCategory::ALIAS) { in operator <()
172 Reference.Category != References[I + 1].Category)) { in analyze()
302 if (Reference->Category == JsModuleReference::SIDE_EFFECT || in mergeModuleReferences()
303 PreviousReference->Category == JsModuleReference::SIDE_EFFECT || in mergeModuleReferences()
407 Reference.Category = JsModuleReference::ReferenceCategory::RELATIVE; in parseModuleReferences()
420 << ", cat: " << Reference.Category in parseModuleReferences()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DTimer.cpp30 static std::atomic<Timer::Category *> g_categories;
48 Timer::Category::Category(const char *cat) : m_name(cat) { in Category() function in Timer::Category
52 Category *expected = g_categories; in Category()
60 Timer::Timer(Timer::Category &category, const char *format, ...) in Timer()
131 for (Category *i = g_categories; i; i = i->m_next) { in ResetCategoryTimes()
140 for (Category *i = g_categories; i; i = i->m_next) { in DumpCategoryTimes()
/freebsd/contrib/ntp/sntp/libopts/
H A Dgettext.h72 # define dcgettext(Domainname, Msgid, Category) \ argument
73 ((void) (Category), dgettext (Domainname, Msgid))
83 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
84 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
127 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ argument
128 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
138 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ argument
139 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h34 const std::string Category; variable
47 : CheckerName(CheckerName), Description(Desc), Category(Cat), in CheckerName()
54 : CheckerName(Checker), Description(Desc), Category(Cat), in CheckerName()
59 StringRef getCategory() const { return Category; } in getCategory()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp196 auto [Pattern, Category] = Postfix.split("="); in parse()
197 auto &Entry = CurrentSection->Entries[Prefix][Category]; in parse()
212 StringRef Query, StringRef Category) const { in inSection()
213 auto [FileIdx, LineNo] = inSectionBlame(Section, Prefix, Query, Category); in inSection()
219 StringRef Query, StringRef Category) const { in inSectionBlame()
222 unsigned Blame = inSectionBlame(S.Entries, Prefix, Query, Category); in inSectionBlame()
232 StringRef Category) const { in inSectionBlame()
236 StringMap<Matcher>::const_iterator II = I->second.find(Category); in inSectionBlame()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DCommonOptionsParser.h82 int &argc, const char **argv, llvm::cl::OptionCategory &Category,
90 create(int &argc, const char **argv, llvm::cl::OptionCategory &Category,
114 llvm::cl::OptionCategory &Category,
H A DExecution.h173 llvm::cl::OptionCategory &Category,
179 llvm::cl::OptionCategory &Category,
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/
H A DDirectiveBase.td183 class Category<string n> {
184 string name = n; // Name of the enum value in enum class Category.
187 def CA_Declarative: Category<"Declarative"> {}
188 def CA_Executable: Category<"Executable"> {}
189 def CA_Informational: Category<"Informational"> {}
190 def CA_Meta: Category<"Meta"> {}
191 def CA_Subsidiary: Category<"Subsidiary"> {}
192 def CA_Utility: Category<"Utility"> {}
235 Category category = ?;
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp136 StringRef Category) const { in findObjCCategory()
137 return findRecord<ObjCCategoryRecord>(std::make_pair(ClassToExtend, Category), in findObjCCategory()
226 StringRef Category) { in addObjCCategory() argument
227 Category = copyString(Category); in addObjCCategory()
231 auto Result = Categories.try_emplace(std::make_pair(ClassToExtend, Category)); in addObjCCategory()
234 std::make_unique<ObjCCategoryRecord>(ClassToExtend, Category); in addObjCCategory()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h96 StringRef Category = StringRef()) const;
108 StringRef Category = StringRef()) const;
170 StringRef Category) const;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAttr.cpp494 CategoryType Category = CategoryType::NumberOfCategories; in CheckForIncompatibleAttributes() local
499 Category = Vectorize; in CheckForIncompatibleAttributes()
503 Category = Interleave; in CheckForIncompatibleAttributes()
507 Category = Unroll; in CheckForIncompatibleAttributes()
511 Category = UnrollAndJam; in CheckForIncompatibleAttributes()
515 Category = Distribute; in CheckForIncompatibleAttributes()
519 Category = Pipeline; in CheckForIncompatibleAttributes()
522 Category = VectorizePredicate; in CheckForIncompatibleAttributes()
526 assert(Category != NumberOfCategories && "Unhandled loop hint option"); in CheckForIncompatibleAttributes()
527 auto &CategoryState = HintAttrs[Category]; in CheckForIncompatibleAttributes()
[all …]

12345