HomeSort by: relevance | last modified time | path
    Searched defs:locInfo (Results 1 - 3 of 3) 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/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 43 milliseconds