Home | History | Annotate | Download | only in Sema

Lines Matching refs:EndIndex

805     unsigned EndIndex = (Index == StartIndex? StartIndex : Index - 1);
808 if (EndIndex < ParentIList->getNumInits() &&
809 ParentIList->getInit(EndIndex)) {
811 = ParentIList->getInit(EndIndex)->getSourceRange().getEnd();
2703 Expr *EndIndex = static_cast<Expr *>(D.getArrayRangeEnd());
2708 bool EndDependent = EndIndex->isTypeDependent() ||
2709 EndIndex->isValueDependent();
2714 EndIndex = CheckArrayDesignatorExpr(*this, EndIndex, EndValue).get();
2716 if (!StartIndex || !EndIndex)
2730 << StartIndex->getSourceRange() << EndIndex->getSourceRange();
2738 InitExpressions.push_back(EndIndex);