Searched refs:locInfo (Results 1 - 5 of 5) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMException.java315 String locInfo = getLocationAsString();
317 if (null != locInfo) {
318 s.println(locInfo);
343 String locInfo =
347 if (null != locInfo) {
348 s.println(locInfo);
/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/Edit/
H A DCommit.cpp238 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
239 if (locInfo.first.isInvalid())
241 offs = FileOffset(locInfo.first, locInfo.second);
273 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
274 if (locInfo.first.isInvalid())
276 offs = FileOffset(locInfo.first, locInfo.second);
/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 846 milliseconds