HomeSort by relevance Sort by last modified time
    Searched refs:Specifier (Results 1 - 19 of 19) 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/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 92 /// \brief Represents an access specifier followed by colon ':'.
95 /// of an access specifier followed by a colon in the list of member
115 /// \brief The location of the access specifier.
117 /// \brief Sets the location of the access specifier.
120 /// \brief The location of the colon following the access specifier.
160 /// specifier, including the "virtual" (if present) and access
161 /// specifier (if present).
173 /// This determines the mapping from the access specifier as written in the
174 /// source code to the access specifier used for semantic analysis.
177 /// \brief Access specifier as written in the source code (may be AS_none)
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 140 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
142 uint64_t Size, DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
144 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) = 0;
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 367 DILineInfoSpecifier Specifier) {
375 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
387 if (Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
390 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
401 DILineInfoSpecifier Specifier) {
408 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
423 // If the Specifier says we don't need FileLineInfo, just
425 if (!Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
434 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
458 DILineInfoSpecifier Specifier) {
    [all...]
DWARFContext.h 107 DILineInfoSpecifier Specifier = DILineInfoSpecifier());
109 uint64_t Size, DILineInfoSpecifier Specifier = DILineInfoSpecifier());
111 DILineInfoSpecifier Specifier = DILineInfoSpecifier());
  /external/clang/lib/AST/
CXXInheritance.cpp 224 // Add this base specifier to the current path.
289 // Pop this base specifier off the current path (if we're
374 bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier,
379 return Specifier->getType()->castAs<RecordType>()->getDecl()
383 bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier,
388 return Specifier->isVirtual() &&
389 Specifier->getType()->castAs<RecordType>()->getDecl()
393 bool CXXRecordDecl::FindTagMember(const CXXBaseSpecifier *Specifier,
397 Specifier->getType()->castAs<RecordType>()->getDecl();
410 bool CXXRecordDecl::FindOrdinaryMember(const CXXBaseSpecifier *Specifier,
    [all...]
NestedNameSpecifier.cpp 11 // a C++ nested-name-specifier.
54 Mockup.Specifier = II;
65 "Broken nested name specifier");
69 Mockup.Specifier = const_cast<NamespaceDecl *>(NS);
80 "Broken nested name specifier");
84 Mockup.Specifier = Alias;
96 Mockup.Specifier = const_cast<Type*>(T);
106 Mockup.Specifier = II;
120 if (Specifier == 0)
128 return isa<NamespaceDecl>(static_cast<NamedDecl *>(Specifier))? Namespac
    [all...]
VTableBuilder.cpp     [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/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...]
  /external/clang/lib/Sema/
DeclSpec.cpp 1 //===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
329 /// declaration specifier includes.
855 // Check the type specifier components first.
    [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 364 static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
366 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
    [all...]
SemaDeclCXX.cpp 584 // template has a constexpr specifier then all its declarations shall
585 // contain the constexpr specifier.
    [all...]
SemaDecl.cpp 85 /// \brief Determine whether the token kind starts a simple-type-specifier.
89 // token kind is a valid type specifier
125 /// within the given scope, with optional C++ scope specifier SS, to
152 // nested-name-specifier depends on a template-parameter (14.6.2)
155 // elaborated-type-specifier (7.1.5.3).
192 // nested-name-specifier.
318 // constructor or destructor name (in such a case, the scope specifier
501 "Invalid scope specifier has already been diagnosed");
578 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/blktrace/doc/
blktrace.tex 592 Specifier & \\ \hline\hline
616 optionally a left-aligned specifier. These precede field specifiers,
    [all...]

Completed in 554 milliseconds