Searched refs:iCodeStart (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | doc.c | 2233 size_t iCodeStart = 0; // start of code section in highlightText() local 2382 codebuf.write(buf->data + iCodeStart + 1, i - (iCodeStart + 1)); in highlightText() 2387 buf->remove(iCodeStart, i - iCodeStart + 1); // also trimming off the current ` in highlightText() 2390 i = buf->insert(iCodeStart, pre, strlen(pre)); in highlightText() 2410 iCodeStart = i; in highlightText() 2459 if (inCode && (i <= iCodeStart)) in highlightText() 2472 codebuf.write(buf->data + iCodeStart, i - iCodeStart); in highlightText() 2499 buf->remove(iCodeStart, i - iCodeStart); in highlightText() 2500 i = buf->insert(iCodeStart, codebuf.data, codebuf.offset); in highlightText() 2511 iCodeStart = i; in highlightText()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | doc.d | 4226 size_t iCodeStart = 0; // start of code section in highlightText() local 4477 codebuf.write(buf[iCodeStart + count .. i]); in highlightText() 4481 … buf.remove(iCodeStart, i - iCodeStart + count); // also trimming off the current ` in highlightText() 4483 i = buf.insert(iCodeStart, pre); in highlightText() 4516 iCodeStart = i; in highlightText() 4650 if (inCode && (i <= iCodeStart)) in highlightText() 4661 codebuf.write(buf[iCodeStart .. i]); in highlightText() 4690 buf.remove(iCodeStart, i - iCodeStart); in highlightText() 4691 i = buf.insert(iCodeStart, codebuf[]); in highlightText() 4723 iCodeStart = i; in highlightText()
|