Home
last modified time | relevance | path

Searched refs:last_match (Results 1 – 4 of 4) sorted by relevance

/external/autotest/client/cros/
Dcros_logging.py162 last_match = None
165 last_match = line
166 if last_match:
167 return last_match
/external/mksh/src/
Djobs.c1677 Job *j, *last_match; in j_lookup() local
1726 last_match = NULL; in j_lookup()
1730 if (last_match) { in j_lookup()
1735 last_match = j; in j_lookup()
1737 if (last_match) in j_lookup()
1738 return (last_match); in j_lookup()
1744 last_match = NULL; in j_lookup()
1747 if (last_match) { in j_lookup()
1752 last_match = j; in j_lookup()
1754 if (last_match) in j_lookup()
[all …]
/external/v8/src/regexp/
Dregexp.cc1012 int32_t* last_match = in RegExpGlobalCache() local
1014 last_match[0] = -1; in RegExpGlobalCache()
1015 last_match[1] = 0; in RegExpGlobalCache()
1047 int32_t* last_match = in FetchNext() local
1049 int last_end_index = last_match[1]; in FetchNext()
1068 int last_start_index = last_match[0]; in FetchNext()
/external/v8/src/runtime/
Druntime-regexp.cc1117 int32_t* last_match = NewArray<int32_t>(capture_registers); in SearchRegExpMultiple() local
1119 last_match[i] = Smi::ToInt(last_match_cache.get(i)); in SearchRegExpMultiple()
1129 capture_count, last_match); in SearchRegExpMultiple()
1130 DeleteArray(last_match); in SearchRegExpMultiple()
1244 int32_t* last_match = global_cache.LastSuccessfulMatch(); in SearchRegExpMultiple() local
1246 last_match_cache->set(i, Smi::FromInt(last_match[i])); in SearchRegExpMultiple()