Searched defs:FileID (Results 1 - 4 of 4) sorted by relevance

/external/clang/unittests/Basic/
H A DVirtualFileSystemTest.cpp24 int FileID; // used to produce UniqueIDs member in class:__anon19541::DummyFileSystem
33 DummyFileSystem() : FSID(getNextFSID()), FileID(0) {}
101 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
107 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
113 vfs::Status S(Path, Path, UniqueID(FSID, FileID++), sys::TimeValue::now(),
/external/clang/include/clang/Basic/
H A DSourceLocation.h39 class FileID { class in namespace:clang
44 FileID() : ID(0) {} function in class:clang::FileID
48 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
49 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
50 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
51 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
52 bool operator>(const FileID &RHS) const { return RHS < *this; }
53 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
55 static FileID getSentinel() { return get(-1); }
63 static FileID ge
[all...]
/external/clang/include/clang/Lex/
H A DPPCallbacks.h51 FileID PrevFID = FileID()) {
337 FileID PrevFID) override {
49 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID = FileID()) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp423 unsigned FileID = getOrCreateSourceID(File, Directory); local
424 assert(FileID && "Invalid file id");
425 addUInt(Die, dwarf::DW_AT_decl_file, None, FileID);

Completed in 1839 milliseconds