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

1 2 3

  /external/junit/src/org/junit/experimental/categories/
Category.java 23 @Category(SlowTests.class)
29 @Category({SlowTests.class, FastTests.class})
41 public @interface Category {
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
user_event_detail.js 65 * The category of command that should be performed.
68 this.category = '';
77 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 = {
169 evt.initCustomEvent(this.category, true, true, this);
  /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 719 std::string Category;
737 StringRef category, PathDiagnosticLocation LocationToUnique,
795 StringRef getCategory() const { return Category; }
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 139 int Category;
143 Category = 0;
147 Category = 1;
151 Category = 2;
155 auto &CategoryState = Options[Category];
186 // same category.
SemaObjCProperty.cpp     [all...]
SemaOverload.cpp 108 /// category corresponding to the given implicit conversion kind.
112 Category[(int)ICK_Num_Conversion_Kinds] = {
136 return Category[(int)Kind];
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 104 StringRef Category = SplitRegexp.second;
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...]
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 126 class Category
144 Category* prev;
145 Category* next;
148 Category(Type pType)
172 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget);
175 Category::Type pSource,
176 Category::Type pTarget);
181 Category* m_pFile;
182 Category* m_pLocal;
183 Category* m_pLocalDyn
    [all...]
  /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/chromium_org/google_apis/drive/
gdata_wapi_parser.cc 29 // Term values for kSchemeKind category:
37 const char kCategoryField[] = "category";
136 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) {
271 // Converts category.scheme into CategoryType enum.
272 bool Category::GetCategoryTypeFromScheme
441 const Category* category = categories_[i]; local
    [all...]
gdata_wapi_parser.h 181 // Entry category.
182 class Category {
191 Category();
196 base::JSONValueConverter<Category>* converter);
198 // Category label.
201 // Category type.
204 // Category term.
213 // Converts category scheme into CategoryType enum. For example,
214 // http://schemas.google.com/g/2005#kind => Category::CATEGORY_KIND
224 DISALLOW_COPY_AND_ASSIGN(Category);
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 46 unsigned Category : 5;
70 SHOWINSYSHEADER, CATEGORY) \
73 SHOWINSYSHEADER, CATEGORY, GROUP, STR_SIZE(DESC, uint16_t), DESC \
116 // 1. Add the number of diagnostics in each category preceding the
117 // diagnostic and of the category the diagnostic is in. This gives us
118 // the offset of the category in the table.
119 // 2. Subtract the number of IDs in each category from our ID. This gives us
120 // the offset of the diagnostic in the category.
125 #define CATEGORY(NAME, PREV) \
130 CATEGORY(DRIVER, COMMON
    [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...]
ClangAttrEmitter.cpp     [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 141 // Option Category class
155 // The general Option Category (used as default category).
197 OptionCategory *Category; // The Category this option belongs to
235 void setCategory(OptionCategory &C) { Category = &C; }
242 ArgStr(""), HelpStr(""), ValueStr(""), Category(&GeneralCategory) {
340 // cat - Specifiy the Option category for the command line argument to belong
343 OptionCategory &Category;
344 cat(OptionCategory &c) : Category(c) {
    [all...]
  /external/chromium_org/net/dns/
host_resolver_impl.cc 770 enum Category { // Used in UMA_HISTOGRAM_ENUMERATION.
777 int category = RESOLVE_MAX; // Illegal value for later DCHECK only. local
782 category = RESOLVE_SUCCESS;
785 category = RESOLVE_SPECULATIVE_SUCCESS;
804 category = RESOLVE_FAIL;
807 category = RESOLVE_SPECULATIVE_FAIL;
827 DCHECK_LT(category, static_cast<int>(RESOLVE_MAX)); // Be sure it was set.
829 UMA_HISTOGRAM_ENUMERATION("DNS.ResolveCategory", category, RESOLVE_MAX);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 248 StringRef &Category) {
251 Category = "";
256 Category = In.slice(In.find('[') + 1, In.find(' '));
288 StringRef Class, Category;
289 getObjCClassCategory(SP.getName(), Class, Category);
291 if (Category != "")
292 addAccelObjC(Category, Die);
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
strmini.h 127 GUID* Category;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/
tycho-metadata-model-0.20.0.jar 
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 839 milliseconds

1 2 3