Lines Matching defs:Partition
993 llvm::MutableArrayRef<Token> Partition;
1005 // Partition the tokens by their FileID.
1011 Partition = All.take_while([&](const Token &T) {
1020 Partition = All.take_while([&](const Token &T) {
1033 assert(!Partition.empty());
1038 Partition.back().getEndLoc().getRawEncoding() -
1039 Partition.front().getLocation().getRawEncoding();
1045 assert(llvm::all_of(Partition.drop_front(),
1046 [&SM, ID = SM.getFileID(Partition.front().getLocation())](
1054 for (Token& T : Partition) {
1059 begin_tokens = &Partition.back() + 1;