Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:startCollectionBuf

1621   const char *startCollectionBuf = startBuf;
1622 startCollectionBuf += 3; // skip 'for'
1623 startCollectionBuf = strchr(startCollectionBuf, '(');
1624 startCollectionBuf++; // skip '('
1626 while (*startCollectionBuf != ' ' ||
1627 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1628 (*(startCollectionBuf+3) != ' ' &&
1629 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1630 startCollectionBuf++;
1631 startCollectionBuf += 3;
1634 ReplaceText(startLoc, startCollectionBuf - startBuf, buf);