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.h331 /// BaseT must have a ValueT* member named CurrentEntry and a member function
332 /// increment() which must set CurrentEntry to 0 to create an end iterator.
345 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
346 return Base->CurrentEntry;
350 assert(Base && Base->CurrentEntry &&
352 return *Base->CurrentEntry;
356 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
357 return Base->CurrentEntry;
365 /// hence Base.CurrentEntry and Other.Base.CurrentEntry ar
449 KeyValueNode *CurrentEntry = nullptr; global() variable
507 Node *CurrentEntry = nullptr; global() variable
[all...]
H A DFileSystem.h1412 directory_entry CurrentEntry; member
1451 const directory_entry &operator*() const { return State->CurrentEntry; }
1452 const directory_entry *operator->() const { return &State->CurrentEntry; }
1458 return State->CurrentEntry == directory_entry();
1460 return RHS.State->CurrentEntry == directory_entry();
1461 return State->CurrentEntry == RHS.State->CurrentEntry;
H A DVirtualFileSystem.h172 directory_entry CurrentEntry; member
186 if (Impl->CurrentEntry.path().empty()) in directory_iterator()
197 if (Impl->CurrentEntry.path().empty()) in increment()
202 const directory_entry &operator*() const { return Impl->CurrentEntry; }
203 const directory_entry *operator->() const { return &Impl->CurrentEntry; }
207 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 in increment()
[all...]
H A DVirtualFileSystem.cpp404 CurrentEntry = directory_entry(Iter->path(), Iter->type()); in RealFSDirIter()
410 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in increment()
565 CurrentEntry = directory_entry(); in incrementImpl()
568 CurrentEntry = *CurrentDirIter; in incrementImpl()
569 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in incrementImpl()
1119 CurrentEntry = directory_entry(std::string(Path), Type); in setCurrentEntry()
1123 CurrentEntry = directory_entry(); in setCurrentEntry()
1279 CurrentEntry = directory_entry(std::string(PathStr), Type); in incrementImpl()
1281 CurrentEntry = directory_entry(); in incrementImpl()
1325 CurrentEntry = directory_entry(std::string(NewPath), ExternalIter->type()); in setCurrentEntry()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h712 std::optional<Entry> CurrentEntry; variable
739 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.inc1073 IT.CurrentEntry =
1086 IT.CurrentEntry = directory_entry();
1112 IT.CurrentEntry.replace_filename(
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp1003 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()