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

12

/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
/external/clang/lib/Tooling/
H A DCommonOptionsParser.cpp57 cl::OptionCategory &Category,
62 cl::Optional, cl::cat(Category));
66 cl::cat(Category));
73 if (I->second->Category != &Category && I->first() != "help" &&
56 CommonOptionsParser(int &argc, const char **argv, cl::OptionCategory &Category, const char *Overview) argument
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Duser_event_detail.js77 this.category = cvox.UserEventDetail.Category.JUMP;
87 this.category = cvox.UserEventDetail.Category.CUSTOM;
117 * Category of the user event. This is the event name that the web app should
121 cvox.UserEventDetail.Category = {
/external/chromium_org/third_party/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/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.h719 std::string Category; member in class:clang::ento::PathDiagnostic
795 StringRef getCategory() const { return Category; }
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DAttachDialog.cs28 Category = ProcessCategory.Other;
38 public ProcessCategory Category; field in class:ChromeDebug.AttachDialog.ProcessViewItem
130 item.Category = DetermineProcessCategory(item.Detail.Win32ProcessImagePath,
134 List<ProcessViewItem> items = loadedProcessTable[item.Category];
135 item.Group = processGroups[item.Category];
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp139 int Category; local
143 Category = 0;
147 Category = 1;
151 Category = 2;
155 auto &CategoryState = Options[Category];
H A DSemaObjCProperty.cpp899 ObjCCategoryDecl *Category = local
904 if (!Category)
907 property = Category->FindPropertyDeclaration(PropertyId);
910 << Category->getDeclName();
H A DSemaOverload.cpp112 Category[(int)ICK_Num_Conversion_Kinds] = { local
136 return Category[(int)Kind];
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp104 StringRef Category = SplitRegexp.second; local
109 Category = "init";
112 Category = "init";
115 Category = "init";
120 Entries[Prefix][Category].Strings.insert(Regexp);
140 if (!Regexps[Prefix][Category].empty())
141 Regexps[Prefix][Category] += "|";
142 Regexps[Prefix][Category] += "^" + Regexp + "$";
161 const StringRef Category) const {
164 StringMap<Entry>::const_iterator II = I->second.find(Category);
[all...]
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp414 CXString clang_getDiagnosticCategoryName(unsigned Category) { argument
416 return cxstring::createRef(DiagnosticIDs::getCategoryNameFromID(Category));
/external/chromium_org/google_apis/drive/
H A Dgdata_wapi_parser.cc136 Category::CategoryType type;
141 { Category::CATEGORY_KIND, "http://schemas.google.com/g/2005#kind" },
142 { Category::CATEGORY_LABEL, "http://schemas.google.com/g/2005/labels" },
266 // Category implementation
268 Category::Category() : type_(CATEGORY_UNKNOWN) { function in class:google_apis::Category
272 bool Category::GetCategoryTypeFromScheme(
273 const base::StringPiece& scheme, Category::CategoryType* result) {
285 void Category::RegisterJSONConverter(
286 base::JSONValueConverter<Category>* converte
[all...]
H A Dgdata_wapi_parser.h182 class Category { class in namespace:google_apis
191 Category();
196 base::JSONValueConverter<Category>* converter);
198 // Category label.
201 // Category type.
204 // Category term.
214 // http://schemas.google.com/g/2005#kind => Category::CATEGORY_KIND
224 DISALLOW_COPY_AND_ASSIGN(Category);
278 const ScopedVector<Category>& categories() const { return categories_; }
287 void set_categories(ScopedVector<Category> categorie
[all...]
/external/clang/lib/Basic/
H A DDiagnosticIDs.cpp46 unsigned Category : 5; member in struct:__anon17790::StaticDiagInfoRec
177 return Info->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);
579 // Category number.
H A DClangAttrEmitter.cpp2820 const Record *Category = Doc.getValueAsDef("Category"); local
2824 std::string Cat = Category->getValueAsString("Name");
2832 SplitDocs[Category].push_back(DocumentationData(Doc, Attr));
/external/llvm/include/llvm/Support/
H A DCommandLine.h141 // Option Category class
155 // The general Option Category (used as default category).
197 OptionCategory *Category; // The Category this option belongs to member in class:llvm::cl::Option
235 void setCategory(OptionCategory &C) { Category = &C; }
242 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) {
343 OptionCategory &Category; member in struct:llvm::cl::cat
344 cat(OptionCategory &c) : Category(c) {}
347 void apply(Opt &O) const { O.setCategory(Category); }
/external/chromium_org/net/dns/
H A Dhost_resolver_impl.cc770 enum Category { // Used in UMA_HISTOGRAM_ENUMERATION. enum
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp248 StringRef &Category) {
251 Category = "";
256 Category = In.slice(In.find('[') + 1, In.find(' '));
288 StringRef Class, Category; local
289 getObjCClassCategory(SP.getName(), Class, Category);
291 if (Category != "")
292 addAccelObjC(Category, Die);
247 getObjCClassCategory(StringRef In, StringRef &Class, StringRef &Category) argument
/external/clang/lib/AST/
H A DASTImporter.cpp3617 ObjCCategoryDecl *Category = cast_or_null<ObjCCategoryDecl>( local
3619 if (!Category)
3622 ObjCCategoryImplDecl *ToImpl = Category->getImplementation();
3631 Category->getClassInterface(),
3646 Category->setImplementation(ToImpl);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3473 StringRef Name, StringRef Category,
3476 EmitBasicReport(DeclWithIssue, Checker->getCheckName(), Name, Category, Str,
3471 EmitBasicReport(const Decl *DeclWithIssue, const CheckerBase *Checker, StringRef Name, StringRef Category, StringRef Str, PathDiagnosticLocation Loc, ArrayRef<SourceRange> Ranges) argument
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp2918 // decl. Additionally, note that Category can be null for the @implementation
2922 const ObjCCategoryDecl *Category = local
2950 if (Category) {
2953 Category->protocol_begin(),
2954 Category->protocol_end());
2961 if (Category) {
2963 OCD, Category, ObjCTypes);
5995 const ObjCCategoryDecl *Category = local
5997 if (Category) {
6003 + Category
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 632 milliseconds

12