Searched defs:Category (Results 1 - 25 of 44) sorted by relevance

12

/external/junit/src/main/java/org/junit/experimental/categories/
H A DCategory.java26 * @Category(SlowTests.class)
32 * @Category({SlowTests.class, FastTests.class})
46 public @interface Category { interface
/external/clang/include/clang/Tooling/
H A DCommonOptionsParser.h71 /// All options not belonging to \p Category become hidden.
75 llvm::cl::OptionCategory &Category,
77 : CommonOptionsParser(argc, argv, Category, llvm::cl::OneOrMore,
85 /// All options not belonging to \p Category become hidden.
91 llvm::cl::OptionCategory &Category,
74 CommonOptionsParser(int &argc, const char **argv, llvm::cl::OptionCategory &Category, const char *Overview = nullptr) argument
/external/clang/lib/Tooling/
H A DCommonOptionsParser.cpp96 int &argc, const char **argv, cl::OptionCategory &Category,
101 cl::Optional, cl::cat(Category));
105 cl::cat(Category));
110 cl::cat(Category));
115 cl::cat(Category));
117 cl::HideUnrelatedOptions(Category);
95 CommonOptionsParser( int &argc, const char **argv, cl::OptionCategory &Category, llvm::cl::NumOccurrencesFlag OccurrencesFlag, const char *Overview) argument
/external/llvm/lib/DebugInfo/CodeView/
H A DCodeViewError.cpp42 static ManagedStatic<CodeViewErrorCategory> Category; variable
66 return std::error_code(static_cast<int>(Code), *Category);
/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAError.cpp35 static ManagedStatic<DIAErrorCategory> Category; variable
58 return std::error_code(static_cast<int>(Code), *Category);
/external/llvm/lib/DebugInfo/PDB/
H A DGenericError.cpp42 static ManagedStatic<GenericErrorCategory> Category; variable
66 return std::error_code(static_cast<int>(Code), *Category);
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DRawError.cpp43 static ManagedStatic<RawErrorCategory> Category; variable
66 return std::error_code(static_cast<int>(Code), *Category);
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h35 const std::string Category; member in class:clang::ento::BugType
41 : Check(check), Name(name), Category(cat), SuppressonSink(false) {}
43 : Check(checker->getCheckName()), Name(name), Category(cat),
49 StringRef getCategory() const { return Category; }
H A DPathDiagnostic.h722 std::string Category; member in class:clang::ento::PathDiagnostic
798 StringRef getCategory() const { return Category; }
/external/v8/tools/
H A Deval_gc_nvp.py76 class Category: class in inherits:
137 return "<Category: {0}>".format(self.key)
197 categories = [ Category(key, deepcopy(histogram), args.csv, percentiles)
/external/webrtc/webrtc/modules/video_capture/windows/
H A Dhelp_functions_ds.cc68 IPin* GetOutputPin(IBaseFilter* filter, REFGUID Category) argument
86 if (Category == GUID_NULL || PinMatchesCategory(pin, Category))
99 BOOL PinMatchesCategory(IPin *pPin, REFGUID Category) argument
112 bFound = (PinCategory == Category);
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp46 unsigned Category : 5; member in struct:__anon1160::StaticDiagInfoRec
178 return Info->Category;
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp169 enum { Vectorize, Interleave, Unroll, Distribute } Category; local
173 Category = Vectorize;
177 Category = Interleave;
181 Category = Unroll;
185 Category = Distribute;
189 auto &CategoryState = HintAttrs[Category];
212 (Category == Unroll ||
H A DSemaObjCProperty.cpp399 if (auto Category = dyn_cast<ObjCCategoryDecl>(OldDC))
400 OldContextName = Category->getClassInterface()->getIdentifier();
871 auto Category = dyn_cast<ObjCCategoryDecl>(Prop->getDeclContext());
872 if (!Category || !Category->IsClassExtension()) return false;
875 auto OrigClass = Category->getClassInterface();
1003 ObjCCategoryDecl *Category = local
1008 if (!Category)
1011 property = Category->FindPropertyDeclaration(PropertyId, QueryKind);
1014 << Category
[all...]
/external/icu/icu4c/source/common/
H A Dpluralmap.h29 enum Category { enum in class:PluralMapBase
45 static Category toCategory(const char *categoryName);
52 static Category toCategory(const UnicodeString &categoryName);
58 static const char *getCategoryName(Category category);
139 const T *next(Category &index) const {
144 index = static_cast<Category>(idx);
148 index = static_cast<Category>(idx);
155 T *nextMutable(Category &index) {
173 const T &get(Category v) const {
183 * works just like get(Category)
[all...]
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp108 StringRef Category = SplitRegexp.second; local
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/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h98 unsigned Category, unsigned Flag, StringRef Message) {
97 visitDiagnosticRecord(unsigned Severity, const Location &Location, unsigned Category, unsigned Flag, StringRef Message) argument
/external/clang/lib/Format/
H A DSortJavaScriptImports.cpp82 ReferenceCategory Category = ReferenceCategory::SIDE_EFFECT; member in struct:clang::format::JsModuleReference
98 if (LHS.Category != RHS.Category)
99 return LHS.Category < RHS.Category;
100 if (LHS.Category == JsModuleReference::ReferenceCategory::SIDE_EFFECT)
103 // This retains transitivity because LHS.Category == RHS.Category here.
165 Reference.Category != References[Indices[i + 1]].Category))
[all...]
H A DFormat.cpp378 static void mapping(IO &IO, FormatStyle::IncludeCategory &Category) { argument
379 IO.mapOptional("Regex", Category.Regex);
380 IO.mapOptional("Priority", Category.Priority);
1197 int Category; member in struct:clang::format::__anon1303::IncludeDirective
1228 return std::tie(Includes[LHSI].Category, Includes[LHSI].Filename) <
1229 std::tie(Includes[RHSI].Category, Includes[RHSI].Filename);
1273 for (const auto &Category : Style.IncludeCategories)
1274 CategoryRegexs.emplace_back(Category.Regex);
1360 int Category = Categories.getIncludePriority(
1363 if (Category
[all...]
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DCategory.java30 * <code>org.apache.log4j.Category</code> class (as found in log4j 1.2) by
44 public class Category { class
46 private static final String CATEGORY_FQCN = Category.class.getName();
55 Category(String name) { method in class:Category
63 public static Category getInstance(Class clazz) {
67 public static Category getInstance(String name) {
71 public final Category getParent() {
117 * Returns the assigned {@link Level}, if any, for this Category. This
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp413 CXString clang_getDiagnosticCategoryName(unsigned Category) { argument
415 return cxstring::createRef(DiagnosticIDs::getCategoryNameFromID(Category));
/external/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp111 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo); local
112 if (Category.empty()) continue; // Skip diags with no category.
114 unsigned &ID = CategoryIDs[Category];
118 CategoryStrings.push_back(Category);
578 // Category number.
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-over-slf4j-1.4.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Category ...
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp120 unsigned Category, unsigned Flag, StringRef Message) override;
477 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // Category.
486 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Category ID.
488 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Category text.
847 unsigned Category, unsigned Flag, StringRef Message) {
850 Location.Col, Location.Offset, CategoryLookup[Category],
845 visitDiagnosticRecord( unsigned Severity, const serialized_diags::Location &Location, unsigned Category, unsigned Flag, StringRef Message) argument
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DULocale.java266 public enum Category { enum in class:ULocale
268 * Category used to represent the default locale for displaying user interfaces.
272 * Category used to represent the default locale for formatting date, number and/or currency.
527 private static Locale[] defaultCategoryLocales = new Locale[Category.values().length];
528 private static ULocale[] defaultCategoryULocales = new ULocale[Category.values().length];
542 for (Category cat: Category.values()) {
567 for (Category cat: Category.values()) {
605 for (Category ca
[all...]

Completed in 1489 milliseconds

12