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

1 2

  /external/bison/lib/
main.c 28 # define setlocale(Category, Locale)
gettext.h 56 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
61 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
  /external/astl/tests/
test_iterator.cpp 71 enum Category {UNKNOWN, INPUT, FORWARD, BIDIRECTIONAL, RANDOM};
74 Category category(_Category) { function in namespace:android
79 Category
80 category<std::input_iterator_tag>(std::input_iterator_tag) { function in namespace:android
85 Category
86 category<std::forward_iterator_tag>(std::forward_iterator_tag) { function in namespace:android
91 Category
92 category<std::bidirectional_iterator_tag>(std::bidirectional_iterator_tag) { function in namespace:android
97 Category
98 category<std::random_access_iterator_tag>(std::random_access_iterator_tag) { function in namespace:android
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 31 const std::string Category;
35 : Name(name), Category(cat), SuppressonSink(false) {}
40 StringRef getCategory() const { return Category; }
BugReporter.h 321 void EmitBasicReport(StringRef BugName, StringRef Category,
324 EmitBasicReport(BugName, Category, BugStr, Loc, &R, 1);
333 /// category.
334 BugType *getBugTypeForName(StringRef name, StringRef category);
PathDiagnostic.h 473 std::string Category;
480 StringRef category);
486 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...]
  /external/clang/lib/AST/
DeclObjC.cpp 715 /// FindCategoryDeclaration - Finds category declaration in the list of
716 /// categories for this class and returns it. Name of the category is passed
717 /// in 'CategoryId'. If category not found, return 0;
724 for (ObjCCategoryDecl *Category = getCategoryList();
725 Category; Category = Category->getNextClassCategory())
726 if (Category->getIdentifier() == CategoryId)
727 return Category;
733 for (ObjCCategoryDecl *Category = getCategoryList()
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 29 // Diagnostic category computation code.
58 // If the DiagGroup has a category, return it.
63 // check these for a category as well.
72 /// getDiagnosticCategory - Return the category that the specified diagnostic
76 // If the diagnostic is in a group, and that group has a category, use it.
78 // Check the diagnostic's diag group for a category.
84 // If the diagnostic itself has a category, get it.
97 // The zero'th category is "".
104 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo);
105 if (Category.empty()) continue; // Skip diags with no category
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 252 CXString clang_getDiagnosticCategoryName(unsigned Category) {
253 return createCXString(DiagnosticIDs::getCategoryNameFromID(Category));
CXCursor.cpp 748 // If we have a class or category implementation, jump straight to the
775 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
776 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(),
777 PEnd = Category->protocol_end();
788 for (ObjCCategoryDecl *Category = Interface->getCategoryList();
789 Category; Category = Category->getNextClassCategory())
790 CollectOverriddenMethods(TU, Category, Method, Methods);
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
SemaObjCProperty.cpp 532 // Find the class or category class where this property must have
577 ObjCCategoryDecl *Category =
580 // If category for this implementation not found, it is an error which
582 if (!Category)
584 // Look for this property declaration in @implementation's category
585 property = Category->FindPropertyDeclaration(PropertyId);
588 << Category->getDeclName();
    [all...]
  /external/clang/include/clang/Sema/
Initialization.h 779 ExprValueKind Category);
812 ExprValueKind Category);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 79 StringRef category)
83 Category(StripTrailingDots(category)) {}
367 ID.AddString(Category);
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 52 unsigned Category : 5;
122 CATEGORY,BRIEF,FULL) \
124 NOWERROR, SHOWINSYSHEADER, CATEGORY, \
219 /// getCategoryNumberForDiag - Return the category number that a specified
220 /// DiagID belongs to, or 0 if no category.
223 return Info->Category;
228 // The diagnostic category names.
257 #define CATEGORY(X, ENUM) { X, STR_SIZE(X, uint8_t) },
268 /// getCategoryNameFromID - Given a category ID, return the name of the
269 /// category, an empty string if CategoryID is zero, or null if CategoryID i
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 97 ATTRIBUTE User-Category 1029 string
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/bin/
arm-eabi-gccbug 330 >Category: $CATEGORY_C
378 /^>Category/s/^>Category:.*/>Category: send-pr/
439 # 4) Category
441 PATTERN=">Category:"
442 CATEGORY=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
446 if [ "$C" = "$CATEGORY" ]; then FOUND=true ; break ; fi
451 if [ -z "$CATEGORY" ]; then
452 echo "$COMMAND: you must include a Category: field in your report.
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/bin/
arm-eabi-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...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/bin/
arm-eabi-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...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/bin/
arm-eabi-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...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/bin/
arm-linux-androideabi-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...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/bin/
arm-eabi-gccbug 330 >Category: $CATEGORY_C
378 /^>Category/s/^>Category:.*/>Category: send-pr/
439 # 4) Category
441 PATTERN=">Category:"
442 CATEGORY=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
446 if [ "$C" = "$CATEGORY" ]; then FOUND=true ; break ; fi
451 if [ -z "$CATEGORY" ]; then
452 echo "$COMMAND: you must include a Category: field in your report.
    [all...]

Completed in 458 milliseconds

1 2