HomeSort by: relevance | last modified time | path
    Searched refs:SourceManager (Results 1 - 25 of 262) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
ScratchBuffer.h 19 class SourceManager;
25 SourceManager &SourceMgr;
30 ScratchBuffer(SourceManager &SM);
Lexer.h 38 class SourceManager;
157 const SourceManager &SM, const LangOptions &LangOpts);
307 const SourceManager &SourceMgr,
317 const SourceManager &SourceMgr,
331 const SourceManager &SM,
340 const SourceManager &SM,
346 const SourceManager &SM,
354 const SourceManager &SM,
361 const SourceManager &SM,
369 const SourceManager &SM
    [all...]
PPConditionalDirectiveRecord.h 26 SourceManager &SourceMgr;
42 SourceManager &SM;
44 explicit Comp(SourceManager &SM) : SM(SM) {}
66 explicit PPConditionalDirectiveRecord(SourceManager &SM);
70 SourceManager &getSourceManager() const { return SourceMgr; }
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
PrettyStackTrace.h 27 SourceManager &SM;
31 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg)
NoSanitizeList.h 26 class SourceManager;
31 SourceManager &SM;
35 SourceManager &SM);
XRayLists.h 27 class SourceManager;
33 SourceManager &SM;
38 ArrayRef<std::string> AttrListPaths, SourceManager &SM);
ProfileList.h 36 SourceManager &SM;
39 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/Extract/
SourceExtraction.h 17 class SourceManager;
36 const SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
TestSupport.h 29 class SourceManager;
61 bool foreachRange(const SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Tokens.h 33 #include "clang/Basic/SourceManager.h"
56 FileRange(const SourceManager &SM, SourceLocation BeginLoc, unsigned Length);
59 FileRange(const SourceManager &SM, SourceLocation BeginLoc,
80 llvm::StringRef text(const SourceManager &SM) const;
84 CharSourceRange toCharRange(const SourceManager &SM) const;
125 llvm::StringRef text(const SourceManager &SM) const;
129 FileRange range(const SourceManager &SM) const;
135 static FileRange range(const SourceManager &SM, const syntax::Token &First,
138 std::string dumpForTests(const SourceManager &SM) const;
178 TokenBuffer(const SourceManager &SourceMgr) : SourceMgr(&SourceMgr) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
AffectedRangeManager.h 17 #include "clang/Basic/SourceManager.h"
27 AffectedRangeManager(const SourceManager &SourceMgr,
58 const SourceManager &SourceMgr;
Macros.h 56 class SourceManager;
107 clang::SourceManager &SourceMgr, const FormatStyle &Style,
130 clang::SourceManager &SourceMgr;
  /src/external/mit/isl/dist/interface/
cpp_conversion.h 9 cpp_conversion_generator(SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 1 //===- SourceManager.cpp - Track and cache source files -------------------===//
9 // This file implements the SourceManager interface.
13 #include "clang/Basic/SourceManager.h"
50 // SourceManager Helper Classes
265 unsigned SourceManager::getLineTableFilenameID(StringRef Name) {
272 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
300 LineTableInfo &SourceManager::getLineTable() {
310 SourceManager::SourceManager(DiagnosticsEngine &Diag, FileManager &FileMgr,
317 SourceManager::~SourceManager()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
USRGeneration.h 21 class SourceManager;
71 const SourceManager &SM, SmallVectorImpl<char> &Buf);
73 const SourceManager &SM, SmallVectorImpl<char> &Buf);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RefactoringRuleContext.h 13 #include "clang/Basic/SourceManager.h"
29 /// - SourceManager: a reference to a valid source manager.
35 RefactoringRuleContext(const SourceManager &SM) : SM(SM) {}
37 const SourceManager &getSources() const { return SM; }
72 const SourceManager &SM;
AtomicChange.h 17 #include "clang/Basic/SourceManager.h"
43 AtomicChange(const SourceManager &SM, SourceLocation KeyPosition);
45 AtomicChange(const SourceManager &SM, SourceLocation KeyPosition,
88 llvm::Error replace(const SourceManager &SM, const CharSourceRange &Range,
94 llvm::Error replace(const SourceManager &SM, SourceLocation Loc,
105 llvm::Error insert(const SourceManager &SM, SourceLocation Loc,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Transformer.cpp 48 auto ID = Result.SourceManager->getFileID(T.Range.getBegin());
50 .emplace(ID, AtomicChange(*Result.SourceManager,
57 AC.replace(*Result.SourceManager, T.Range, T.Replacement)) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXSourceLocation.h 23 class SourceManager;
29 translateSourceLocation(const SourceManager &SM, const LangOptions &LangOpts,
53 CXSourceRange translateSourceRange(const SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
RawCommentList.h 26 class SourceManager;
47 RawComment(const SourceManager &SourceMgr, SourceRange SR,
98 StringRef getRawText(const SourceManager &SourceMgr) const {
139 std::string getFormattedText(const SourceManager &SourceMgr,
171 StringRef getRawTextSlow(const SourceManager &SourceMgr) const;
182 RawCommentList(SourceManager &SourceMgr) : SourceMgr(SourceMgr) {}
198 SourceManager &SourceMgr;
CommentParser.h 23 class SourceManager;
43 const SourceManager &SourceMgr;
89 const SourceManager &SourceMgr, DiagnosticsEngine &Diags,
  /src/external/apache2/llvm/dist/clang/include/clang/Edit/
Commit.h 23 class SourceManager;
46 SourceLocation getFileLocation(SourceManager &SM) const;
47 CharSourceRange getFileRange(SourceManager &SM) const;
48 CharSourceRange getInsertFromRange(SourceManager &SM) const;
52 const SourceManager &SourceMgr;
64 Commit(const SourceManager &SM, const LangOptions &LangOpts,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CoverageMappingGen.h 27 class SourceManager;
54 SourceManager &SourceMgr;
61 CoverageSourceInfo(SourceManager &SourceMgr) : SourceMgr(SourceMgr) {}
137 SourceManager &SM;
142 CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
146 CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h 26 class SourceManager;
92 void dumpBlockLiveness(const SourceManager &M);
96 void dumpExprLiveness(const SourceManager &M);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
SourceExtraction.cpp 13 #include "clang/Basic/SourceManager.h"
21 bool isSemicolonAtLocation(SourceLocation TokenLoc, const SourceManager &SM,
61 const SourceManager &SM) {
73 const SourceManager &SM,

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011