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 38 class FileID {
43 FileID() : ID(0) {}
47 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
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 !(*this == RHS); }
51 bool operator>(const FileID &RHS) const { return RHS < *this; }
52 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
54 static FileID getSentinel() { return get(-1); }
62 static FileID get(int V)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 139 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(),
141 assert(FileID && "Invalid file id");
142 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
156 unsigned FileID = DD->GetOrCreateSourceID(G.getFilename(), G.getDirectory());
157 assert(FileID && "Invalid file id");
158 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
174 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(),
176 assert(FileID && "Invalid file id");
177 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
191 unsigned FileID = DD->GetOrCreateSourceID(Ty.getFilename()
    [all...]

Completed in 49 milliseconds