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

1 2

  /external/bison/lib/
main.c 26 # define setlocale(Category, Locale)
gettext.h 71 # define dcgettext(Domainname, Msgid, Category) \
72 ((void) (Category), dgettext (Domainname, Msgid))
82 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
83 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
126 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \
127 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
137 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \
138 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
150 int category)
152 const char *translation = dcgettext (domain, msg_ctxt_id, category);
    [all...]
  /frameworks/compile/mclinker/lib/MC/
SymbolCategory.cpp 18 // Category
19 SymbolCategory::Category::Type
20 SymbolCategory::Category::categorize(const ResolveInfo& pInfo)
23 return Category::File;
25 return Category::Local;
27 return Category::Common;
30 return Category::Dynamic;
31 return Category::Regular;
38 m_pFile = new Category(Category::File)
    [all...]
  /external/junit/src/org/junit/experimental/categories/
Category.java 23 @Category(SlowTests.class)
29 @Category({SlowTests.class, FastTests.class})
41 public @interface Category {
Categories.java 21 * annotated with either the category given with the @IncludeCategory
22 * annotation, or a subtype of that category.
24 * Note that, for now, annotating suites with {@code @Category} has no effect.
42 * @Category(SlowTests.class)
48 * @Category( { SlowTests.class, FastTests.class })
97 return "category " + fIncluded;
140 Category annotation= description.getAnnotation(Category.class);
178 if (each.getAnnotation(Category.class) != null)
179 throw new InitializationError("Category annotations on Parameterized classes are not supported on individual methods.")
    [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...]
AnalyzedInstruction.java 89 RegisterType unknown = RegisterType.getRegisterType(RegisterType.Category.Unknown, null);
286 if (preInstructionDestRegisterType.category != RegisterType.Category.UninitRef &&
287 preInstructionDestRegisterType.category != RegisterType.Category.UninitThis) {
  /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);
180 Category* m_pFile;
181 Category* m_pLocal;
182 Category* m_pLocalDyn;
183 Category* m_pCommon;
184 Category* m_pDynamic
    [all...]
  /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; }
BugReporter.h 479 StringRef BugName, StringRef Category,
482 EmitBasicReport(DeclWithIssue, BugName, Category, BugStr, Loc, &R, 1);
493 /// category.
494 BugType *getBugTypeForName(StringRef name, StringRef category);
PathDiagnostic.h 669 std::string Category;
684 StringRef category, PathDiagnosticLocation LocationToUnique,
730 StringRef getCategory() const { return Category; }
  /ndk/sources/host-tools/make-3.81/
gettext.h 36 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
41 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
  /external/e2fsprogs/intl/
libgettext.h 103 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
143 # define dcgettext(Domainname, Msgid, Category) \
154 dcgettext__ (Domainname, Msgid, Category); \
160 __result = dcgettext__ (Domainname, Msgid, Category); \
170 # define dcgettext(Domainname, Msgid, Category) (Msgid)
  /ndk/sources/host-tools/sed-4.2.1/lib/
gettext.h 73 # define dcgettext(Domainname, Msgid, Category) \
74 ((void) (Category), dgettext (Domainname, Msgid))
84 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
85 ((void) (Category), dngettext(Domainname, Msgid1, Msgid2, N))
122 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \
123 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
133 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \
134 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
146 int category)
148 const char *translation = dcgettext (domain, msg_ctxt_id, category);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
LintPreferencePage.java 29 import com.android.tools.lint.detector.api.Category;
578 private Map<Category, List<Issue>> mCategoryToIssues;
588 return element instanceof Category;
619 mCategoryToIssues = new HashMap<Category, List<Issue>>();
641 // Preserve the current category order, so instead of
644 List<Category> categories = new ArrayList<Category>(mCategoryToIssues.size());
645 for (Category category : mRegistry.getCategories()) {
646 if (mCategoryToIssues.containsKey(category)) {
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 398 CXString clang_getDiagnosticCategoryName(unsigned Category) {
400 return cxstring::createRef(DiagnosticIDs::getCategoryNameFromID(Category));
  /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/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java 184 if (predecessorRegisterType.category != RegisterType.Category.Unknown &&
  /external/clang/include/clang/Sema/
Initialization.h     [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 45 unsigned Category : 5;
70 CATEGORY) \
72 NOWERROR, SHOWINSYSHEADER, CATEGORY, GROUP, \
116 // 1. Add the number of diagnostics in each category preceeding 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.
126 #define CATEGORY(NAME, PREV) \
131 CATEGORY(DRIVER, COMMON
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 97 ATTRIBUTE User-Category 1029 string
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 329 >Category: $CATEGORY_C
377 /^>Category/s/^>Category:.*/>Category: send-pr/
438 # 4) Category
440 PATTERN=">Category:"
441 CATEGORY=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
445 if [ "$C" = "$CATEGORY" ]; then FOUND=true ; break ; fi
450 if [ -z "$CATEGORY" ]; then
451 echo "$COMMAND: you must include a Category: field in your report.
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 47 import com.android.tools.lint.detector.api.Category;
280 private void checkCreateTemplate(String category, String name) throws Exception {
283 File templateFile = findTemplate(category, name);
292 private static File findTemplate(String category, String name) {
295 File file = new File(templateRootFolder, category + File.separator + name);
782 if (issue.getCategory() == Category.ICONS){
    [all...]

Completed in 1170 milliseconds

1 2