Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DYAMLParser.h313 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
314 return Base->CurrentEntry;
318 assert(Base && Base->CurrentEntry &&
320 return *Base->CurrentEntry;
324 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
325 return Base->CurrentEntry;
337 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
352 if (!Base->CurrentEntry)
400 IsAtEnd(false), CurrentEntry(nullptr) {} in MappingNode()
421 KeyValueNode *CurrentEntry; variable
[all …]
DFileSystem.h772 directory_entry CurrentEntry; member
804 const directory_entry &operator*() const { return State->CurrentEntry; }
805 const directory_entry *operator->() const { return &State->CurrentEntry; }
811 return State->CurrentEntry == directory_entry();
813 return RHS.State->CurrentEntry == directory_entry();
814 return State->CurrentEntry == RHS.State->CurrentEntry;
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DYAMLParser.h316 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
317 return Base->CurrentEntry;
321 assert(Base && Base->CurrentEntry &&
323 return *Base->CurrentEntry;
327 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
328 return Base->CurrentEntry;
340 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
355 if (!Base->CurrentEntry)
403 IsAtEnd(false), CurrentEntry(nullptr) {} in MappingNode()
424 KeyValueNode *CurrentEntry; variable
[all …]
DFileSystem.h783 directory_entry CurrentEntry; member
815 const directory_entry &operator*() const { return State->CurrentEntry; }
816 const directory_entry *operator->() const { return &State->CurrentEntry; }
822 return State->CurrentEntry == directory_entry();
824 return RHS.State->CurrentEntry == directory_entry();
825 return State->CurrentEntry == RHS.State->CurrentEntry;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DYAMLParser.h331 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
332 return Base->CurrentEntry;
336 assert(Base && Base->CurrentEntry &&
338 return *Base->CurrentEntry;
342 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
343 return Base->CurrentEntry;
355 assert((Base->CurrentEntry == Other.Base->CurrentEntry)
370 if (!Base->CurrentEntry)
440 KeyValueNode *CurrentEntry = nullptr; variable
498 Node *CurrentEntry = nullptr; variable
DFileSystem.h1144 directory_entry CurrentEntry; member
1186 const directory_entry &operator*() const { return State->CurrentEntry; }
1187 const directory_entry *operator->() const { return &State->CurrentEntry; }
1193 return State->CurrentEntry == directory_entry();
1195 return RHS.State->CurrentEntry == directory_entry();
1196 return State->CurrentEntry == RHS.State->CurrentEntry;
1215 if (State->CurrentEntry == directory_entry()) in update_error_code_for_current_entry()
1218 ErrorOr<basic_file_status> status = State->CurrentEntry.status(); in update_error_code_for_current_entry()
/external/clang/include/clang/Basic/
DVirtualFileSystem.h117 Status CurrentEntry; member
130 if (!Impl->CurrentEntry.isStatusKnown()) in directory_iterator()
141 if (EC || !Impl->CurrentEntry.isStatusKnown()) in increment()
146 const Status &operator*() const { return Impl->CurrentEntry; }
147 const Status *operator->() const { return &Impl->CurrentEntry; }
151 return Impl->CurrentEntry.equivalent(RHS.Impl->CurrentEntry);
/external/llvm/lib/Support/
DYAMLParser.cpp2123 CurrentEntry = nullptr; in increment()
2126 if (CurrentEntry) { in increment()
2127 CurrentEntry->skip(); in increment()
2130 CurrentEntry = nullptr; in increment()
2137 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2143 CurrentEntry = nullptr; in increment()
2149 CurrentEntry = nullptr; in increment()
2162 CurrentEntry = nullptr; in increment()
2169 CurrentEntry = nullptr; in increment()
2177 CurrentEntry = nullptr; in increment()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DYAMLParser.cpp2117 CurrentEntry = nullptr; in increment()
2120 if (CurrentEntry) { in increment()
2121 CurrentEntry->skip(); in increment()
2124 CurrentEntry = nullptr; in increment()
2131 CurrentEntry = new (getAllocator()) KeyValueNode(Doc); in increment()
2137 CurrentEntry = nullptr; in increment()
2144 CurrentEntry = nullptr; in increment()
2158 CurrentEntry = nullptr; in increment()
2165 CurrentEntry = nullptr; in increment()
2173 CurrentEntry = nullptr; in increment()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DFileSystem.h487 directory_entry CurrentEntry; variable
515 const directory_entry &operator*() const { return CurrentEntry; }
516 const directory_entry *operator->() const { return &CurrentEntry; }
519 return CurrentEntry != RHS.CurrentEntry;
/external/clang/lib/Basic/
DVirtualFileSystem.cpp261 CurrentEntry = Status::copyWithNewName(S, Iter->path()); in RealFSDirIter()
271 CurrentEntry = Status(); in increment()
275 CurrentEntry = Status::copyWithNewName(S, Iter->path()); in increment()
374 CurrentEntry = Status(); in incrementImpl()
377 CurrentEntry = *CurrentDirIter; in incrementImpl()
378 StringRef Name = llvm::sys::path::filename(CurrentEntry.getName()); in incrementImpl()
651 CurrentEntry = I->second->getStatus(); in InMemoryDirIterator()
658 CurrentEntry = I != E ? I->second->getStatus() : Status(); in increment()
1764 CurrentEntry = *S; in VFSFromYamlDirIterImpl()
1778 CurrentEntry = *S; in increment()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFAcceleratorTable.h482 Optional<Entry> CurrentEntry; variable
509 const Entry &operator*() const { return *CurrentEntry; }
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPathV2.inc451 it.CurrentEntry = directory_entry(path_null.str());
459 it.CurrentEntry = directory_entry();
473 it.CurrentEntry.replace_filename(name);
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DZipArchiveOutputStream.java151 private CurrentEntry entry;
751 entry = new CurrentEntry((ZipArchiveEntry) archiveEntry); in putArchiveEntry()
1651 private static final class CurrentEntry { class in ZipArchiveOutputStream
1652 private CurrentEntry(final ZipArchiveEntry entry) { in CurrentEntry() method in ZipArchiveOutputStream.CurrentEntry
DZipArchiveInputStream.java102 private CurrentEntry current = null;
264 current = new CurrentEntry(); in getNextZipEntry()
1158 private static final class CurrentEntry { class in ZipArchiveInputStream
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DPathV2.inc740 it.CurrentEntry = directory_entry(directory_entry_path.str());
750 it.CurrentEntry = directory_entry();
776 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
/external/llvm/lib/Support/Unix/
DPath.inc522 it.CurrentEntry = directory_entry(path_null.str());
530 it.CurrentEntry = directory_entry();
544 it.CurrentEntry.replace_filename(name);
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc538 it.CurrentEntry = directory_entry(path_null.str());
546 it.CurrentEntry = directory_entry();
560 it.CurrentEntry.replace_filename(name);
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp89 CurrentEntry = I->second; in DirIterImpl()
98 CurrentEntry = I->second; in increment()
103 CurrentEntry = vfs::Status(); in increment()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DPath.inc664 it.CurrentEntry = directory_entry(directory_entry_path);
674 it.CurrentEntry = directory_entry();
700 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
/external/llvm/lib/Support/Windows/
DPath.inc670 it.CurrentEntry = directory_entry(directory_entry_path);
680 it.CurrentEntry = directory_entry();
706 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DPath.inc682 it.CurrentEntry = directory_entry(path_null.str(), follow_symlinks);
690 it.CurrentEntry = directory_entry();
704 it.CurrentEntry.replace_filename(name);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DPath.inc952 it.CurrentEntry = directory_entry(directory_entry_path, follow_symlinks,
963 it.CurrentEntry = directory_entry();
989 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8),
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp821 CurrentEntry = std::move(*EntryOr); in getEntryAtCurrentOffset()