Home
last modified time | relevance | path

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

123

/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
DSpecialCaseList.cpp106 StringRef Category = SplitRegexp.second; in parse() local
111 Category = "init"; in parse()
114 Category = "init"; in parse()
117 Category = "init"; in parse()
122 Entries[Prefix][Category].Strings.insert(Regexp); in parse()
142 if (!Regexps[Prefix][Category].empty()) in parse()
143 Regexps[Prefix][Category] += "|"; in parse()
144 Regexps[Prefix][Category] += "^" + Regexp + "$"; in parse()
172 bool SpecialCaseList::isIn(const Function& F, const StringRef Category) const { in isIn()
173 return isIn(*F.getParent(), Category) || in isIn()
[all …]
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/
DSpecialCaseList.h76 bool isIn(const Function &F, const StringRef Category = StringRef()) const;
81 const StringRef Category = StringRef()) const;
89 const StringRef Category = StringRef()) const;
93 bool isIn(const Module &M, const StringRef Category = StringRef()) const;
107 const StringRef Category) const;
/freebsd-10-stable/contrib/ntp/sntp/libopts/
Dgettext.h71 # define dcgettext(Domainname, Msgid, Category) \ argument
72 ((void) (Category), dgettext (Domainname, Msgid))
82 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
83 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
126 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ argument
127 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
137 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ argument
138 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugType.h33 const std::string Category; variable
39 : Name(name), Category(cat), SuppressonSink(false) {} in BugType()
44 StringRef getCategory() const { return Category; } in getCategory()
DPathDiagnostic.h714 std::string Category; variable
789 StringRef getCategory() const { return Category; } in getCategory()
/freebsd-10-stable/contrib/texinfo/lib/
Dgettext.h46 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) argument
51 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
/freebsd-10-stable/contrib/diff/lib/
Dgettext.h46 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) argument
51 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
/freebsd-10-stable/contrib/llvm/lib/Support/
DCommandLine.cpp1526 assert(CategorizedOptions.count(Opt->Category) > 0 && in printOptions()
1528 CategorizedOptions[Opt->Category].push_back(Opt); in printOptions()
1533 Category = SortedCategories.begin(), in printOptions() local
1535 Category != E; ++Category) { in printOptions()
1537 bool IsEmptyCategory = CategorizedOptions[*Category].size() == 0; in printOptions()
1543 outs() << (*Category)->getName() << ":\n"; in printOptions()
1546 if ((*Category)->getDescription() != 0) in printOptions()
1547 outs() << (*Category)->getDescription() << "\n\n"; in printOptions()
1559 Opt = CategorizedOptions[*Category].begin(), in printOptions()
1560 E = CategorizedOptions[*Category].end(); in printOptions()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
DDiagnosticCategories.td1 //==--- DiagnosticCategories.td - Diagnostic Category Definitions ---------===//
/freebsd-10-stable/contrib/binutils/opcodes/
Dopintl.h37 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/gdb/gdb/
Dgdb_locale.h39 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/binutils/gas/
Dasintl.h47 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/binutils/binutils/
Dsysdep.h164 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/binutils/bfd/
Dsysdep.h194 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/
DClangDiagnosticsEmitter.cpp111 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo); in DiagCategoryIDMap() local
112 if (Category.empty()) continue; // Skip diags with no category. in DiagCategoryIDMap()
114 unsigned &ID = CategoryIDs[Category]; in DiagCategoryIDMap()
118 CategoryStrings.push_back(Category); in DiagCategoryIDMap()
/freebsd-10-stable/contrib/ntp/html/hints/
Dsolaris.xtra.40231182 Category: kernel
Dsolaris.xtra.40958492 Category: kernel
/freebsd-10-stable/contrib/binutils/ld/
Dld.h77 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
/freebsd-10-stable/contrib/gcc/
Dbuiltins.def176 /* Category: math builtins. */
421 /* Category: _Complex math builtins. */
492 /* Category: string/memory builtins. */
525 /* Category: stdio builtins. */
555 /* Category: ctype builtins. */
573 /* Category: wctype builtins. */
589 /* Category: miscellaneous builtins. */
Dgccbug.in439 PATTERN=">Category:"
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
DCommandLine.h198 OptionCategory *Category; // The Category this option belongs to variable
236 void setCategory(OptionCategory &C) { Category = &C; } in setCategory()
243 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) { in Option()
338 OptionCategory &Category; member
339 cat(OptionCategory &c) : Category(c) {} in cat()
342 void apply(Opt &O) const { O.setCategory(Category); } in apply()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
DDiagnosticIDs.cpp45 unsigned Category : 5; member
181 return Info->Category; in getCategoryNumberForDiag()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DInitialization.h951 ExprValueKind Category);
982 ExprValueKind Category);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaCodeComplete.cpp3541 } else if (const ObjCCategoryDecl *Category in AddObjCProperties() local
3544 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(), in AddObjCProperties()
3545 PEnd = Category->protocol_end(); in AddObjCProperties()
4952 if (ObjCCategoryDecl *Category in CodeCompleteObjCPropertyGetter() local
4954 Class = Category->getClassInterface(); in CodeCompleteObjCPropertyGetter()
4980 if (ObjCCategoryDecl *Category in CodeCompleteObjCPropertySetter() local
4982 Class = Category->getClassInterface(); in CodeCompleteObjCPropertySetter()
5926 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(*D)) in CodeCompleteObjCInterfaceCategory() local
5927 if (CategoryNames.insert(Category->getIdentifier())) in CodeCompleteObjCInterfaceCategory()
5928 Results.AddResult(Result(Category, Results.getBasePriority(Category),0), in CodeCompleteObjCInterfaceCategory()
[all …]
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/
DDwarfDebug.cpp310 StringRef &Category) { in getObjCClassCategory() argument
313 Category = ""; in getObjCClassCategory()
318 Category = In.slice(In.find('[') + 1, In.find(' ')); in getObjCClassCategory()
350 StringRef Class, Category; in addSubprogramNames() local
351 getObjCClassCategory(SP.getName(), Class, Category); in addSubprogramNames()
353 if (Category != "") in addSubprogramNames()
354 TheCU->addAccelObjC(Category, Die); in addSubprogramNames()

123