Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:startCollectionBuf

1545   const char *startCollectionBuf = startBuf;
1546 startCollectionBuf += 3; // skip 'for'
1547 startCollectionBuf = strchr(startCollectionBuf, '(');
1548 startCollectionBuf++; // skip '('
1550 while (*startCollectionBuf != ' ' ||
1551 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1552 (*(startCollectionBuf+3) != ' ' &&
1553 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1554 startCollectionBuf++;
1555 startCollectionBuf += 3;
1558 ReplaceText(startLoc, startCollectionBuf - startBuf, buf);