HomeSort by: relevance | last modified time | path
    Searched defs:FileEntry (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
FileEntry.cpp 1 //===- FileEntry.cpp - File references --------------------------*- C++ -*-===//
10 /// Defines implementation for clang::FileEntry and clang::FileEntryRef.
14 #include "clang/Basic/FileEntry.h"
20 FileEntry::FileEntry() : UniqueID(0, 0) {}
22 FileEntry::~FileEntry() = default;
24 void FileEntry::closeFile() const { File.reset(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
FileEntry.h 1 //===- FileEntry.h ----------------------------------------------*- C++ -*-===//
20 /// Files in GSYM are contained in FileEntry structs where we split the
24 struct FileEntry {
32 FileEntry() = default;
33 FileEntry(uint32_t D, uint32_t B) : Dir(D), Base(B) {}
35 // Implement operator== so that FileEntry can be used as key in
37 bool operator==(const FileEntry &RHS) const {
40 bool operator!=(const FileEntry &RHS) const {
47 template <> struct DenseMapInfo<gsym::FileEntry> {
48 static inline gsym::FileEntry getEmptyKey()
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/
graph_header_deps.py 28 class FileEntry:
82 return FileEntry(
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
FileEntry.h 1 //===- clang/Basic/FileEntry.h - File references ----------------*- C++ -*-===//
10 /// Defines interfaces for clang::FileEntry and clang::FileEntryRef.
56 class FileEntry;
58 /// A reference to a \c FileEntry that includes the name of the file as it was
63 const FileEntry &getFileEntry() const {
64 return *ME->second->V.get<FileEntry *>();
76 /// Check if the underlying FileEntry is the same, intentially ignoring
81 friend bool operator==(const FileEntry *LHS, const FileEntryRef &RHS) {
84 friend bool operator==(const FileEntryRef &LHS, const FileEntry *RHS) {
90 friend bool operator!=(const FileEntry *LHS, const FileEntryRef &RHS)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 298 auto FileEntry =
300 if (!FileEntry) {
304 auto Filename = FileEntry->getName();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VirtualFileSystem.h 699 class FileEntry : public RemapEntry {
701 FileEntry(StringRef Name, StringRef ExternalContentsPath, NameKind UseName)
723 /// file system (i.e. it is a FileEntry or DirectoryRemapEntry), returns
728 if (auto *FE = dyn_cast<FileEntry>(E))
804 /// giving the matched entry and, if that entry is a FileEntry or
815 /// matched entry and, if the entry was a FileEntry or DirectoryRemapEntry,
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 133 File FileEntry;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 160 const FileNameEntry &FileEntry = FileNames[I];
163 FileEntry.Name.dump(OS, DumpOptions);
165 << format(" dir_index: %" PRIu64 "\n", FileEntry.DirIdx);
167 OS << " md5_checksum: " << FileEntry.Checksum.digest() << '\n';
169 OS << format(" mod_time: 0x%8.8" PRIx64 "\n", FileEntry.ModTime);
171 OS << format(" length: 0x%8.8" PRIx64 "\n", FileEntry.Length);
174 FileEntry.Source.dump(OS, DumpOptions);
213 DWARFDebugLine::FileNameEntry FileEntry;
214 FileEntry.Name =
216 FileEntry.DirIdx = DebugLineData.getULEB128(OffsetPtr, &Err)
    [all...]

Completed in 34 milliseconds