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

References

tools/clang/lib/Sema/SemaExpr.cpp
 4468   if (Base->getType()->isPlaceholderType() &&
 4469       !Base->getType()->isSpecificPlaceholderType(
 4471     ExprResult Result = CheckPlaceholderExpr(Base);
 4474     Base = Result.get();
 4496   if (Base->isTypeDependent() ||
 4501         OMPArraySectionExpr(Base, LowerBound, Length, Context.DependentTy,
 4506   QualType OriginalTy = OMPArraySectionExpr::getBaseOriginalType(Base);
 4514         Diag(Base->getExprLoc(), diag::err_omp_typecheck_section_value)
 4515         << Base->getSourceRange());
 4552     Diag(Base->getExprLoc(), diag::err_omp_section_function_type)
 4553         << ResultTy << Base->getSourceRange();
 4557   if (RequireCompleteType(Base->getExprLoc(), ResultTy,
 4558                           diag::err_omp_section_incomplete_type, Base))
 4599   if (!Base->getType()->isSpecificPlaceholderType(
 4601     ExprResult Result = DefaultFunctionArrayLvalueConversion(Base);
 4604     Base = Result.get();
 4607       OMPArraySectionExpr(Base, LowerBound, Length, Context.OMPArraySectionTy,