Searched defs:ThisTy (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Sema/
H A DSemaExprMember.cpp823 QualType ThisTy = getCurrentThisType(); local
824 if (ThisTy.isNull()) {
833 = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/ true);
835 baseQuals = ThisTy->castAs<PointerType>()->getPointeeType().getQualifiers();
1773 QualType ThisTy = getCurrentThisType(); local
1774 assert(!ThisTy.isNull() && "didn't correctly pre-flight capture of 'this'");
1782 baseExpr = new (Context) CXXThisExpr(loc, ThisTy, /*isImplicit=*/true);
1785 return BuildMemberReferenceExpr(baseExpr, ThisTy,
H A DSemaCodeComplete.cpp1502 QualType ThisTy = S.getCurrentThisType(); local
1503 if (ThisTy.isNull())
1509 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
H A DSemaExprCXX.cpp836 QualType ThisTy = CXXThisTypeOverride; local
839 ThisTy = method->getThisType(Context);
841 if (ThisTy.isNull()) {
855 return ThisTy;
888 QualType ThisTy, SourceLocation Loc) {
890 = FieldDecl::Create(Context, RD, Loc, Loc, nullptr, ThisTy,
891 Context.getTrivialTypeSourceInfo(ThisTy, Loc),
896 return new (Context) CXXThisExpr(Loc, ThisTy, /*isImplicit*/true);
948 QualType ThisTy = getCurrentThisType(); local
951 ThisExpr = captureThis(Context, LSI->Lambda, ThisTy, Lo
887 captureThis(ASTContext &Context, RecordDecl *RD, QualType ThisTy, SourceLocation Loc) argument
967 QualType ThisTy = getCurrentThisType(); local
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp1366 Type ThisTy = getReturnType(); local
1368 ThisTy = getParamType(0);
1369 if (ThisTy.isPointer())
1370 ThisTy = getParamType(1);
1372 S += utostr(ThisTy.getNeonEnum());

Completed in 177 milliseconds