HomeSort by relevance Sort by last modified time
    Searched defs:Specifier (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Frontend/
Warnings.cpp 137 // table. It also has the "specifier" form of -Werror=foo and -Werror-foo.
139 StringRef Specifier;
140 if (Opt.size() > 5) { // Specifier must be present.
147 Specifier = Opt.substr(6);
150 if (Specifier.empty()) {
157 // Set the warning as error flag for this specifier.
158 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
159 } else if (DiagIDs->getDiagnosticsInGroup(Specifier, _Diags)) {
160 EmitUnknownDiagWarning(Diags, "-Werror=", Specifier, isPositive);
167 StringRef Specifier;
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 215 char Specifier = Tok.front();
218 switch (Specifier) {
256 switch (Specifier) {
298 llvm_unreachable("Unknown specifier in datalayout string");
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
33 /// \brief Represents a C++ nested name specifier, such as
38 /// specifier. Nested name specifiers are made up of a sequence of
40 /// (for dependent names), decltype specifier, or the global specifier ('::').
42 /// nested-namespace-specifier.
53 /// \brief The nested name specifier that precedes this nested name
54 /// specifier.
56 /// The pointer is the nested-name-specifier that precedes this
61 /// \brief The last component in the nested name specifier, whic
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 52 /// 'namespace' identifier '=' qualified-namespace-specifier ';'
246 // Parse (optional) nested-name-specifier.
377 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
380 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
399 // Parse (optional) nested-name-specifier.
440 /// 'using' 'typename'[opt] ::[opt] nested-name-specifier
445 /// 'using' identifier attribute-specifier-seq[opt] = type-id ;
465 // FIXME: This is wrong; we should parse this as a typename-specifier.
471 // Parse nested-name-specifier.
477 // Check nested-name specifier
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 54 /// \brief Represents a C++ nested-name-specifier or a global scope specifier.
78 /// \brief Retrieve the representation of the nested-name-specifier.
83 /// \brief Extend the current nested-name-specifier by another
84 /// nested-name-specifier component of the form 'type::'.
86 /// \param Context The AST context in which this nested-name-specifier
97 /// \brief Extend the current nested-name-specifier by another
98 /// nested-name-specifier component of the form 'identifier::'.
100 /// \param Context The AST context in which this nested-name-specifier
111 /// \brief Extend the current nested-name-specifier by another
    [all...]

Completed in 138 milliseconds