Lines Matching refs:characters
347 // Allocate a buffer big enough to hold all the characters
351 // characters, and resize if necessary (i.e. if the buffer contains
352 // non-ascii characters). (Alternatively, scan the buffer first for
353 // ascii characters, so we know this will be sufficient).
360 const UChar* characters = stringStart;
361 const UChar* characters_end = characters + length;
364 while (characters < characters_end) {
367 &characters, characters_end, &buffer, buffer_end, /* strict= */ true);
373 DCHECK_LE(0xD800, *characters);
374 DCHECK_LE(*characters, 0xDFFF);
379 ++characters;