Searched refs:DeclType (Results 1 – 7 of 7) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 251 InitListExpr *IList, QualType &DeclType, 263 InitListExpr *IList, QualType DeclType, 268 InitListExpr *IList, QualType DeclType, 273 InitListExpr *IList, QualType DeclType, 278 InitListExpr *IList, QualType DeclType, unsigned &Index, 282 InitListExpr *IList, QualType DeclType, 289 InitListExpr *IList, QualType &DeclType, 313 int numArrayElements(QualType DeclType); 314 int numStructUnionElements(QualType DeclType); 655 int InitListChecker::numArrayElements(QualType DeclType) { in numArrayElements() argument [all …]
|
D | SemaType.cpp | 2244 DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex); in GetDeclSpecTypeForDeclarator() local 2245 if (DeclType.Kind == DeclaratorChunk::Function) { in GetDeclSpecTypeForDeclarator() 2246 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun; in GetDeclSpecTypeForDeclarator() 2341 DeclaratorChunk &DeclType, QualType RT) { in warnAboutAmbiguousFunction() argument 2342 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun; in warnAboutAmbiguousFunction() 2371 SourceRange ParenRange(DeclType.Loc, DeclType.EndLoc); in warnAboutAmbiguousFunction() 2373 S.Diag(DeclType.Loc, in warnAboutAmbiguousFunction() 2421 S.Diag(DeclType.Loc, diag::note_empty_parens_default_ctor) in warnAboutAmbiguousFunction() 2429 S.Diag(DeclType.Loc, diag::note_empty_parens_zero_initialize) in warnAboutAmbiguousFunction() 2553 DeclaratorChunk &DeclType = D.getTypeObject(chunkIndex); in GetFullTypeForDeclarator() local [all …]
|
D | SemaOverload.cpp | 4071 QualType DeclType, SourceLocation DeclLoc, in FindConversionForRefInit() argument 4109 if (!ConvTemplate && DeclType->isRValueReferenceType()) { in FindConversionForRefInit() 4121 DeclType.getNonReferenceType().getUnqualifiedType(), in FindConversionForRefInit() 4140 Init, DeclType, CandidateSet, in FindConversionForRefInit() 4144 DeclType, CandidateSet, in FindConversionForRefInit() 4199 TryReferenceInit(Sema &S, Expr *Init, QualType DeclType, in TryReferenceInit() argument 4203 assert(DeclType->isReferenceType() && "Reference init needs a reference"); in TryReferenceInit() 4207 ICS.setBad(BadConversionSequence::no_conversion, Init, DeclType); in TryReferenceInit() 4209 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType(); in TryReferenceInit() 4217 if (FunctionDecl *Fn = S.ResolveAddressOfOverloadedFunction(Init, DeclType, in TryReferenceInit() [all …]
|
/external/clang/include/clang/AST/ |
D | DeclTemplate.h | 546 typedef EntryType DeclType; typedef 548 static DeclType *getMostRecentDecl(EntryType *D) { in getMostRecentDecl() 555 typename _DeclType = typename _SETraits::DeclType> 560 typedef _DeclType DeclType; typedef 571 DeclType *operator*() const { 574 DeclType *operator->() const { return **this; } 597 template <class EntryType> typename SpecEntryTraits<EntryType>::DeclType* 738 typedef FunctionDecl DeclType; 740 static DeclType *
|
D | DeclObjC.h | 2204 TypeSourceInfo *DeclType; variable 2221 LParenLoc(LParenLocation), DeclType(T), in ObjCPropertyDecl() 2246 TypeSourceInfo *getTypeSourceInfo() const { return DeclType; } in getTypeSourceInfo() 2247 QualType getType() const { return DeclType->getType(); } in getType() 2248 void setType(TypeSourceInfo *T) { DeclType = T; } in setType()
|
D | Decl.h | 472 QualType DeclType; variable 477 : NamedDecl(DK, DC, L, N), DeclType(T) {} in ValueDecl() 479 QualType getType() const { return DeclType; } in getType() 480 void setType(QualType newType) { DeclType = newType; } in setType()
|
/external/clang/lib/AST/ |
D | DeclTemplate.cpp | 164 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType*
|