Searched refs:SourceManager (Results 26 - 50 of 166) sorted by relevance

1234567

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DSourceLocation.cpp16 #include "clang/Basic/SourceManager.h"
38 void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{
64 std::string SourceLocation::printToString(const SourceManager &SM) const {
71 void SourceLocation::dump(const SourceManager &SM) const {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DScratchBuffer.cpp15 #include "clang/Basic/SourceManager.h"
24 ScratchBuffer::ScratchBuffer(SourceManager &SM) : SourceMgr(SM), CurBuffer(0) {
H A DMacroInfo.cpp35 unsigned MacroInfo::getDefinitionLengthSlow(SourceManager &SM) const {
154 MacroDirective::findDirectiveAtLoc(SourceLocation L, SourceManager &SM) const {
H A DTokenLexer.cpp16 #include "clang/Basic/SourceManager.h"
46 SourceManager &SM = PP.getSourceManager();
434 SourceManager &SM = PP.getSourceManager();
578 SourceManager &SourceMgr = PP.getSourceManager();
619 SourceManager &SM = PP.getSourceManager();
657 SourceManager &SM = PP.getSourceManager();
725 SourceManager &SM = PP.getSourceManager();
743 static void updateConsecutiveMacroArgTokens(SourceManager &SM,
809 SourceManager &SM = PP.getSourceManager();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DPrettyPrinter.h23 class SourceManager;
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h23 class SourceManager;
H A DASTUnit.h22 #include "clang/Basic/SourceManager.h"
58 class SourceManager;
70 IntrusiveRefCntPtr<SourceManager> SourceMgr;
195 SourceRange getSourceRange(const SourceManager &SM) const {
272 SourceManager &SrcMan,
397 /// \brief Transfers ownership of the objects (like SourceManager) from
448 const SourceManager &getSourceManager() const { return *SourceMgr; }
449 SourceManager &getSourceManager() { return *SourceMgr; }
546 /// The difference with SourceManager::getLocation is that this method checks
823 SourceManager
[all...]
H A DCompilerInstance.h14 #include "clang/Basic/SourceManager.h"
46 class SourceManager;
81 IntrusiveRefCntPtr<SourceManager> SourceMgr;
341 SourceManager &getSourceManager() const {
351 void setSourceManager(SourceManager *Value);
652 SourceManager &SourceMgr,
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBSourceManager.h44 SBSourceManager(lldb_private::SourceManager *source_manager);
/freebsd-10.3-release/lib/clang/libclangbasic/
H A DMakefile21 SourceManager.cpp \
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h28 class SourceManager;
94 void dumpBlockLiveness(const SourceManager& M);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DRewriter.h29 class SourceManager;
128 SourceManager *SourceMgr;
152 explicit Rewriter(SourceManager &SM, const LangOptions &LO)
156 void setSourceMgr(SourceManager &SM, const LangOptions &LO) {
160 SourceManager &getSourceMgr() const { return *SourceMgr; }
H A DTokenRewriter.h51 TokenRewriter(FileID FID, SourceManager &SM, const LangOptions &LO);
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDebugger.h24 #include "lldb/Core/SourceManager.h"
50 friend class SourceManager; // For GetSourceFileCache.
150 SourceManager &
395 SourceManager::SourceFileCache &
407 std::unique_ptr<SourceManager> m_source_manager_ap; // This is a scratch source manager that we return if we have no targets.
408 SourceManager::SourceFileCache m_source_file_cache; // All the source managers for targets created in this debugger used this shared
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.h23 class SourceManager;
37 ContinuationIndenter(const FormatStyle &Style, SourceManager &SourceMgr,
121 SourceManager &SourceMgr;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp16 #include "clang/Basic/SourceManager.h"
84 const SourceManager* SM, SourceLocation L) {
93 static unsigned GetFID(const FIDMap& FIDs, const SourceManager &SM,
106 static void EmitLocation(raw_ostream &o, const SourceManager &SM,
111 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager&>(SM));
127 static void EmitLocation(raw_ostream &o, const SourceManager &SM,
134 static void EmitRange(raw_ostream &o, const SourceManager &SM,
164 const SourceManager &SM,
214 const SourceManager &SM,
273 const FIDMap& FM, const SourceManager
[all...]
H A DPathDiagnostic.cpp21 #include "clang/Basic/SourceManager.h"
125 const SourceManager &SMgr) {
160 const SourceManager &SMgr = LastP->getLocation().getManager();
214 const SourceManager &SMgr = (*D->path.begin())->getLocation().getManager();
334 const SourceManager &SM = XL.getManager();
401 const SourceManager &SM = XL.getManager();
544 const SourceManager &SM) {
583 const SourceManager &SM) {
589 const SourceManager &SM,
598 const SourceManager
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoring.cpp16 #include "clang/Basic/SourceManager.h"
38 Replacement::Replacement(SourceManager &Sources, SourceLocation Start,
43 Replacement::Replacement(SourceManager &Sources, const CharSourceRange &Range,
53 SourceManager &SM = Rewrite.getSourceMgr();
102 void Replacement::setFromSourceLocation(SourceManager &Sources,
124 static int getRangeSize(SourceManager &Sources, const CharSourceRange &Range) {
136 void Replacement::setFromSourceRange(SourceManager &Sources,
181 SourceManager SourceMgr(Diagnostics, Files);
289 SourceManager Sources(Diagnostics, getFiles());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Index/
H A DSimpleFormatContext.h23 #include "clang/Basic/SourceManager.h"
70 SourceManager Sources;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp17 #include "clang/Basic/SourceManager.h"
49 SourceManager &SM = Ctx.getSourceManager();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSourceManager.h1 //===--- SourceManager.h - Track and cache source files ---------*- C++ -*-===//
11 /// \brief Defines the SourceManager interface.
58 class SourceManager;
67 /// SourceManager implementation.
116 /// This is lazily computed. This is owned by the SourceManager
174 const SourceManager &SM,
253 friend class clang::SourceManager;
387 /// SourceManager keeps an array of these objects, and they are uniquely
449 /// SourceManager.
531 /// The SourceManager ca
538 class SourceManager : public RefCountedBase<SourceManager> { class in namespace:clang
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Edit/
H A DCommit.cpp11 #include "clang/Basic/SourceManager.h"
19 SourceLocation Commit::Edit::getFileLocation(SourceManager &SM) const {
26 CharSourceRange Commit::Edit::getFileRange(SourceManager &SM) const {
31 CharSourceRange Commit::Edit::getInsertFromRange(SourceManager &SM) const {
229 const SourceManager &SM = SourceMgr;
260 const SourceManager &SM = SourceMgr;
299 const SourceManager &SM = SourceMgr;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransformActions.cpp13 #include "clang/Basic/SourceManager.h"
68 CharRange(CharSourceRange range, SourceManager &srcMgr, Preprocessor &PP) {
99 SourceManager &SrcMgr, Preprocessor &PP) {
179 SourceManager &SM,Preprocessor &PP);
386 SourceManager &SM = Ctx.getSourceManager();
399 SourceManager &SM = Ctx.getSourceManager();
421 SourceManager &SM = Ctx.getSourceManager();
482 SourceManager &SM = Ctx.getSourceManager();
493 SourceManager &SM = Ctx.getSourceManager();
506 SourceManager
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteMacros.cpp16 #include "clang/Basic/SourceManager.h"
64 SourceManager &SM = PP.getSourceManager();
91 SourceManager &SM = PP.getSourceManager();
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h83 clang::SourceManager * const SourceManager; member in class:clang::ast_matchers::MatchFinder::MatchResult::clang

Completed in 126 milliseconds

1234567