Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DYAMLParser.h340 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
341 return Base->CurrentEntry;
345 assert(Base && Base->CurrentEntry &&
347 return *Base->CurrentEntry;
351 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
352 return Base->CurrentEntry;
364 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
379 if (!Base->CurrentEntry)
449 KeyValueNode *CurrentEntry = nullptr; variable
507 Node *CurrentEntry = nullptr; variable
H A DFileSystem.h1415 directory_entry CurrentEntry; member
1454 const directory_entry &operator*() const { return State->CurrentEntry; }
1455 const directory_entry *operator->() const { return &State->CurrentEntry; }
1461 return State->CurrentEntry == directory_entry();
1463 return RHS.State->CurrentEntry == directory_entry();
1464 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();
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DYAMLParser.cpp2264 CurrentEntry = nullptr; in increment()
2267 if (CurrentEntry) { in increment()
2268 CurrentEntry->skip(); in increment()
2271 CurrentEntry = nullptr; in increment()
2278 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2284 CurrentEntry = nullptr; in increment()
2291 CurrentEntry = nullptr; in increment()
2305 CurrentEntry = nullptr; in increment()
2312 CurrentEntry = nullptr; in increment()
2320 CurrentEntry = nullptr; in increment()
[all …]
H A DVirtualFileSystem.cpp392 CurrentEntry = directory_entry(Iter->path(), Iter->type()); in RealFSDirIter()
398 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in increment()
538 CurrentEntry = directory_entry(); in incrementImpl()
541 CurrentEntry = *CurrentDirIter; in incrementImpl()
542 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in incrementImpl()
1092 CurrentEntry = directory_entry(std::string(Path.str()), Type); in setCurrentEntry()
1096 CurrentEntry = directory_entry(); in setCurrentEntry()
1253 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
1255 CurrentEntry = directory_entry(); in incrementImpl()
1299 CurrentEntry = directory_entry(std::string(NewPath), ExternalIter->type()); in setCurrentEntry()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h495 std::optional<Entry> CurrentEntry; variable
522 const Entry &operator*() const { return *CurrentEntry; }
/openbsd-src/gnu/llvm/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));
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc1025 IT.CurrentEntry =
1038 IT.CurrentEntry = directory_entry();
1064 IT.CurrentEntry.replace_filename(
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp836 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()