Lines Matching refs:FullSourceLoc
157 FileID FullSourceLoc::getFileID() const { in getFileID()
162 FullSourceLoc FullSourceLoc::getExpansionLoc() const { in getExpansionLoc()
164 return FullSourceLoc(SrcMgr->getExpansionLoc(*this), *SrcMgr); in getExpansionLoc()
167 FileIDAndOffset FullSourceLoc::getDecomposedExpansionLoc() const { in getDecomposedExpansionLoc()
171 FullSourceLoc FullSourceLoc::getSpellingLoc() const { in getSpellingLoc()
173 return FullSourceLoc(SrcMgr->getSpellingLoc(*this), *SrcMgr); in getSpellingLoc()
176 FullSourceLoc FullSourceLoc::getFileLoc() const { in getFileLoc()
178 return FullSourceLoc(SrcMgr->getFileLoc(*this), *SrcMgr); in getFileLoc()
181 PresumedLoc FullSourceLoc::getPresumedLoc(bool UseLineDirectives) const { in getPresumedLoc()
188 bool FullSourceLoc::isMacroArgExpansion(FullSourceLoc *StartLoc) const { in isMacroArgExpansion()
193 FullSourceLoc FullSourceLoc::getImmediateMacroCallerLoc() const { in getImmediateMacroCallerLoc()
195 return FullSourceLoc(SrcMgr->getImmediateMacroCallerLoc(*this), *SrcMgr); in getImmediateMacroCallerLoc()
198 std::pair<FullSourceLoc, StringRef> FullSourceLoc::getModuleImportLoc() const { in getModuleImportLoc()
200 return std::make_pair(FullSourceLoc(), StringRef()); in getModuleImportLoc()
204 return std::make_pair(FullSourceLoc(ImportLoc.first, *SrcMgr), in getModuleImportLoc()
208 unsigned FullSourceLoc::getFileOffset() const { in getFileOffset()
213 unsigned FullSourceLoc::getLineNumber(bool *Invalid) const { in getLineNumber()
218 unsigned FullSourceLoc::getColumnNumber(bool *Invalid) const { in getColumnNumber()
223 const FileEntry *FullSourceLoc::getFileEntry() const { in getFileEntry()
228 OptionalFileEntryRef FullSourceLoc::getFileEntryRef() const { in getFileEntryRef()
233 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const { in getExpansionLineNumber()
238 unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const { in getExpansionColumnNumber()
243 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber()
248 unsigned FullSourceLoc::getSpellingColumnNumber(bool *Invalid) const { in getSpellingColumnNumber()
253 bool FullSourceLoc::isInSystemHeader() const { in isInSystemHeader()
258 bool FullSourceLoc::isBeforeInTranslationUnitThan(SourceLocation Loc) const { in isBeforeInTranslationUnitThan()
263 LLVM_DUMP_METHOD void FullSourceLoc::dump() const { in dump()
267 const char *FullSourceLoc::getCharacterData(bool *Invalid) const { in getCharacterData()
272 StringRef FullSourceLoc::getBufferData(bool *Invalid) const { in getBufferData()
277 FileIDAndOffset FullSourceLoc::getDecomposedLoc() const { in getDecomposedLoc()