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

  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
Transforms.cpp 141 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
145 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
149 const char *tokenBegin = file.data() + locInfo.second;
152 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
389 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
393 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
397 const char *tokenBegin = file.data() + locInfo.second;
400 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
470 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc);
474 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp)
    [all...]
TransformActions.cpp 426 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
430 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
434 return file.substr(locInfo.second).startswith(text);
  /src/external/apache2/llvm/dist/clang/lib/Edit/
Commit.cpp 242 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
243 if (locInfo.first.isInvalid())
245 offs = FileOffset(locInfo.first, locInfo.second);
276 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
277 if (locInfo.first.isInvalid())
279 offs = FileOffset(locInfo.first, locInfo.second);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 312 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc);
315 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
318 const char *tokenBegin = file.data() + locInfo.second;
321 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),

Completed in 27 milliseconds