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

  /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/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/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/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/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/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/lib/StaticAnalyzer/Core/
SarifDiagnostics.cpp 139 if (const json::Object *FileLoc = Obj->getObject("location")) {
140 Optional<StringRef> URI = FileLoc->getString("uri");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.cpp 254 return OS << FileLoc << "\n";
ResourceScriptStmt.h 691 StringRef FileLoc;
697 : RCResource(Flags), Type(ResourceType), FileLoc(FileLocation),
ResourceFileWriter.cpp 1307 return appendFile(Res->FileLoc);
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 1712 SourceLocation FileLoc = SourceLocation::getFileLoc(Entry.getOffset());
1715 return FileLoc;
1733 return FileLoc.getLocWithOffset(Size);
1740 return FileLoc.getLocWithOffset(FilePos);
1747 return FileLoc.getLocWithOffset(FilePos + i);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h 545 SourceLocation FileLoc);
CGDebugInfo.cpp 3133 SourceLocation FileLoc) {
3134 llvm::DIFile *FName = getOrCreateFile(FileLoc);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 5274 SourceLocation FileLoc = SM.getFileLoc(Loc);
5275 assert(SM.isLocalSourceLocation(FileLoc));
5278 std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);

Completed in 39 milliseconds