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

  /external/clang/lib/Basic/
Warnings.cpp 135 // table. It also has the "specifier" form of -Werror=foo and -Werror-foo.
137 StringRef Specifier;
138 if (Opt.size() > 5) { // Specifier must be present.
145 Specifier = Opt.substr(6);
148 if (Specifier.empty()) {
155 // Set the warning as error flag for this specifier.
156 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
157 } else if (DiagIDs->getDiagnosticsInGroup(Specifier, _Diags)) {
158 EmitUnknownDiagWarning(Diags, "-Werror=", Specifier, isPositive);
165 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...]
DeclCXX.h 91 /// \brief Represents an access specifier followed by colon ':'.
94 /// of an access specifier followed by a colon in the list of member
114 /// \brief The location of the access specifier.
116 /// \brief Sets the location of the access specifier.
119 /// \brief The location of the colon following the access specifier.
159 /// specifier, including the "virtual" (if present) and access
160 /// specifier (if present).
172 /// This determines the mapping from the access specifier as written in the
173 /// source code to the access specifier used for semantic analysis.
176 /// \brief Access specifier as written in the source code (may be AS_none)
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 132 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
134 uint64_t Size, DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
136 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
  /external/clang/lib/AST/
CXXInheritance.cpp 216 // Add this base specifier to the current path.
281 // Pop this base specifier off the current path (if we're
366 bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier,
371 return Specifier->getType()->castAs<RecordType>()->getDecl()
375 bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier,
380 return Specifier->isVirtual() &&
381 Specifier->getType()->castAs<RecordType>()->getDecl()
385 bool CXXRecordDecl::FindTagMember(const CXXBaseSpecifier *Specifier,
389 Specifier->getType()->castAs<RecordType>()->getDecl();
402 bool CXXRecordDecl::FindOrdinaryMember(const CXXBaseSpecifier *Specifier,
    [all...]
NestedNameSpecifier.cpp 11 // a C++ nested-name-specifier.
54 Mockup.Specifier = II;
66 "Broken nested name specifier");
70 Mockup.Specifier = const_cast<NamespaceDecl *>(NS);
82 "Broken nested name specifier");
86 Mockup.Specifier = Alias;
98 Mockup.Specifier = const_cast<Type*>(T);
108 Mockup.Specifier = II;
122 if (!Specifier)
130 return isa<NamespaceDecl>(static_cast<NamedDecl *>(Specifier))? Namespac
    [all...]
VTableBuilder.cpp     [all...]
  /external/llvm/lib/DebugInfo/
DWARFContext.h 166 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
168 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
170 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 55 /// 'namespace' identifier '=' qualified-namespace-specifier ';'
253 // Parse (optional) nested-name-specifier.
406 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
409 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
428 // Parse (optional) nested-name-specifier.
469 /// 'using' 'typename'[opt] ::[opt] nested-name-specifier
474 /// 'using' identifier attribute-specifier-seq[opt] = type-id ;
492 // FIXME: This is wrong; we should parse this as a typename-specifier.
496 // Parse nested-name-specifier.
503 // Check nested-name specifier
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 233 char Specifier = Tok.front();
236 switch (Specifier) {
277 switch (Specifier) {
341 llvm_unreachable("Unknown specifier in datalayout string");
  /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...]
  /external/clang/lib/Lex/
Pragma.cpp     [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 1 //===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
335 /// declaration specifier includes.
    [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp 588 // template has a constexpr specifier then all its declarations shall
589 // contain the constexpr specifier.
    [all...]
SemaDecl.cpp 94 /// \brief Determine whether the token kind starts a simple-type-specifier.
98 // token kind is a valid type specifier
194 /// within the given scope, with optional C++ scope specifier SS, to
218 // nested-name-specifier depends on a template-parameter (14.6.2)
221 // elaborated-type-specifier (7.1.5.3).
256 // nested-name-specifier.
382 // constructor or destructor name (in such a case, the scope specifier
437 // instantiation time. The name specifier isn't dependent, so template
597 "Invalid scope specifier has already been diagnosed");
667 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]
  /external/blktrace/doc/
blktrace.tex 592 Specifier & \\ \hline\hline
616 optionally a left-aligned specifier. These precede field specifiers,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
devicetopology.h 200 GUID Specifier;
    [all...]
ks.h 793 GUID Specifier;
    [all...]

Completed in 572 milliseconds