reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaOpenMP.cpp
 7091   QualType RealVType = VType;
 7092   QualType StrideVType = VType;
 7094     VType =
 7140     VarDecl *LBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.lb");
 7141     LB = buildDeclRefExpr(SemaRef, LBDecl, VType, InitLoc);
 7147     VarDecl *UBDecl = buildVarDecl(SemaRef, InitLoc, VType, ".omp.ub");
 7148     UB = buildDeclRefExpr(SemaRef, UBDecl, VType, InitLoc);
 7187           buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.lb");
 7188       CombLB = buildDeclRefExpr(SemaRef, CombLBDecl, VType, InitLoc);
 7195           buildVarDecl(SemaRef, InitLoc, VType, ".omp.comb.ub");
 7196       CombUB = buildDeclRefExpr(SemaRef, CombUBDecl, VType, InitLoc);