Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 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.h1390 directory_entry CurrentEntry; member
1429 const directory_entry &operator*() const { return State->CurrentEntry; }
1430 const directory_entry *operator->() const { return &State->CurrentEntry; }
1436 return State->CurrentEntry == directory_entry();
1438 return RHS.State->CurrentEntry == directory_entry();
1439 return State->CurrentEntry == RHS.State->CurrentEntry;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DYAMLParser.cpp2208 CurrentEntry = nullptr; in increment()
2211 if (CurrentEntry) { in increment()
2212 CurrentEntry->skip(); in increment()
2215 CurrentEntry = nullptr; in increment()
2222 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2228 CurrentEntry = nullptr; in increment()
2235 CurrentEntry = nullptr; in increment()
2249 CurrentEntry = nullptr; in increment()
2256 CurrentEntry = nullptr; in increment()
2264 CurrentEntry = nullptr; in increment()
[all …]
H A DVirtualFileSystem.cpp363 CurrentEntry = directory_entry(Iter->path(), Iter->type()); in RealFSDirIter()
369 CurrentEntry = (Iter == llvm::sys::fs::directory_iterator()) in increment()
499 CurrentEntry = directory_entry(); in incrementImpl()
502 CurrentEntry = *CurrentDirIter; in incrementImpl()
503 StringRef Name = llvm::sys::path::filename(CurrentEntry.path()); in incrementImpl()
927 CurrentEntry = directory_entry(std::string(Path.str()), Type); in setCurrentEntry()
931 CurrentEntry = directory_entry(); in setCurrentEntry()
1074 CurrentEntry = directory_entry(std::string(PathStr.str()), Type); in incrementImpl()
1076 CurrentEntry = directory_entry(); in incrementImpl()
1119 CurrentEntry = directory_entry(std::string(NewPath), ExternalIter->type()); in setCurrentEntry()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h494 Optional<Entry> CurrentEntry; variable
521 const Entry &operator*() const { return *CurrentEntry; }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc877 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
885 it.CurrentEntry = directory_entry();
913 It.CurrentEntry.replace_filename(Name, direntType(CurDir));
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc1015 IT.CurrentEntry =
1028 IT.CurrentEntry = directory_entry();
1054 IT.CurrentEntry.replace_filename(
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp836 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()