Home
last modified time | relevance | path

Searched refs:CurrentEntry (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h347 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
348 return Base->CurrentEntry;
352 assert(Base && Base->CurrentEntry &&
354 return *Base->CurrentEntry;
358 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
359 return Base->CurrentEntry;
371 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
386 if (!Base->CurrentEntry)
456 KeyValueNode *CurrentEntry = nullptr; variable
514 Node *CurrentEntry = nullptr; variable
H A DFileSystem.h1426 directory_entry CurrentEntry; member
1465 const directory_entry &operator*() const { return State->CurrentEntry; }
1466 const directory_entry *operator->() const { return &State->CurrentEntry; }
1472 return State->CurrentEntry == directory_entry();
1474 return RHS.State->CurrentEntry == directory_entry();
1475 return State->CurrentEntry == RHS.State->CurrentEntry;
H A DVirtualFileSystem.h174 directory_entry CurrentEntry; member
188 if (Impl->CurrentEntry.path().empty()) in directory_iterator()
199 if (Impl->CurrentEntry.path().empty()) in increment()
204 const directory_entry &operator*() const { return Impl->CurrentEntry; }
205 const directory_entry *operator->() const { return &Impl->CurrentEntry; }
209 return Impl->CurrentEntry.path() == RHS.Impl->CurrentEntry.path();
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp2328 CurrentEntry = nullptr; in increment()
2331 if (CurrentEntry) { in increment()
2332 CurrentEntry->skip(); in increment()
2335 CurrentEntry = nullptr; in increment()
2342 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2348 CurrentEntry = nullptr; in increment()
2355 CurrentEntry = nullptr; in increment()
2369 CurrentEntry = nullptr; in increment()
2376 CurrentEntry = nullptr; in increment()
2384 CurrentEntry = nullptr; in increment()
[all …]
H A DVirtualFileSystem.cpp416 CurrentEntry = directory_entry(Iter->path(), Iter->type()); in RealFSDirIter()
422 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in increment()
577 CurrentEntry = directory_entry(); in incrementImpl()
580 CurrentEntry = *CurrentDirIter; in incrementImpl()
581 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in incrementImpl()
1131 CurrentEntry = directory_entry(std::string(Path), Type); in setCurrentEntry()
1135 CurrentEntry = directory_entry(); in setCurrentEntry()
1291 CurrentEntry = directory_entry(std::string(PathStr), Type); in incrementImpl()
1293 CurrentEntry = directory_entry(); in incrementImpl()
1337 CurrentEntry = directory_entry(std::string(NewPath), ExternalIter->type()); in setCurrentEntry()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h714 std::optional<Entry> CurrentEntry; variable
741 const Entry &operator*() const { return *CurrentEntry; }
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc905 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
913 it.CurrentEntry = directory_entry();
941 It.CurrentEntry.replace_filename(Name, direntType(CurDir));
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1075 IT.CurrentEntry =
1088 IT.CurrentEntry = directory_entry();
1114 IT.CurrentEntry.replace_filename(
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp1003 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()