HomeSort by relevance Sort by last modified time
    Searched defs:FileLoc (Results 1 - 9 of 9) sorted by null

  /external/clang/tools/libclang/
CXSourceLocation.cpp 373 SourceLocation FileLoc = SM.getFileLoc(Loc);
374 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(FileLoc);
IndexingContext.cpp 716 SourceLocation FileLoc = SM.getFileLoc(Loc);
717 FileID FID = SM.getFileID(FileLoc);
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 53 SourceLocation FileLoc; // Location for start of file.
108 Lexer(SourceLocation FileLoc, const LangOptions &LangOpts,
134 SourceLocation getFileLoc() const { return FileLoc; }
  /external/clang/lib/Rewrite/Core/
DeltaTree.cpp 40 unsigned FileLoc;
45 Delta.FileLoc = Loc;
186 while (i != e && FileIndex > getValue(i).FileLoc)
191 if (i != e && getValue(i).FileLoc == FileIndex) {
218 if (InsertRes->Split.FileLoc > FileIndex)
261 if (SubSplit.FileLoc < InsertRes->Split.FileLoc)
269 // Find the insertion point, the first delta whose index is >SubSplit.FileLoc.
271 while (i != e && SubSplit.FileLoc > InsertSide->getValue(i).FileLoc)
    [all...]
  /external/clang/include/clang/AST/
CommentLexer.h 237 SourceLocation FileLoc;
309 return FileLoc.getLocWithOffset(CharNo);
348 SourceLocation FileLoc,
  /external/clang/include/clang/Frontend/
ASTUnit.h 215 SourceLocation FileLoc = SM.getLocForStartOfFile(SM.getPreambleFileID());
216 return SourceRange(FileLoc, FileLoc.getLocWithOffset(size()-1));
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp 111 FileLoc(PP.getSourceManager().getLocForStartOfFile(FID)),
131 Lexer::Lexer(SourceLocation fileloc, const LangOptions &langOpts,
133 : FileLoc(fileloc), LangOpts(langOpts) {
146 : FileLoc(SM.getLocForStartOfFile(FID)), LangOpts(langOpts) {
192 L->FileLoc = SM.createExpansionLoc(SM.getLocForStartOfFile(SpellingFID),
524 SourceLocation FileLoc = SM.getSpellingLoc(Loc);
525 SourceLocation BeginFileLoc = getBeginningOfFileToken(FileLoc, SM, LangOpts);
526 std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(FileLoc);
550 SourceLocation FileLoc = SourceLocation::getFromRawEncoding(StartOffset)
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 135 milliseconds