HomeSort by: relevance | last modified time | path
    Searched defs:FileLoc (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXSourceLocation.cpp 358 SourceLocation FileLoc = SM.getFileLoc(Loc);
359 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(FileLoc);
CXIndexDataConsumer.cpp 936 SourceLocation FileLoc = SM.getFileLoc(Loc);
937 FileID FID = SM.getFileID(FileLoc);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentLexer.h 242 SourceLocation FileLoc;
313 return FileLoc.getLocWithOffset(CharNo);
350 const CommandTraits &Traits, SourceLocation FileLoc,
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Lexer.h 91 SourceLocation FileLoc;
150 Lexer(SourceLocation FileLoc, const LangOptions &LangOpts,
178 SourceLocation getFileLoc() const { return FileLoc; }
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 42 unsigned FileLoc;
47 Delta.FileLoc = Loc;
191 while (i != e && FileIndex > getValue(i).FileLoc)
196 if (i != e && getValue(i).FileLoc == FileIndex) {
223 if (InsertRes->Split.FileLoc > FileIndex)
266 if (SubSplit.FileLoc < InsertRes->Split.FileLoc)
274 // Find the insertion point, the first delta whose index is >SubSplit.FileLoc.
276 while (i != e && SubSplit.FileLoc > InsertSide->getValue(i).FileLoc)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelection.cpp 86 SourceLocation FileLoc;
88 FileLoc = DeclRange.getEnd();
90 FileLoc = SM.getSpellingLoc(DeclRange.getBegin());
91 if (SM.getFileID(FileLoc) != TargetFile)
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
TestSupport.cpp 52 SourceLocation FileLoc = SM.getLocForStartOfFile(FID);
57 SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Range.Begin));
59 SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Range.End));
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTUnit.cpp 1259 SourceLocation FileLoc = SM.getFileLoc(InDiag.getLocation());
1260 OutDiag.Filename = std::string(SM.getFilename(FileLoc));
1263 OutDiag.LocOffset = SM.getFileOffset(FileLoc);
2348 SourceLocation FileLoc;
2352 FileLoc = SrcMgr.getLocForStartOfFile(FID);
2353 PreambleSrcLocCache[SD.Filename] = FileLoc;
2355 FileLoc = ItFileID->getValue();
2358 if (FileLoc.isInvalid())
2360 SourceLocation L = FileLoc.getLocWithOffset(SD.LocOffset);
2366 SourceLocation BL = FileLoc.getLocWithOffset(Range.first)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 138 FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)),
149 Lexer::Lexer(SourceLocation fileloc, const LangOptions &langOpts,
151 : FileLoc(fileloc), LangOpts(langOpts) {
211 L->FileLoc = SM.createExpansionLoc(SM.getLocForStartOfFile(SpellingFID),
566 SourceLocation FileLoc = SM.getSpellingLoc(Loc);
567 SourceLocation BeginFileLoc = getBeginningOfFileToken(FileLoc, SM, LangOpts);
568 std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(FileLoc);
592 SourceLocation FileLoc = SourceLocation::getFromRawEncoding(StartOffset);
593 Lexer TheLexer(FileLoc, LangOpts, Buffer.begin(), Buffer.begin()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.h 691 StringRef FileLoc;
697 : RCResource(Flags), Type(ResourceType), FileLoc(FileLocation),

Completed in 44 milliseconds