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

  /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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 253 unsigned FileID = DD->getOrCreateSourceID(V.getContext().getFilename(),
256 assert(FileID && "Invalid file id");
257 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
271 unsigned FileID = DD->getOrCreateSourceID(G.getFilename(), G.getDirectory(),
273 assert(FileID && "Invalid file id");
274 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
290 unsigned FileID = DD->getOrCreateSourceID(SP.getFilename(),
292 assert(FileID && "Invalid file id");
293 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
307 unsigned FileID = DD->getOrCreateSourceID(Ty.getFilename()
    [all...]
DwarfDebug.cpp 833 unsigned FileID = getOrCreateSourceID(Module.getContext().getFilename(),
836 TheCU->addUInt(IMDie, dwarf::DW_AT_decl_file, 0, FileID);
    [all...]

Completed in 50 milliseconds