Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DYAMLParser.h331 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
332 return Base->CurrentEntry;
336 assert(Base && Base->CurrentEntry &&
338 return *Base->CurrentEntry;
342 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
343 return Base->CurrentEntry;
355 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
370 if (!Base->CurrentEntry)
440 KeyValueNode *CurrentEntry = nullptr; variable
498 Node *CurrentEntry = nullptr; variable
H A DVirtualFileSystem.h152 directory_entry CurrentEntry; member
166 if (Impl->CurrentEntry.path().empty()) in directory_iterator()
177 if (Impl->CurrentEntry.path().empty()) in increment()
182 const directory_entry &operator*() const { return Impl->CurrentEntry; }
183 const directory_entry *operator->() const { return &Impl->CurrentEntry; }
187 return Impl->CurrentEntry.path() == RHS.Impl->CurrentEntry.path();
H A DFileSystem.h1189 directory_entry CurrentEntry; member
1228 const directory_entry &operator*() const { return State->CurrentEntry; }
1229 const directory_entry *operator->() const { return &State->CurrentEntry; }
1235 return State->CurrentEntry == directory_entry();
1237 return RHS.State->CurrentEntry == directory_entry();
1238 return State->CurrentEntry == RHS.State->CurrentEntry;
/freebsd-12.1/contrib/llvm/lib/Support/
H A DYAMLParser.cpp2117 CurrentEntry = nullptr; in increment()
2120 if (CurrentEntry) { in increment()
2121 CurrentEntry->skip(); in increment()
2124 CurrentEntry = nullptr; in increment()
2137 CurrentEntry = nullptr; in increment()
2144 CurrentEntry = nullptr; in increment()
2158 CurrentEntry = nullptr; in increment()
2173 CurrentEntry = nullptr; in increment()
2176 if (CurrentEntry) in increment()
2177 CurrentEntry->skip(); in increment()
[all …]
H A DVirtualFileSystem.cpp320 CurrentEntry = directory_entry(Iter->path(), Iter->type()); in RealFSDirIter()
326 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in increment()
446 CurrentEntry = directory_entry(); in incrementImpl()
449 CurrentEntry = *CurrentDirIter; in incrementImpl()
450 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in incrementImpl()
862 CurrentEntry = directory_entry(Path.str(), Type); in setCurrentEntry()
866 CurrentEntry = directory_entry(); in setCurrentEntry()
1993 CurrentEntry = directory_entry(); in incrementExternal()
1995 CurrentEntry = *ExternalDirIter; in incrementExternal()
2016 CurrentEntry = directory_entry(PathStr.str(), Type); in incrementContent()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h482 Optional<Entry> CurrentEntry; variable
509 const Entry &operator*() const { return *CurrentEntry; }
/freebsd-12.1/contrib/llvm/lib/Support/Unix/
H A DPath.inc739 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
747 it.CurrentEntry = directory_entry();
772 It.CurrentEntry.replace_filename(Name, direntType(CurDir));
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc975 IT.CurrentEntry =
988 IT.CurrentEntry = directory_entry();
1014 IT.CurrentEntry.replace_filename(
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp819 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()