Searched refs:charBufferIndex (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFURL.c1340 CFIndex charBufferIndex = 0; local
1377 if ( charBufferIndex >= (kCharBufferMax - kMaxPercentEncodedUniChars) ) {
1379 CFStringAppendCharacters(newString, charBuffer, charBufferIndex);
1380 charBufferIndex = 0;
1388 charBuffer[charBufferIndex++] = '%';
1389 charBuffer[charBufferIndex++] = hexchars[*currByte >> 4];
1390 charBuffer[charBufferIndex++] = hexchars[*currByte & 0x0f];
1405 charBuffer[charBufferIndex++] = '%';
1406 charBuffer[charBufferIndex++] = hexchars[*currByte >> 4];
1407 charBuffer[charBufferIndex
[all...]

Completed in 121 milliseconds