Home | History | Annotate | Download | only in Frontend

Lines Matching refs:startCollectionBuf

1771   const char *startCollectionBuf = startBuf;
1772 startCollectionBuf += 3; // skip 'for'
1773 startCollectionBuf = strchr(startCollectionBuf, '(');
1774 startCollectionBuf++; // skip '('
1776 while (*startCollectionBuf != ' ' ||
1777 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1778 (*(startCollectionBuf+3) != ' ' &&
1779 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1780 startCollectionBuf++;
1781 startCollectionBuf += 3;
1784 ReplaceText(startLoc, startCollectionBuf - startBuf, buf);