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

1 2 3 4 5 6 7

  /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 35 const std::string Category;
41 : Check(check), Name(name), Category(cat), SuppressonSink(false) {}
43 : Check(checker->getCheckName()), Name(name), Category(cat),
49 StringRef getCategory() const { return Category; }
PathDiagnostic.h 722 std::string Category;
740 StringRef category, PathDiagnosticLocation LocationToUnique,
798 StringRef getCategory() const { return Category; }
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 46 unsigned Category : 5;
75 SHOWINSYSHEADER, CATEGORY) \
78 SHOWINSYSHEADER, CATEGORY, GROUP, STR_SIZE(DESC, uint16_t), DESC \
117 // 1. Add the number of diagnostics in each category preceding the
118 // diagnostic and of the category the diagnostic is in. This gives us
119 // the offset of the category in the table.
120 // 2. Subtract the number of IDs in each category from our ID. This gives us
121 // the offset of the diagnostic in the category.
126 #define CATEGORY(NAME, PREV) \
131 CATEGORY(DRIVER, COMMON
    [all...]
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 154 int Category;
159 Category = Vectorize;
163 Category = Interleave;
167 Category = Unroll;
171 auto &CategoryState = HintAttrs[Category];
193 (Category == Unroll ||
196 // category. As a special case, numeric unroll hints are also not
SemaObjCProperty.cpp 398 if (auto Category = dyn_cast<ObjCCategoryDecl>(OldDC))
399 OldContextName = Category->getClassInterface()->getIdentifier();
    [all...]
SemaDeclObjC.cpp 385 // No need to issue deprecated warning if deprecated mehod in class/category
744 Category,
750 /// between a category/extension and an \@interface or between an \@class and an
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 108 StringRef Category = SplitRegexp.second;
112 Entries[Prefix][Category].Strings.insert(Regexp);
132 if (!Regexps[Prefix][Category].empty())
133 Regexps[Prefix][Category] += "|";
134 Regexps[Prefix][Category] += "^" + Regexp + "$";
158 StringRef Category) const {
162 StringMap<Entry>::const_iterator II = I->second.find(Category);
  /external/v8/tools/
eval_gc_nvp.py 76 class Category:
137 return "<Category: {0}>".format(self.key)
197 categories = [ Category(key, deepcopy(histogram), args.csv, percentiles)
205 for category in categories:
206 category.process_entry(obj)
214 for category in categories:
215 print(category)
  /external/icu/icu4c/source/common/
pluralmap.h 25 * category, but rather represents the absense of a plural category.
27 enum Category {
39 * Converts a category name such as "zero", "one", "two", "few", "many"
40 * or "other" to a category enum. Returns NONE for an unrecognized
41 * category name.
43 static Category toCategory(const char *categoryName);
46 * Converts a category name such as "zero", "one", "two", "few", "many"
47 * or "other" to a category enum. Returns NONE for urecongized
48 * category name
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 124 class Category {
134 Category* prev;
135 Category* next;
138 explicit Category(Type pType)
153 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget);
156 Category::Type pSource,
157 Category::Type pTarget);
162 Category* m_pFile;
163 Category* m_pLocal;
164 Category* m_pLocalDyn
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
mls.py 50 """Factory function for creating MLS category objects."""
55 if isinstance(sym, Category):
62 return Category(policy, sym)
65 return Category(policy, qpol.qpol_cat_t(policy, str(sym)))
67 raise exception.InvalidCategory("{0} is not a valid category".format(sym))
128 "{0} is invalid ({1} is not a valid category range)".format(sym, group))
133 raise exception.InvalidLevel("{0} is invalid ({1} is not a valid category)".
226 """Generator that yields all aliases for this category."""
232 class Category(BaseMLSComponent):
234 """An MLS category.""
    [all...]
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
Category.java 30 * <code>org.apache.log4j.Category</code> class (as found in log4j 1.2) by
44 public class Category {
46 private static final String CATEGORY_FQCN = Category.class.getName();
55 Category(String name) {
63 public static Category getInstance(Class clazz) {
67 public static Category getInstance(String name) {
71 public final Category getParent() {
93 * Return the level in effect for this category/logger.
117 * Returns the assigned {@link Level}, if any, for this Category. This
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 49 * priority data, notification category and person data.
129 Category selectedCategory = (Category) mCategorySpinner.getSelectedItem();
135 ArrayAdapter<Category> categoryArrayAdapter = new ArrayAdapter<Category>(getActivity(),
136 android.R.layout.simple_spinner_item, Category.values());
175 * @param category The category metadata.
181 Notification createNotification(Priority priority, Category category, Uri contactUri)
    [all...]
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 49 * priority data, notification category and person data.
129 Category selectedCategory = (Category) mCategorySpinner.getSelectedItem();
135 ArrayAdapter<Category> categoryArrayAdapter = new ArrayAdapter<Category>(getActivity(),
136 android.R.layout.simple_spinner_item, Category.values());
175 * @param category The category metadata.
181 Notification createNotification(Priority priority, Category category, Uri contactUri)
    [all...]
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 49 * priority data, notification category and person data.
129 Category selectedCategory = (Category) mCategorySpinner.getSelectedItem();
135 ArrayAdapter<Category> categoryArrayAdapter = new ArrayAdapter<Category>(getActivity(),
136 android.R.layout.simple_spinner_item, Category.values());
175 * @param category The category metadata.
181 Notification createNotification(Priority priority, Category category, Uri contactUri)
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 37 // Diagnostic category computation code.
65 // If the DiagGroup has a category, return it.
70 // check these for a category as well.
79 /// getDiagnosticCategory - Return the category that the specified diagnostic
83 // If the diagnostic is in a group, and that group has a category, use it.
85 // Check the diagnostic's diag group for a category.
91 // If the diagnostic itself has a category, get it.
104 // The zero'th category is "".
111 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo);
112 if (Category.empty()) continue; // Skip diags with no category
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-over-slf4j-1.4.2.jar 
  /external/clang/lib/Format/
Format.cpp 354 static void mapping(IO &IO, FormatStyle::IncludeCategory &Category) {
355 IO.mapOptional("Regex", Category.Regex);
356 IO.mapOptional("Priority", Category.Priority);
    [all...]
  /external/protobuf/src/google/protobuf/
repeated_field.h 93 typedef typename std::iterator_traits<Iter>::iterator_category Category;
94 return CalculateReserve(begin, end, Category());
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 152 // Option Category class
170 // The general Option Category (used as default category).
211 OptionCategory *Category; // The Category this option belongs to
245 void setCategory(OptionCategory &C) { Category = &C; }
253 Category(&GeneralCategory), FullyInitialized(false) {}
343 // cat - Specifiy the Option category for the command line argument to belong
346 OptionCategory &Category;
347 cat(OptionCategory &c) : Category(c) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 291 StringRef &Category) {
294 Category = "";
299 Category = In.slice(In.find('[') + 1, In.find(' '));
324 StringRef Class, Category;
325 getObjCClassCategory(SP->getName(), Class, Category);
327 if (Category != "")
328 addAccelObjC(Category, Die);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Locale.java     [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field.h 96 typedef typename std::iterator_traits<Iter>::iterator_category Category;
97 return CalculateReserve(begin, end, Category());
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 

Completed in 1681 milliseconds

1 2 3 4 5 6 7