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

/external/v8/src/runtime/
H A Druntime-i18n.cc1000 int index_to_first_unprocessed = length; local
1003 index_to_first_unprocessed = FindFirstUpperOrNonAscii(s, length);
1005 if (index_to_first_unprocessed == length) return *s;
1018 index_to_first_unprocessed = FastAsciiConvert<true>(
1021 // If not ASCII, we keep the result up to index_to_first_unprocessed and
1023 if (index_to_first_unprocessed == length)
1026 for (int index = index_to_first_unprocessed; index < length; ++index) {
1030 if (index_to_first_unprocessed == length) {
1032 index_to_first_unprocessed = FindFirstUpperOrNonAscii(s, length);
1035 if (index_to_first_unprocessed
1062 int index_to_first_unprocessed = local
[all...]
/external/v8/src/builtins/
H A Dbuiltins-string.cc2116 int index_to_first_unprocessed = FastAsciiConvert<Converter::kIsToLower>( local
2121 if (index_to_first_unprocessed == length)

Completed in 125 milliseconds