HomeSort by relevance Sort by last modified time
    Searched refs:common_suffix_len (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
liveedit.cc 316 int common_suffix_len; local
326 common_suffix_len = 0;
329 while (common_suffix_len < suffix_limit &&
330 input->Equals(len1 - common_suffix_len - 1,
331 len2 - common_suffix_len - 1)) {
332 common_suffix_len++;
336 if (common_prefix_len > 0 || common_suffix_len > 0) {
337 int new_len1 = len1 - common_suffix_len - common_prefix_len;
338 int new_len2 = len2 - common_suffix_len - common_prefix_len;
    [all...]
  /external/v8/src/
liveedit.cc 313 int common_suffix_len; local
323 common_suffix_len = 0;
326 while (common_suffix_len < suffix_limit &&
327 input->Equals(len1 - common_suffix_len - 1,
328 len2 - common_suffix_len - 1)) {
329 common_suffix_len++;
333 if (common_prefix_len > 0 || common_suffix_len > 0) {
334 int new_len1 = len1 - common_suffix_len - common_prefix_len;
335 int new_len2 = len2 - common_suffix_len - common_prefix_len;
    [all...]

Completed in 51 milliseconds