Home | History | Annotate | Download | only in Basic

Lines Matching refs:Iter

236   llvm::sys::fs::directory_iterator Iter;
239 : Path(_Path.str()), Iter(Path, EC) {
240 if (!EC && Iter != llvm::sys::fs::directory_iterator()) {
242 EC = Iter->status(S);
244 CurrentEntry = Status::copyWithNewName(S, Iter->path());
250 Iter.increment(EC);
253 } else if (Iter == llvm::sys::fs::directory_iterator()) {
257 EC = Iter->status(S);
258 CurrentEntry = Status::copyWithNewName(S, Iter->path());