Searched refs:Category (Results 1 - 25 of 43) sorted by relevance

12

/external/llvm/include/llvm/Transforms/Utils/
H A DSpecialCaseList.h66 bool isIn(const Function &F, const StringRef Category = StringRef()) const;
71 const StringRef Category = StringRef()) const;
75 bool isIn(const Module &M, const StringRef Category = StringRef()) const;
78 /// category. Category will contain the name of an arbitrary category in
80 bool findCategory(const Function &F, StringRef &Category) const;
83 /// category. Category will contain the name of an arbitrary category in
85 bool findCategory(const GlobalVariable &G, StringRef &Category) const;
87 /// Returns whether this module is listed in any category. Category will
89 bool findCategory(const Module &M, StringRef &Category) const;
97 StringRef &Category) cons
[all...]
/external/bison/lib/
H A Dmain.c26 # define setlocale(Category, Locale)
H A Dgettext.h71 # define dcgettext(Domainname, Msgid, Category) \
72 ((void) (Category), dgettext (Domainname, Msgid))
82 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
83 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
126 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \
127 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
137 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \
138 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
/external/llvm/lib/Transforms/Utils/
H A DSpecialCaseList.cpp88 StringRef Category = SplitRegexp.second; local
93 Category = "init";
96 Category = "init";
99 Category = "init";
104 Entries[Prefix][Category].Strings.insert(Regexp);
123 if (!Regexps[Prefix][Category].empty())
124 Regexps[Prefix][Category] += "|";
125 Regexps[Prefix][Category] += "^" + Regexp + "$";
153 StringRef &Category) const {
154 return findCategory(*F.getParent(), Category) ||
[all...]
/external/junit/src/org/junit/experimental/categories/
H A DCategory.java23 @Category(SlowTests.class)
29 @Category({SlowTests.class, FastTests.class})
41 public @interface Category { interface
H A DCategories.java24 * Note that, for now, annotating suites with {@code @Category} has no effect.
42 * @Category(SlowTests.class)
48 * @Category( { SlowTests.class, FastTests.class })
140 Category annotation= description.getAnnotation(Category.class);
178 if (each.getAnnotation(Category.class) != null)
179 throw new InitializationError("Category annotations on Parameterized classes are not supported on individual methods.");
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DRegisterType.java43 public final Category category;
46 private RegisterType(Category category, ClassDef type) {
47 assert ((category == Category.Reference || category == Category.UninitRef || category == Category.UninitThis) &&
49 ((category != Category.Reference && category != Category.UninitRef && category != Category.UninitThis) &&
91 public static enum Category { enum in class:RegisterType
123 protected static Category[][] mergeTabl
[all...]
H A DMethodAnalyzer.java161 RegisterType.getRegisterType(RegisterType.Category.UninitThis,
165 RegisterType.getRegisterType(RegisterType.Category.Reference,
180 RegisterType uninit = RegisterType.getRegisterType(RegisterType.Category.Uninit, null);
456 if (registerType.category == RegisterType.Category.LongLo) {
459 RegisterType.getRegisterType(RegisterType.Category.LongHi, null));
460 } else if (registerType.category == RegisterType.Category.DoubleLo) {
463 RegisterType.getRegisterType(RegisterType.Category.DoubleHi, null));
767 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Integer);
770 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Boolean);
773 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category
[all...]
H A DAnalyzedInstruction.java89 RegisterType unknown = RegisterType.getRegisterType(RegisterType.Category.Unknown, null);
286 if (preInstructionDestRegisterType.category != RegisterType.Category.UninitRef &&
287 preInstructionDestRegisterType.category != RegisterType.Category.UninitThis) {
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h32 const std::string Category; member in class:clang::ento::BugType
36 : Name(name), Category(cat), SuppressonSink(false) {}
41 StringRef getCategory() const { return Category; }
H A DBugReporter.h478 StringRef BugName, StringRef Category,
481 EmitBasicReport(DeclWithIssue, BugName, Category, BugStr, Loc, &R, 1);
477 EmitBasicReport(const Decl *DeclWithIssue, StringRef BugName, StringRef Category, StringRef BugStr, PathDiagnosticLocation Loc, SourceRange R) argument
H A DPathDiagnostic.h714 std::string Category; member in class:clang::ento::PathDiagnostic
789 StringRef getCategory() const { return Category; }
/external/e2fsprogs/intl/
H A Dlibgettext.h143 # define dcgettext(Domainname, Msgid, Category) \
154 dcgettext__ (Domainname, Msgid, Category); \
160 __result = dcgettext__ (Domainname, Msgid, Category); \
170 # define dcgettext(Domainname, Msgid, Category) (Msgid)
/external/llvm/unittests/Support/
H A DCommandLineTest.cpp61 ASSERT_EQ(&cl::GeneralCategory,Retrieved->Category) <<
65 ASSERT_EQ(&TestCategory,Retrieved->Category) <<
118 ASSERT_EQ(&TestCategory,TestOption2.Category) << "Failed to assign Option "
119 "Category.";
/external/chromium_org/chrome/browser/google_apis/
H A Dgdata_wapi_parser.cc226 Category::CategoryType type;
231 { Category::CATEGORY_KIND, "http://schemas.google.com/g/2005#kind" },
232 { Category::CATEGORY_LABEL, "http://schemas.google.com/g/2005/labels" },
378 // Category implementation
380 Category::Category() : type_(CATEGORY_UNKNOWN) { function in class:google_apis::Category
384 bool Category::GetCategoryTypeFromScheme(
385 const base::StringPiece& scheme, Category::CategoryType* result) {
397 void Category::RegisterJSONConverter(
398 base::JSONValueConverter<Category>* converte
[all...]
H A Dgdata_wapi_parser.h190 class Category { class in namespace:google_apis
199 Category();
204 base::JSONValueConverter<Category>* converter);
206 // Category label.
209 // Category type.
212 // Category term.
222 // http://schemas.google.com/g/2005#kind => Category::CATEGORY_KIND
232 DISALLOW_COPY_AND_ASSIGN(Category);
283 // Category of the icon.
340 const ScopedVector<Category>
[all...]
/external/llvm/unittests/Transforms/Utils/
H A DSpecialCaseList.cpp88 StringRef Category; local
89 EXPECT_TRUE(SCL->findCategory(*Foo, Category));
90 EXPECT_EQ("functional", Category);
/external/llvm/lib/Support/
H A DCommandLine.cpp1523 assert(CategorizedOptions.count(Opt->Category) > 0 &&
1525 CategorizedOptions[Opt->Category].push_back(Opt);
1530 Category = SortedCategories.begin(),
1532 Category != E; ++Category) {
1534 bool IsEmptyCategory = CategorizedOptions[*Category].size() == 0;
1540 outs() << (*Category)->getName() << ":\n";
1543 if ((*Category)->getDescription() != 0)
1544 outs() << (*Category)->getDescription() << "\n\n";
1556 Opt = CategorizedOptions[*Category]
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dutil.h83 # define dcgettext(Domainname, Msgid, Category) (Msgid)
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp398 CXString clang_getDiagnosticCategoryName(unsigned Category) { argument
400 return cxstring::createRef(DiagnosticIDs::getCategoryNameFromID(Category));
/external/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp110 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo); local
111 if (Category.empty()) continue; // Skip diags with no category.
113 unsigned &ID = CategoryIDs[Category];
117 CategoryStrings.push_back(Category);
576 // Category number.
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DPreInstructionRegisterInfoMethodItem.java184 if (predecessorRegisterType.category != RegisterType.Category.Unknown &&
/external/llvm/include/llvm/Support/
H A DCommandLine.h142 // Option Category class
156 // The general Option Category (used as default category).
198 OptionCategory *Category; // The Category this option belongs to member in class:llvm::cl::Option
236 void setCategory(OptionCategory &C) { Category = &C; }
243 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) {
338 OptionCategory &Category; member in struct:llvm::cl::cat
339 cat(OptionCategory &c) : Category(c) {}
342 void apply(Opt &O) const { O.setCategory(Category); }
/external/clang/include/clang/Sema/
H A DInitialization.h934 /// \param Category Indicates whether the result will be treated as an
937 ExprValueKind Category);
968 ExprValueKind Category);
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp46 unsigned Category : 5; member in struct:__anon15168::StaticDiagInfoRec
182 return Info->Category;

Completed in 395 milliseconds

12