Searched defs:CurCap (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp129 auto CurCap = S.captures().begin(); local
132 I != E; ++I, ++CurField, ++CurCap) {
137 } else if (CurCap->capturesThis())
139 else if (CurCap->capturesVariableByCopy()) {
149 Twine(CurCap->getCapturedVar()->getName()) + ".casted");
166 assert(CurCap->capturesVariable() && "Expected capture by reference.");
/external/clang/lib/Sema/
H A DSemaStmt.cpp2863 CapturingScopeInfo *CurCap = cast<CapturingScopeInfo>(getCurFunction()); local
2864 QualType FnRetType = CurCap->ReturnType;
2865 LambdaScopeInfo *CurLambda = dyn_cast<LambdaScopeInfo>(CurCap);
2870 (HasDeducedReturnType || CurCap->HasImplicitReturnType)) {
2884 if (CurCap->ReturnType.isNull())
2885 CurCap->ReturnType = FD->getReturnType();
2887 AutoType *AT = CurCap->ReturnType->getContainedAutoType();
2893 CurCap->ReturnType = FnRetType = FD->getReturnType();
2894 } else if (CurCap->HasImplicitReturnType) {
2912 FnRetType = CurCap
[all...]

Completed in 416 milliseconds