Searched defs:locInfo (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransforms.cpp147 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); local
151 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
155 const char *tokenBegin = file.data() + locInfo.second;
158 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
397 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); local
401 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
405 const char *tokenBegin = file.data() + locInfo.second;
408 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
478 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(atLoc); local
482 StringRef file = SM.getBufferData(locInfo
[all...]
H A DTransformActions.cpp425 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc); local
429 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
433 return file.substr(locInfo.second).startswith(text);
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp280 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc); local
283 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
286 const char *tokenBegin = file.data() + locInfo.second;
289 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),

Completed in 86 milliseconds