Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1529 const char *startCollectionBuf = startBuf; in RewriteObjCForCollectionStmt() local
1530 startCollectionBuf += 3; // skip 'for' in RewriteObjCForCollectionStmt()
1531 startCollectionBuf = strchr(startCollectionBuf, '('); in RewriteObjCForCollectionStmt()
1532 startCollectionBuf++; // skip '(' in RewriteObjCForCollectionStmt()
1534 while (*startCollectionBuf != ' ' || in RewriteObjCForCollectionStmt()
1535 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' || in RewriteObjCForCollectionStmt()
1536 (*(startCollectionBuf+3) != ' ' && in RewriteObjCForCollectionStmt()
1537 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '(')) in RewriteObjCForCollectionStmt()
1538 startCollectionBuf++; in RewriteObjCForCollectionStmt()
1539 startCollectionBuf += 3; in RewriteObjCForCollectionStmt()
[all …]
H A DRewriteModernObjC.cpp1737 const char *startCollectionBuf = startBuf; in RewriteObjCForCollectionStmt() local
1738 startCollectionBuf += 3; // skip 'for' in RewriteObjCForCollectionStmt()
1739 startCollectionBuf = strchr(startCollectionBuf, '('); in RewriteObjCForCollectionStmt()
1740 startCollectionBuf++; // skip '(' in RewriteObjCForCollectionStmt()
1742 while (*startCollectionBuf != ' ' || in RewriteObjCForCollectionStmt()
1743 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' || in RewriteObjCForCollectionStmt()
1744 (*(startCollectionBuf+3) != ' ' && in RewriteObjCForCollectionStmt()
1745 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '(')) in RewriteObjCForCollectionStmt()
1746 startCollectionBuf++; in RewriteObjCForCollectionStmt()
1747 startCollectionBuf += 3; in RewriteObjCForCollectionStmt()
[all …]