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

/external/chromium_org/v8/src/
H A Dscanner.h71 // Skips forward past the next code_unit_count UTF-16 code units
74 // than code_unit_count,
75 inline unsigned SeekForward(unsigned code_unit_count) { argument
78 if (code_unit_count <= buffered_chars) {
79 buffer_cursor_ += code_unit_count;
80 pos_ += code_unit_count;
81 return code_unit_count;
83 return SlowSeekForward(code_unit_count);
100 virtual unsigned SlowSeekForward(unsigned code_unit_count) = 0;

Completed in 105 milliseconds