Home
last modified time | relevance | path

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

/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h345 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;
369 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
384 if (!Base->CurrentEntry)
454 KeyValueNode *CurrentEntry = nullptr; variable
512 Node *CurrentEntry = nullptr; variable
H A DFileSystem.h1408 directory_entry CurrentEntry; in ~DirIterState()
1447 const directory_entry &operator*() const { return State->CurrentEntry; } in increment()
1448 const directory_entry *operator->() const { return &State->CurrentEntry; } in increment()
1454 return State->CurrentEntry == directory_entry();
1456 return RHS.State->CurrentEntry == directory_entry();
1457 return State->CurrentEntry == RHS.State->CurrentEntry;
1412 directory_entry CurrentEntry; global() member
H A DVirtualFileSystem.h168 /// Sets \c CurrentEntry to the next entry in the directory on success,
172 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();
/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp2327 CurrentEntry = nullptr; in increment()
2330 if (CurrentEntry) { in increment()
2331 CurrentEntry->skip(); in increment()
2334 CurrentEntry = nullptr; in increment()
2341 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2347 CurrentEntry = nullptr; in increment()
2354 CurrentEntry = nullptr; in increment()
2368 CurrentEntry = nullptr; in increment()
2375 CurrentEntry = nullptr; in increment()
2383 CurrentEntry in increment()
[all...]
H A DVirtualFileSystem.cpp416 CurrentEntry = directory_entry(Iter->path(), Iter->type());
422 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in dir_begin()
577 CurrentEntry = directory_entry(); in CombiningDirIterImpl()
580 CurrentEntry = *CurrentDirIter; in CombiningDirIterImpl()
581 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in CombiningDirIterImpl()
1131 CurrentEntry = directory_entry(std::string(Path), Type); in DirIterator()
1133 // When we're at the end, make CurrentEntry invalid and DirIterImpl will in DirIterator()
1135 CurrentEntry = directory_entry(); in DirIterator()
1291 CurrentEntry = directory_entry(std::string(PathStr), Type); in RedirectingFSDirIterImpl()
1293 CurrentEntry in RedirectingFSDirIterImpl()
[all...]
/llvm-project/lldb/unittests/Host/
H A DFileSystemTest.cpp109 CurrentEntry = vfs::directory_entry(std::string(I->second.getName()), in DirIterImpl()
119 CurrentEntry = vfs::directory_entry(std::string(I->second.getName()), in increment()
125 CurrentEntry = vfs::directory_entry(); in increment()
/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h713 std::optional<Entry> CurrentEntry;
740 const Entry &operator*() const { return *CurrentEntry; }
712 std::optional<Entry> CurrentEntry; global() variable
/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1073 IT.CurrentEntry =
1086 IT.CurrentEntry = directory_entry();
1112 IT.CurrentEntry.replace_filename(
/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc900 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
908 it.CurrentEntry = directory_entry();
936 It.CurrentEntry.replace_filename(Name, direntType(CurDir));
/llvm-project/llvm/unittests/Support/
H A DVirtualFileSystemTest.cpp117 CurrentEntry = vfs::directory_entry(std::string(I->second.getName()), in DirIterImpl()
127 CurrentEntry = vfs::directory_entry(std::string(I->second.getName()), in increment()
133 CurrentEntry = vfs::directory_entry(); in increment()
/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp1003 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()