Searched refs:CurrentEntry (Results 1 – 11 of 11) sorted by relevance
/llvm-project/llvm/include/llvm/Support/ |
H A D | YAMLParser.h | 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; 369 assert((Base->CurrentEntry == Other.Base->CurrentEntry) 384 if (!Base->CurrentEntry) 454 KeyValueNode *CurrentEntry = nullptr; variable 512 Node *CurrentEntry = nullptr; variable
|
H A D | FileSystem.h | 1408 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 D | VirtualFileSystem.h | 168 /// 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 D | YAMLParser.cpp | 2327 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 D | VirtualFileSystem.cpp | 416 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 D | FileSystemTest.cpp | 109 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 D | DWARFAcceleratorTable.h | 713 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 D | Path.inc | 1073 IT.CurrentEntry = 1086 IT.CurrentEntry = directory_entry(); 1112 IT.CurrentEntry.replace_filename(
|
/llvm-project/llvm/lib/Support/Unix/ |
H A D | Path.inc | 900 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 D | VirtualFileSystemTest.cpp | 117 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 D | DWARFAcceleratorTable.cpp | 1003 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()
|