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

/external/clang/include/clang/Lex/
H A DPPCallbacks.h48 FileID PrevFID = FileID()) {
247 FileID PrevFID) {
46 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID = FileID()) argument
/external/clang/include/clang/Basic/
H A DSourceLocation.h38 class FileID { class in namespace:clang
43 FileID() : ID(0) {} function in class:clang::FileID
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 ge
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp139 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(), local
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()); local
157 assert(FileID && "Invalid file id");
158 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
174 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(), local
176 assert(FileID && "Invalid file id");
177 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
191 unsigned FileID local
209 unsigned FileID = DD->GetOrCreateSourceID(File.getFilename(), local
228 unsigned FileID = DD->GetOrCreateSourceID(FN, NS.getDirectory()); local
[all...]

Completed in 173 milliseconds