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

  /external/clang/lib/Frontend/
Warnings.cpp 138 // table. It also has the "specifier" form of -Werror=foo and -Werror-foo.
140 StringRef Specifier;
141 if (Opt.size() > 5) { // Specifier must be present.
148 Specifier = Opt.substr(6);
151 if (Specifier.empty()) {
158 // Set the warning as error flag for this specifier.
159 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
160 } else if (DiagIDs->getDiagnosticsInGroup(Specifier, _Diags)) {
161 EmitUnknownDiagWarning(Diags, "-Werror=", Specifier, isPositive);
168 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 102 /// @brief Represents an access specifier followed by colon ':'.
105 /// of an access specifier followed by a colon in the list of member
125 /// \brief The location of the access specifier.
127 /// \brief Sets the location of the access specifier.
130 /// \brief The location of the colon following the access specifier.
170 /// specifier, including the "virtual" (if present) and access
171 /// specifier (if present).
183 /// specifier as written in the source code to the access specifier
187 /// Access - Access specifier as written in the source code (whic
    [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/llvm/lib/DebugInfo/
DWARFContext.cpp 339 DILineInfoSpecifier Specifier) {
347 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
359 if (Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
362 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
373 DILineInfoSpecifier Specifier) {
380 if (Specifier.needs(DILineInfoSpecifier::FunctionName)) {
395 // If the Specifier says we don't need FileLineInfo, just
397 if (!Specifier.needs(DILineInfoSpecifier::FileLineInfo)) {
406 Specifier.needs(DILineInfoSpecifier::AbsoluteFilePath);
430 DILineInfoSpecifier Specifier) {
    [all...]
DWARFContext.h 97 DILineInfoSpecifier Specifier = DILineInfoSpecifier());
99 uint64_t Size, DILineInfoSpecifier Specifier = DILineInfoSpecifier());
101 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...]
  /external/llvm/lib/IR/
DataLayout.cpp 217 char Specifier = Tok.front();
220 switch (Specifier) {
258 switch (Specifier) {
300 llvm_unreachable("Unknown specifier in datalayout string");
  /external/clang/lib/Parse/
ParseDeclCXX.cpp 51 /// 'namespace' identifier '=' qualified-namespace-specifier ';'
245 // Parse (optional) nested-name-specifier.
376 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
379 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt]
398 // Parse (optional) nested-name-specifier.
439 /// 'using' 'typename'[opt] ::[opt] nested-name-specifier
444 /// 'using' identifier attribute-specifier-seq[opt] = type-id ;
464 // FIXME: This is wrong; we should parse this as a typename-specifier.
470 // Parse nested-name-specifier.
473 // 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 -------===//
320 /// declaration specifier includes.
830 // Check the type specifier components first.
    [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 359 static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
361 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
    [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
494 "Invalid scope specifier has already been diagnosed");
571 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier
    [all...]
SemaDeclCXX.cpp 553 // template has a constexpr specifier then all its declarations shall
554 // contain the constexpr 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 361 milliseconds