OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:common_suffix_len
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/v8/src/
liveedit.cc
286
int
common_suffix_len
;
local
296
common_suffix_len
= 0;
299
while (
common_suffix_len
< suffix_limit &&
300
input->Equals(len1 -
common_suffix_len
- 1,
301
len2 -
common_suffix_len
- 1)) {
302
common_suffix_len
++;
306
if (common_prefix_len > 0 ||
common_suffix_len
> 0) {
307
int new_len1 = len1 -
common_suffix_len
- common_prefix_len;
308
int new_len2 = len2 -
common_suffix_len
- common_prefix_len;
[
all
...]
Completed in 79 milliseconds