HomeSort by relevance Sort by last modified time
    Searched defs:Category (Results 1 - 25 of 33) sorted by null

1 2

  /external/junit/src/org/junit/experimental/categories/
Category.java 23 @Category(SlowTests.class)
29 @Category({SlowTests.class, FastTests.class})
41 public @interface Category {
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 32 const std::string Category;
36 : Name(name), Category(cat), SuppressonSink(false) {}
41 StringRef getCategory() const { return Category; }
PathDiagnostic.h 714 std::string Category;
732 StringRef category, PathDiagnosticLocation LocationToUnique,
789 StringRef getCategory() const { return Category; }
  /external/llvm/unittests/Transforms/Utils/
SpecialCaseList.cpp 88 StringRef Category;
89 EXPECT_TRUE(SCL->findCategory(*Foo, Category));
90 EXPECT_EQ("functional", Category);
  /external/llvm/lib/Transforms/Utils/
SpecialCaseList.cpp 88 StringRef Category = SplitRegexp.second;
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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
RegisterType.java 43 public final Category category; field in class:RegisterType
46 private RegisterType(Category category, ClassDef type) {
47 assert ((category == Category.Reference || category == Category.UninitRef || category == Category.UninitThis) &
    [all...]
MethodAnalyzer.java 161 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));
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 129 class Category
147 Category* prev;
148 Category* next;
151 Category(Type pType)
175 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget);
178 Category::Type pSource,
179 Category::Type pTarget);
184 Category* m_pFile;
185 Category* m_pLocal;
186 Category* m_pLocalDyn
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 36 // Diagnostic category computation code.
64 // If the DiagGroup has a category, return it.
69 // check these for a category as well.
78 /// getDiagnosticCategory - Return the category that the specified diagnostic
82 // If the diagnostic is in a group, and that group has a category, use it.
84 // Check the diagnostic's diag group for a category.
90 // If the diagnostic itself has a category, get it.
103 // The zero'th category is "".
110 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo);
111 if (Category.empty()) continue; // Skip diags with no category
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 46 unsigned Category : 5;
71 CATEGORY) \
73 NOWERROR, SHOWINSYSHEADER, CATEGORY, GROUP, \
115 // 1. Add the number of diagnostics in each category preceeding the
116 // diagnostic and of the category the diagnostic is in. This gives us
117 // the offset of the category in the table.
118 // 2. Subtract the number of IDs in each category from our ID. This gives us
119 // the offset of the diagnostic in the category.
124 #define CATEGORY(NAME, PREV) \
129 CATEGORY(DRIVER, COMMON
    [all...]
  /external/chromium/net/base/
host_resolver_impl.cc 538 enum Category { // Used in HISTOGRAM_ENUMERATION.
545 int category = RESOLVE_MAX; // Illegal value for later DCHECK only. local
550 category = RESOLVE_SUCCESS;
553 category = RESOLVE_SPECULATIVE_SUCCESS;
558 category = RESOLVE_FAIL;
561 category = RESOLVE_SPECULATIVE_FAIL;
568 DCHECK_LT(category, static_cast<int>(RESOLVE_MAX)); // Be sure it was set.
570 UMA_HISTOGRAM_ENUMERATION("DNS.ResolveCategory", category, RESOLVE_MAX);
578 category, RESOLVE_MAX);
579 if (RESOLVE_SUCCESS == category) {
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
SemaOverload.cpp 105 /// category corresponding to the given implicit conversion kind.
109 Category[(int)ICK_Num_Conversion_Kinds] = {
133 return Category[(int)Kind];
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 142 // Option Category class
156 // The general Option Category (used as default category).
198 OptionCategory *Category; // The Category this option belongs to
236 void setCategory(OptionCategory &C) { Category = &C; }
243 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) {
335 // cat - Specifiy the Option category for the command line argument to belong
338 OptionCategory &Category;
339 cat(OptionCategory &c) : Category(c) {
    [all...]
  /external/chromium_org/chrome/browser/google_apis/
gdata_wapi_parser.cc 30 // Term values for kSchemeKind category:
45 const char kCategoryNode[] = "category";
70 const char kCategoryField[] = "category";
226 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" },
236 AppIcon::IconCategory category; member in struct:google_apis::__anon7550::AppIconCategoryMap
378 // Category implementation
380 Category::Category() : type_(CATEGORY_UNKNOWN)
664 const Category* category = categories_[i]; local
    [all...]
gdata_wapi_parser.h 189 // Entry category.
190 class Category {
199 Category();
204 base::JSONValueConverter<Category>* converter);
206 // Category label.
209 // Category type.
212 // Category term.
221 // Converts category scheme into CategoryType enum. For example,
222 // http://schemas.google.com/g/2005#kind => Category::CATEGORY_KIND
232 DISALLOW_COPY_AND_ASSIGN(Category);
284 IconCategory category() const { return category_; } function in class:google_apis::AppIcon
    [all...]
  /external/chromium_org/net/dns/
host_resolver_impl.cc 768 enum Category { // Used in HISTOGRAM_ENUMERATION.
775 int category = RESOLVE_MAX; // Illegal value for later DCHECK only. local
780 category = RESOLVE_SUCCESS;
783 category = RESOLVE_SPECULATIVE_SUCCESS;
802 category = RESOLVE_FAIL;
805 category = RESOLVE_SPECULATIVE_FAIL;
825 DCHECK_LT(category, static_cast<int>(RESOLVE_MAX)); // Be sure it was set.
827 UMA_HISTOGRAM_ENUMERATION("DNS.ResolveCategory", category, RESOLVE_MAX);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 314 StringRef &Category) {
317 Category = "";
322 Category = In.slice(In.find('[') + 1, In.find(' '));
345 StringRef Class, Category;
346 getObjCClassCategory(SP.getName(), Class, Category);
348 if (Category != "")
349 TheCU->addAccelObjC(Category, Die);
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 

Completed in 714 milliseconds

1 2