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

  /external/clang/lib/Frontend/
Warnings.cpp 131 // table. It also has the "specifier" form of -Werror=foo and -Werror-foo.
133 StringRef Specifier;
134 if (Opt.size() > 5) { // Specifier must be present.
141 Specifier = Opt.substr(6);
144 if (Specifier.empty()) {
151 // Set the warning as error flag for this specifier.
152 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
153 } else if (DiagIDs->getDiagnosticsInGroup(Specifier, _Diags)) {
154 EmitUnknownDiagWarning(Diags, "-Werror=", Specifier, isPositive);
161 StringRef Specifier;
    [all...]
  /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/llvm/lib/Target/
TargetData.cpp 173 StringRef Specifier = Split.first;
176 assert(!Specifier.empty() && "Can't be empty here");
178 switch (Specifier[0]) {
226 char field = Specifier[0];
235 int Size = getInt(Specifier.substr(1));
265 Specifier = Specifier.substr(1);
267 int Width = getInt(Specifier);
269 return std::string("invalid native integer size \'") + Specifier.str() +
275 Specifier = Split.first
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 49 /// 'namespace' identifier '=' qualified-namespace-specifier ';'
237 // Parse (optional) nested-name-specifier.
368 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
371 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
390 // Parse (optional) nested-name-specifier.
431 /// 'using' 'typename'[opt] ::[opt] nested-name-specifier
456 // FIXME: This is wrong; we should parse this as a typename-specifier.
465 // Parse nested-name-specifier.
468 // Check nested-name specifier.
568 // ignoring the parameters, just in case the nested name specifier
    [all...]

Completed in 66 milliseconds