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

1 2

  /external/clang/include/clang/Basic/
DiagnosticCategories.h 17 #define CATEGORY(X, ENUM) ENUM,
19 #undef CATEGORY
DiagnosticIDs.h 52 SFINAE,ACCESS,CATEGORY,NOWERROR,SHOWINSYSHEADER) ENUM,
178 /// \brief Return the category number that a specified \p DiagID belongs to,
179 /// or 0 if no category.
185 /// \brief Given a category ID, return the name of the category.
189 /// category.
199 /// deduction fall into this category.
204 /// Warnings generally fall into this category.
210 /// template instantiation depth exceeded) fall into this category.
  /external/clang/include/clang/AST/
CommentDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
ASTDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Analysis/
AnalysisDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Driver/
DriverDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Frontend/
FrontendDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Lex/
LexDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Parse/
ParseDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Sema/
SemaDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/clang/include/clang/Serialization/
SerializationDiagnostic.h 19 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER,CATEGORY) ENUM,
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
adm_writer_unittest.py 62 CATEGORY !!chromium
65 END CATEGORY
67 CATEGORY !!chromium_recommended
70 END CATEGORY
106 CATEGORY !!google
107 CATEGORY !!googlechrome
120 END CATEGORY
121 END CATEGORY
123 CATEGORY !!google
124 CATEGORY !!googlechrome_recommende
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 46 unsigned Category : 5;
71 CATEGORY) \
73 NOWERROR, SHOWINSYSHEADER, CATEGORY, GROUP, \
115 // 1. Add the number of diagnostics in each category preceeding the
116 // diagnostic and of the category the diagnostic is in. This gives us
117 // the offset of the category in the table.
118 // 2. Subtract the number of IDs in each category from our ID. This gives us
119 // the offset of the diagnostic in the category.
124 #define CATEGORY(NAME, PREV) \
129 CATEGORY(DRIVER, COMMON
    [all...]
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 33 CATEGORY) \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 39 CATEGORY = "category"
108 CATEGORY,
sre_parse.py 45 r"\d": (IN, [(CATEGORY, CATEGORY_DIGIT)]),
46 r"\D": (IN, [(CATEGORY, CATEGORY_NOT_DIGIT)]),
47 r"\s": (IN, [(CATEGORY, CATEGORY_SPACE)]),
48 r"\S": (IN, [(CATEGORY, CATEGORY_NOT_SPACE)]),
49 r"\w": (IN, [(CATEGORY, CATEGORY_WORD)]),
50 r"\W": (IN, [(CATEGORY, CATEGORY_NOT_WORD)]),
146 UNITCODES = (ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY)
sre_compile.py 150 elif op is CATEGORY:
197 elif op is CATEGORY:
222 elif op is CATEGORY:
318 elif op is CATEGORY:
319 # XXX: could expand category
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 39 CATEGORY = "category"
108 CATEGORY,