/external/clang/lib/Sema/ |
D | SemaCoroutine.cpp | 138 ? S.Context.DependentTy in checkCoroutineContext() 239 Expr *Res = new (Context) CoawaitExpr(Loc, Context.DependentTy, E); in BuildCoawaitExpr() 306 Expr *Res = new (Context) CoyieldExpr(Loc, Context.DependentTy, E); in BuildCoyieldExpr()
|
D | SemaTemplateVariadic.cpp | 522 PackExpansionExpr(Context.DependentTy, Pattern, EllipsisLoc, NumExpansions); in CheckPackExpansion() 994 return new (Context) CXXFoldExpr(Context.DependentTy, LParenLoc, LHS, in BuildCXXFoldExpr()
|
D | SemaLambda.cpp | 370 Result = SubstAutoType(Result, Context.DependentTy); in startLambdaDefinition() 842 : Context.DependentTy; in ActOnStartOfLambdaDefinition()
|
D | SemaPseudoObject.cpp | 1557 return new (Context) UnaryOperator(op, opcode, Context.DependentTy, in checkPseudoObjectIncDec() 1587 return new (Context) BinaryOperator(LHS, RHS, opcode, Context.DependentTy, in checkPseudoObjectAssignment()
|
D | SemaExpr.cpp | 3077 ResTy = Context.DependentTy; in BuildPredefinedExpr() 4059 return S.Context.DependentTy; in CheckRealImagOperand() 4173 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy, in ActOnArraySubscriptExpr() 4247 OMPArraySectionExpr(Base, LowerBound, Length, Context.DependentTy, in ActOnOMPArraySectionExpr() 4387 ResultType = Context.DependentTy; in CreateBuiltinArraySubscriptExpr() 5158 Context.DependentTy, VK_RValue, RParenLoc); in ActOnCallExpr() 5161 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc); in ActOnCallExpr() 10175 return S.Context.DependentTy; in CheckIncrementDecrementOperand() 10370 return Context.DependentTy; in CheckAddressOfOperand() 10562 return S.Context.DependentTy; in CheckIndirectionOperand() [all …]
|
D | SemaOverload.cpp | 11327 Context, Fn, Args, Context.DependentTy, VK_RValue, RParenLoc); in buildOverloadedCallSet() 11528 return new (Context) UnaryOperator(Input, Opc, Context.DependentTy, in CreateOverloadedUnaryOp() 11538 CXXOperatorCallExpr(Context, Op, Fn, ArgsArray, Context.DependentTy, in CreateOverloadedUnaryOp() 11702 Args[0], Args[1], Opc, Context.DependentTy, VK_RValue, OK_Ordinary, in CreateOverloadedBinOp() 11706 Args[0], Args[1], Opc, Context.DependentTy, VK_LValue, OK_Ordinary, in CreateOverloadedBinOp() 11707 Context.DependentTy, Context.DependentTy, OpLoc, in CreateOverloadedBinOp() 11721 CXXOperatorCallExpr(Context, Op, Fn, Args, Context.DependentTy, in CreateOverloadedBinOp() 11981 Context.DependentTy, VK_RValue, RLoc, false); in CreateOverloadedArraySubscriptExpr()
|
D | SemaExprObjC.cpp | 502 new (Context) ObjCBoxedExpr(ValueExpr, Context.DependentTy, nullptr, SR); in BuildObjCBoxedExpr() 1053 StrTy = Context.DependentTy; in BuildObjCEncodeExpression() 2578 Context, Context.DependentTy, VK_RValue, LBracLoc, Receiver, Sel, in BuildInstanceMessage()
|
D | SemaDecl.cpp | 2967 OldAT->isDependentType() ? Context.DependentTy in MergeFunctionDecl() 2971 OldAT->isDependentType() ? Context.DependentTy in MergeFunctionDecl() 3419 New->setType(Context.DependentTy); in MergeVarDeclTypes() 7876 SubstAutoType(FPT->getReturnType(), Context.DependentTy); in ActOnFunctionDeclarator() 14322 EltTy = Context.DependentTy; in CheckEnumConstant() 14391 EltTy = Context.DependentTy; in CheckEnumConstant() 14794 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); in ActOnEnumBody()
|
D | SemaStmt.cpp | 2206 LoopVar->setType(SubstAutoType(LoopVar->getType(), Context.DependentTy)); in BuildCXXForRangeStmt() 2912 FnRetType = CurCap->ReturnType = Context.DependentTy; in ActOnCapScopeReturnStmt()
|
D | SemaTemplateDeduction.cpp | 3602 FunctionType = SubstAutoType(FunctionType, Context.DependentTy); in DeduceTemplateArguments() 3997 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type); in DeduceAutoType()
|
D | SemaType.cpp | 1312 Context.DependentTy)) { in ConvertDeclSpecToType() 1313 Result = Context.DependentTy; in ConvertDeclSpecToType() 7248 return S.Context.DependentTy; in getDecltypeForExpr()
|
D | SemaExprCXX.cpp | 5125 return Context.DependentTy; in CXXCheckConditionalOperands() 6213 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy); in ActOnPseudoDestructorExpr()
|
D | SemaLookup.cpp | 5090 auto TE = new (Context) TypoExpr(Context.DependentTy); in createDelayedTypo()
|
D | SemaCodeComplete.cpp | 2109 if (T.isNull() || Context.hasSameType(T, Context.DependentTy)) in AddResultTypeChunk()
|
D | SemaOpenMP.cpp | 9114 QualType Type = Context.DependentTy; in ActOnOpenMPReductionClause()
|
D | TreeTransform.h | 10692 getSema().Context.DependentTy, DRE.get(), E->getPackLoc(), None); in TransformSizeOfPackExpr()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 317 setType(C.DependentTy); in OverloadExpr() 386 return new (Mem) DependentScopeDeclRefExpr(C.DependentTy, QualifierLoc, in Create() 1114 : Expr(CXXDependentScopeMemberExprClass, C.DependentTy, VK_LValue, in CXXDependentScopeMemberExpr()
|
D | DeclTemplate.cpp | 220 E = new (Context) PackExpansionExpr(Context.DependentTy, E, in GenerateInjectedTemplateArgs()
|
D | Type.cpp | 2919 : DecltypeType(E, Context.DependentTy), Context(Context) { } in DependentDecltypeType() 2940 : UnaryTransformType(BaseType, C.DependentTy, UKind, QualType()) in DependentUnaryTransformType()
|
D | DeclCXX.cpp | 2252 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
|
D | Expr.cpp | 3493 Context.DependentTy, in GenericSelectionExpr()
|
D | ASTContext.cpp | 1060 InitBuiltinType(DependentTy, BuiltinType::Dependent); in InitBuiltinTypes()
|
/external/clang/include/clang/AST/ |
D | BuiltinTypes.def | 182 BUILTIN_TYPE(Dependent, DependentTy)
|
D | ASTContext.h | 909 CanQualType DependentTy, OverloadTy, BoundMemberTy, UnknownAnyTy; variable
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 6053 T = Context.DependentTy; in GetType()
|