HomeSort by: relevance | last modified time | path
    Searched refs:DirectoryEntryRef (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DirectoryEntry.h 10 /// Defines interfaces for clang::DirectoryEntry and clang::DirectoryEntryRef.
45 class DirectoryEntryRef {
53 friend llvm::hash_code hash_value(DirectoryEntryRef Ref) {
62 bool isSameRef(DirectoryEntryRef RHS) const { return ME == RHS.ME; }
64 DirectoryEntryRef() = delete;
65 DirectoryEntryRef(const MapEntry &ME) : ME(&ME) {}
67 /// Allow DirectoryEntryRef to degrade into 'const DirectoryEntry*' to
82 /// FIXME: Once DirectoryEntryRef is "everywhere" and DirectoryEntry::getName
87 friend class FileMgr::MapEntryOptionalStorage<DirectoryEntryRef>;
91 DirectoryEntryRef(optional_none_tag) : ME(nullptr) {
    [all...]
FileManager.h 163 llvm::Expected<DirectoryEntryRef> getDirectoryRef(StringRef DirName,
166 /// Get a \c DirectoryEntryRef if it exists, without doing anything on error.
167 llvm::Optional<DirectoryEntryRef>
FileEntry.h 66 DirectoryEntryRef getDir() const { return *ME->second->Dir; }
121 Optional<DirectoryEntryRef> Dir;
124 MapValue(FileEntry &FE, DirectoryEntryRef Dir) : V(&FE), Dir(Dir) {}
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
DirectoryLookup.h 41 DirectoryEntryRef Dir;
47 DLU(DirectoryEntryRef Dir) : Dir(Dir) {}
68 DirectoryLookup(DirectoryEntryRef Dir, SrcMgr::CharacteristicKind DT,
100 Optional<DirectoryEntryRef> getFrameworkDirRef() const {
101 return isFramework() ? Optional<DirectoryEntryRef>(u.Dir) : None;
  /src/external/apache2/llvm/dist/clang/lib/Basic/
FileManager.cpp 72 static llvm::Expected<DirectoryEntryRef>
117 llvm::Expected<DirectoryEntryRef>
145 return DirectoryEntryRef(*SeenDirInsertResult.first);
184 return DirectoryEntryRef(NamedDirEnt);
247 DirectoryEntryRef DirInfo = *DirInfoOrErr;

Completed in 15 milliseconds