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

/external/clang/include/clang/Lex/
H A DPPCallbacks.h49 FileID PrevFID = FileID()) {
248 FileID PrevFID) {
47 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID = FileID()) argument
/external/clang/include/clang/Basic/
H A DSourceLocation.h34 /// FileID - This is an opaque identifier used by SourceManager which refers to
37 class FileID { class in namespace:clang
42 FileID() : ID(0) {} function in class:clang::FileID
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 ID <= RHS.ID; }
49 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
50 bool operator>(const FileID &RHS) const { return RHS < *this; }
51 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
53 static FileID getSentine
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp130 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(), local
132 assert(FileID && "Invalid file id");
133 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
147 unsigned FileID = DD->GetOrCreateSourceID(G.getFilename(), G.getDirectory()); local
148 assert(FileID && "Invalid file id");
149 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
165 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(), local
167 assert(FileID && "Invalid file id");
168 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
182 unsigned FileID local
200 unsigned FileID = DD->GetOrCreateSourceID(File.getFilename(), local
219 unsigned FileID = DD->GetOrCreateSourceID(FN, NS.getDirectory()); local
[all...]

Completed in 65 milliseconds