Searched refs:startBuf (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 428 bool BufferContainsPPDirectives(const char *startBuf, const char *endBuf); 772 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl() local 773 assert((*startBuf == '@') && "bogus @synthesize location"); in RewritePropertyImplDecl() 774 const char *semiBuf = strchr(startBuf, ';'); in RewritePropertyImplDecl() 777 startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl() 906 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue() local 907 const char *semiPtr = strchr(startBuf, ';'); in RewriteForwardClassEpilogue() 909 ReplaceText(startLoc, semiPtr - startBuf + 1, typedefString); in RewriteForwardClassEpilogue() 1005 const char *startBuf = SM->getCharacterData(LocStart); in RewriteProtocolDecl() local 1007 for (const char *p = startBuf; p < endBuf; p++) { in RewriteProtocolDecl() [all …]
|
| H A D | RewriteModernObjC.cpp | 926 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl() local 927 assert((*startBuf == '@') && "bogus @synthesize location"); in RewritePropertyImplDecl() 928 const char *semiBuf = strchr(startBuf, ';'); in RewritePropertyImplDecl() 930 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl() 1062 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue() local 1063 const char *semiPtr = strchr(startBuf, ';'); in RewriteForwardClassEpilogue() 1065 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); in RewriteForwardClassEpilogue() 1172 const char *startBuf = SM->getCharacterData(LocStart); in RewriteProtocolDecl() local 1174 for (const char *p = startBuf; p < endBuf; p++) { in RewriteProtocolDecl() 1176 SourceLocation OptionalLoc = LocStart.getLocWithOffset(p-startBuf); in RewriteProtocolDecl() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang-c/ |
| H A D | Index.h | 5143 CXCursor, const char **startBuf, const char **endBuf, unsigned *startLine,
|