Home
last modified time | relevance | path

Searched refs:startBuf (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp927 const char *startBuf = SM->getCharacterData(startLoc); in RewritePropertyImplDecl() local
928 assert((*startBuf == '@') && "bogus @synthesize location"); in RewritePropertyImplDecl()
929 const char *semiBuf = strchr(startBuf, ';'); in RewritePropertyImplDecl()
931 startGetterSetterLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); in RewritePropertyImplDecl()
1063 const char *startBuf = SM->getCharacterData(startLoc); in RewriteForwardClassEpilogue() local
1064 const char *semiPtr = strchr(startBuf, ';'); in RewriteForwardClassEpilogue()
1066 ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); in RewriteForwardClassEpilogue()
1173 const char *startBuf = SM->getCharacterData(LocStart); in RewriteProtocolDecl() local
1175 for (const char *p = startBuf; p < endBuf; p++) { in RewriteProtocolDecl()
1177 SourceLocation OptionalLoc = LocStart.getLocWithOffset(p-startBuf); in RewriteProtocolDecl()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang-c/
H A DIndex.h4914 CXCursor, const char **startBuf, const char **endBuf, unsigned *startLine,