Home | History | Annotate | Download | only in TableGen

Lines Matching defs:End

55          iend = TemplateArgs.end();
62 } // end namespace llvm
232 iend = SMC->DefPrototypes.end();
486 Result.RefRange.End = Lex.getLoc();
509 Result.RefRange.End = Lex.getLoc();
531 Result.RefRange.End = Lex.getLoc();
554 Result.RefRange.End = Lex.getLoc();
569 int64_t End;
580 TokError("expected integer value as end of range");
583 End = Lex.getCurIntVal();
586 End = -Lex.getCurIntVal();
589 if (End < 0)
594 if (Start < End) {
595 for (; Start <= End; ++Start)
598 for (; Start >= End; --Start)
639 TokError("expected '>' at end of range list");
661 TokError("expected '}' at end of bit list");
702 TokError("expected '>' at end of bits<n> type");
718 TokError("expected '>' at end of list<ty> type");
761 for (LoopVector::iterator i = Loops.begin(), iend = Loops.end();
1230 TokError("expected '>' at end of value list");
1295 TokError("expected '}' at end of bit list value");
1333 std::reverse(NewBits.begin(), NewBits.end());
1362 TokError("expected ']' at end of list value");
1379 TokError("expected '>' at end of list element type");
1387 for (std::vector<Init *>::iterator i = Vals.begin(), ie = Vals.end();
1521 std::reverse(Ranges.begin(), Ranges.end());
1530 TokError("expected '}' at end of bit range list");
1550 TokError("expected ']' at end of list slice");
1832 TokError("expected '}' at end of bit range list");
1886 return TokError("expected '>' at end of template argument list");
1918 std::reverse(BitList.begin(), BitList.end());
2134 TokError("expected '}' at end of foreach command");
2205 std::reverse(Bits.begin(), Bits.end());
2241 return TokError("expected 'in' at end of top-level 'let'");
2259 TokError("expected '}' at end of top level let command");
2393 Locs.append(DefProto->getLoc().begin(), DefProto->getLoc().end());
2414 // otherwise nested multiclasses will end up with incorrect NAME expansions.
2602 // long as they come in the end of the inheritance list.
2646 return TokError("expected ';' at end of defm");
2686 // If we have unread input at the end of the file, report it.