Home
last modified time | relevance | path

Searched refs:DeclType (Results 1 – 7 of 7) sorted by relevance

/external/clang/lib/Sema/
DSemaInit.cpp251 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 …]
DSemaType.cpp2244 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 …]
DSemaOverload.cpp4071 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/
DDeclTemplate.h546 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 *
DDeclObjC.h2204 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()
DDecl.h472 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/
DDeclTemplate.cpp164 typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType*