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

  /external/clang/include/clang/Basic/
SourceLocation.h 33 /// FileID - This is an opaque identifier used by SourceManager which refers to
36 class FileID {
41 FileID() : ID(0) {}
45 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
46 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
47 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
48 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
49 bool operator>(const FileID &RHS) const { return RHS < *this; }
50 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
52 static FileID getSentinel() { return get(-1);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 121 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(),
123 assert(FileID && "Invalid file id");
124 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
138 unsigned FileID = DD->GetOrCreateSourceID(G.getFilename(),
140 assert(FileID && "Invalid file id");
141 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
158 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(), SP.getDirectory());
159 assert(FileID && "Invalid file id");
160 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
174 unsigned FileID = DD->GetOrCreateSourceID(Ty.getFilename(), Ty.getDirectory())
    [all...]

Completed in 600 milliseconds