/external/clang/lib/AST/ |
D | ExprCXX.cpp | 388 setType(C.DependentTy); in OverloadExpr() 458 return new (Mem) DependentScopeDeclRefExpr(C.DependentTy, QualifierLoc, in Create() 1198 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy, in CXXDependentScopeMemberExpr() 1233 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy, in CXXDependentScopeMemberExpr()
|
D | DeclTemplate.cpp | 225 E = new (Context) PackExpansionExpr(Context.DependentTy, E, in GenerateInjectedTemplateArgs()
|
D | DeclCXX.cpp | 2123 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
|
D | Type.cpp | 1854 : DecltypeType(E, Context.DependentTy), Context(Context) { } in DependentDecltypeType()
|
D | Expr.cpp | 3794 Context.DependentTy, in GenericSelectionExpr()
|
D | ASTContext.cpp | 1001 InitBuiltinType(DependentTy, BuiltinType::Dependent); in InitBuiltinTypes()
|
/external/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 522 PackExpansionExpr(Context.DependentTy, Pattern, EllipsisLoc, NumExpansions); in CheckPackExpansion() 989 return new (Context) CXXFoldExpr(Context.DependentTy, LParenLoc, LHS, in BuildCXXFoldExpr()
|
D | SemaLambda.cpp | 368 Result = SubstAutoType(Result, Context.DependentTy); in startLambdaDefinition() 882 : Context.DependentTy; in ActOnStartOfLambdaDefinition()
|
D | SemaPseudoObject.cpp | 1519 return new (Context) UnaryOperator(op, opcode, Context.DependentTy, in checkPseudoObjectIncDec() 1545 return new (Context) BinaryOperator(LHS, RHS, opcode, Context.DependentTy, in checkPseudoObjectAssignment()
|
D | SemaExpr.cpp | 3018 ResTy = Context.DependentTy; in BuildPredefinedExpr() 3836 return S.Context.DependentTy; in CheckRealImagOperand() 3933 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy, in ActOnArraySubscriptExpr() 3986 ResultType = Context.DependentTy; in CreateBuiltinArraySubscriptExpr() 4737 Context.DependentTy, VK_RValue, RParenLoc); in ActOnCallExpr() 4740 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc); in ActOnCallExpr() 9398 return S.Context.DependentTy; in CheckIncrementDecrementOperand() 9587 return Context.DependentTy; in CheckAddressOfOperand() 9770 return S.Context.DependentTy; in CheckIndirectionOperand() 10913 CurrentType = Context.DependentTy; in BuildBuiltinOffsetOf() [all …]
|
D | SemaOverload.cpp | 10760 Context.DependentTy, VK_RValue, in buildOverloadedCallSet() 10930 return new (Context) UnaryOperator(Input, Opc, Context.DependentTy, in CreateOverloadedUnaryOp() 10940 CXXOperatorCallExpr(Context, Op, Fn, ArgsArray, Context.DependentTy, in CreateOverloadedUnaryOp() 11106 Args[0], Args[1], Opc, Context.DependentTy, VK_RValue, OK_Ordinary, in CreateOverloadedBinOp() 11110 Args[0], Args[1], Opc, Context.DependentTy, VK_LValue, OK_Ordinary, in CreateOverloadedBinOp() 11111 Context.DependentTy, Context.DependentTy, OpLoc, in CreateOverloadedBinOp() 11125 CXXOperatorCallExpr(Context, Op, Fn, Args, Context.DependentTy, in CreateOverloadedBinOp() 11385 Context.DependentTy, VK_RValue, RLoc, false); in CreateOverloadedArraySubscriptExpr()
|
D | SemaExprObjC.cpp | 449 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR); in BuildObjCBoxedExpr() 939 StrTy = Context.DependentTy; in BuildObjCEncodeExpression() 2323 Context, Context.DependentTy, VK_RValue, LBracLoc, Receiver, Sel, in BuildInstanceMessage()
|
D | SemaDecl.cpp | 2779 OldAT->isDependentType() ? Context.DependentTy in MergeFunctionDecl() 2783 OldAT->isDependentType() ? Context.DependentTy in MergeFunctionDecl() 3192 New->setType(Context.DependentTy); in MergeVarDeclTypes() 7260 SubstAutoType(FPT->getReturnType(), Context.DependentTy); in ActOnFunctionDeclarator() 13271 EltTy = Context.DependentTy; in CheckEnumConstant() 13337 EltTy = Context.DependentTy; in CheckEnumConstant() 13729 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); in ActOnEnumBody()
|
D | SemaStmt.cpp | 2142 LoopVar->setType(SubstAutoType(LoopVar->getType(), Context.DependentTy)); in BuildCXXForRangeStmt() 2811 FnRetType = CurCap->ReturnType = Context.DependentTy; in ActOnCapScopeReturnStmt()
|
D | SemaTemplateDeduction.cpp | 3544 FunctionType = SubstAutoType(FunctionType, Context.DependentTy); in DeduceTemplateArguments() 3937 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type); in DeduceAutoType()
|
D | SemaType.cpp | 774 Result = Context.DependentTy; in ConvertDeclSpecToType() 5500 return S.Context.DependentTy; in getDecltypeForExpr()
|
D | SemaExprCXX.cpp | 4533 return Context.DependentTy; in CXXCheckConditionalOperands() 5606 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy); in ActOnPseudoDestructorExpr()
|
D | SemaLookup.cpp | 4594 auto TE = new (Context) TypoExpr(Context.DependentTy); in createDelayedTypo()
|
D | SemaCodeComplete.cpp | 2081 if (T.isNull() || Context.hasSameType(T, Context.DependentTy)) in AddResultTypeChunk()
|
/external/clang/include/clang/AST/ |
D | BuiltinTypes.def | 175 BUILTIN_TYPE(Dependent, DependentTy)
|
D | ASTContext.h | 804 CanQualType DependentTy, OverloadTy, BoundMemberTy, UnknownAnyTy; variable
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 6004 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break; in GetType()
|