Home
last modified time | relevance | path

Searched refs:getPresumedLoc (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h289 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitFunctionDecl()
362 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitEnumDecl()
400 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in WalkUpFromFunctionDecl()
531 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitRecordDecl()
564 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitCXXRecordDecl()
605 Context.getSourceManager().getPresumedLoc(Decl->getLocation());
658 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitCXXMethodDecl()
719 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitCXXDestructorDecl()
753 Context.getSourceManager().getPresumedLoc(Decl->getLocation()); in VisitConceptDecl()
784 Context.getSourceManager().getPresumedLoc(Dec in VisitClassTemplateSpecializationDecl()
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Basic/
H A DSourceLocation.cpp69 PresumedLoc PLoc = SM.getPresumedLoc(*this); in print()
110 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in PrintDifference()
183 PresumedLoc FullSourceLoc::getPresumedLoc(bool UseLineDirectives) const { in getPresumedLoc() function in FullSourceLoc
187 return SrcMgr->getPresumedLoc(*this, UseLineDirectives); in getPresumedLoc()
H A DSourceManager.cpp1205 PresumedLoc PLoc = getPresumedLoc(Loc); in likelyhasbetween()
1411 PresumedLoc PLoc = getPresumedLoc(Loc); in getFileCharacteristic()
1452 /// Note that this name does not respect \#line directives. Use getPresumedLoc
1464 /// getPresumedLoc - This method returns the "presumed" location of a in getPresumedLoc()
1471 PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc, in getPresumedLoc()
1456 PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc, getPresumedLoc() function in SourceManager
/freebsd-src/contrib/llvm-project/clang/lib/Index/
H A DFileIndexRecord.cpp60 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in print()
70 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in print()
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp421 PresumedLoc Loc = SourceMgr.getPresumedLoc(Tok.getLocation()); in getFormattedLines()
457 SourceMgr.getPresumedLoc(Tok.getLocation().getLocWithOffset(SkipLen)); in getFormattedLines()
463 PresumedLoc End = SourceMgr.getPresumedLoc(Tok.getLocation()); in getFormattedLines()
472 PresumedLoc End = SourceMgr.getPresumedLoc(Tok.getLocation()); in getFormattedLines()
H A DJSONNodeDumper.cpp268 writeIncludeStack(SM.getPresumedLoc(Loc.getIncludeLoc())); in writeBareSourceLocation()
278 PresumedLoc Presumed = SM.getPresumedLoc(Loc); in writeBareSourceLocation()
310 writeIncludeStack(SM.getPresumedLoc(Presumed.getIncludeLoc()), in createPointerRepresentation()
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp119 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc); in emitDiagnostic()
195 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc); in emitIncludeStackRecursively()
236 PresumedLoc PLoc = Loc.getPresumedLoc(DiagOpts->ShowPresumedLoc); in emitImportStackRecursively()
251 emitBuildingModuleLocation(I.second, I.second.getPresumedLoc( in emitModuleBuildStack()
H A DHeaderIncludeGen.cpp211 PresumedLoc UserLoc = SM.getPresumedLoc(Loc); in FileChanged()
305 PresumedLoc UserLoc = SM.getPresumedLoc(Loc); in FileChanged()
H A DPrintPreprocessedOutput.cpp210 PresumedLoc PLoc = SM.getPresumedLoc(Tok.getLocation()); in MoveToLine()
220 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in LineMarkersAreDisabled()
353 PresumedLoc UserLoc = SourceMgr.getPresumedLoc(Loc); in FileChanged()
1143 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation());
H A DLogDiagnosticPrinter.cpp144 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation()); in HandleDiagnostic()
H A DSerializedDiagnosticPrinter.cpp219 AddLocToRecord(Loc, Loc.hasManager() ? Loc.getPresumedLoc() : PresumedLoc(), in AddLocToRecord()
734 PresumedLoc PLoc = Loc.hasManager() ? Loc.getPresumedLoc() : PresumedLoc(); in emitNote()
H A DFrontendActions.cpp561 TheSema.getSourceManager().getPresumedLoc(Inst.Entity->getLocation()); in ExecuteAction()
567 TheSema.getSourceManager().getPresumedLoc(Inst.PointOfInstantiation);
H A DTextDiagnostic.cpp1327 unsigned DisplayLineNo = Loc.getPresumedLoc().getLine(); in emitParseableFixits()
1533 PresumedLoc PLoc = SM.getPresumedLoc(BLoc);
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DJsonSupport.h92 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
H A DSourceManager.h1449 /// getPresumedLoc for normal clients.
1477 PresumedLoc getPresumedLoc(SourceLocation Loc,
1507 PresumedLoc Presumed = getPresumedLoc(Loc); in isWrittenInBuiltinFile()
1516 PresumedLoc Presumed = getPresumedLoc(Loc); in isWrittenInCommandLineFile()
1525 PresumedLoc Presumed = getPresumedLoc(Loc); in isWrittenInScratchSpace()
H A DSourceLocation.h393 PresumedLoc getPresumedLoc(bool UseLineDirectives = true) const;
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp93 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation()); in checkEndAnalysis()
/freebsd-src/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1674 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Loc); in ExpandBuiltinMacro()
1683 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); in ExpandBuiltinMacro()
1690 PLoc = SourceMgr.getPresumedLoc(NextLoc); in ExpandBuiltinMacro()
1738 PresumedLoc PLoc = SourceMgr.getPresumedLoc(Tok.getLocation()); in ExpandBuiltinMacro()
1740 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); in ExpandBuiltinMacro()
1742 PLoc = SourceMgr.getPresumedLoc(PLoc.getIncludeLoc()); in ExpandBuiltinMacro()
H A DPragma.cpp496 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation()); in HandlePragmaSystemHeader()
/freebsd-src/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp331 PresumedLoc Loc = SM.getPresumedLoc(PM.MacroNameToken.getLocation()); in EndOfMainFile()
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp198 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation()); in DisplayFunction()
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp360 PresumedLoc Loc = Ctx.getSourceManager().getPresumedLoc(D->getLocation()); in getFunctionName()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp125 m_source_mgr.getPresumedLoc(import_location).getFilename(); in moduleImport()
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp199 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc); in setLocation()
413 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in getOrCreateFile()
495 return SM.getPresumedLoc(Loc).getLine(); in getColumnNumber()
507 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc); in getCurrentDirname()
5866 PresumedLoc PLoc = CGM.getContext().getSourceManager().getPresumedLoc(Loc); in finalize()
H A DCodeGenModule.cpp3304 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in EmitAnnotationArgs()
3312 PresumedLoc PLoc = SM.getPresumedLoc(L); in EmitAnnotationArgs()
7747 PresumedLoc PLoc = SM.getPresumedLoc(D->getLocation());
7760 PLoc = SM.getPresumedLoc(D->getLocation(), /*UseLineDirectives=*/false);

12