Lines Matching refs:From
860 ParmVarDecl *From = CallOperator->getParamDecl(I); in addFunctionPointerConversion() local
862 From->getLocStart(), in addFunctionPointerConversion()
863 From->getLocation(), in addFunctionPointerConversion()
864 From->getIdentifier(), in addFunctionPointerConversion()
865 From->getType(), in addFunctionPointerConversion()
866 From->getTypeSourceInfo(), in addFunctionPointerConversion()
867 From->getStorageClass(), in addFunctionPointerConversion()
945 LambdaScopeInfo::Capture From = LSI->Captures[I]; in ActOnLambdaExpr() local
946 assert(!From.isBlockCapture() && "Cannot capture __block variables"); in ActOnLambdaExpr()
950 if (From.isThisCapture()) { in ActOnLambdaExpr()
951 Captures.push_back(LambdaExpr::Capture(From.getLocation(), in ActOnLambdaExpr()
954 CaptureInits.push_back(new (Context) CXXThisExpr(From.getLocation(), in ActOnLambdaExpr()
960 if (From.isInitCapture()) { in ActOnLambdaExpr()
961 Captures.push_back(LambdaExpr::Capture(From.getInitCaptureField())); in ActOnLambdaExpr()
962 CaptureInits.push_back(From.getInitExpr()); in ActOnLambdaExpr()
966 VarDecl *Var = From.getVariable(); in ActOnLambdaExpr()
967 LambdaCaptureKind Kind = From.isCopyCapture()? LCK_ByCopy : LCK_ByRef; in ActOnLambdaExpr()
968 Captures.push_back(LambdaExpr::Capture(From.getLocation(), IsImplicit, in ActOnLambdaExpr()
969 Kind, Var, From.getEllipsisLoc())); in ActOnLambdaExpr()
970 CaptureInits.push_back(From.getInitExpr()); in ActOnLambdaExpr()
1119 ParmVarDecl *From = CallOperator->getParamDecl(I); in BuildBlockForLambdaConversion() local
1121 From->getLocStart(), in BuildBlockForLambdaConversion()
1122 From->getLocation(), in BuildBlockForLambdaConversion()
1123 From->getIdentifier(), in BuildBlockForLambdaConversion()
1124 From->getType(), in BuildBlockForLambdaConversion()
1125 From->getTypeSourceInfo(), in BuildBlockForLambdaConversion()
1126 From->getStorageClass(), in BuildBlockForLambdaConversion()