HomeSort by relevance Sort by last modified time
    Searched defs:FileID (Results 1 - 3 of 3) sorted by null

  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 24 int FileID; // used to produce UniqueIDs
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(),
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 423 unsigned FileID = getOrCreateSourceID(File, Directory);
424 assert(FileID && "Invalid file id");
425 addUInt(Die, dwarf::DW_AT_decl_file, None, FileID);
    [all...]
  /external/clang/include/clang/Basic/
SourceLocation.h 39 class FileID {
44 FileID() : ID(0) {}
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 get(int V)
    [all...]

Completed in 496 milliseconds