Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp-inl.h38 int32_t* last_match = in FetchNext() local
40 int last_end_index = last_match[1]; in FetchNext()
49 int last_start_index = last_match[0]; in FetchNext()
Djsregexp.cc695 int32_t* last_match = in GlobalCache() local
697 last_match[0] = -1; in GlobalCache()
698 last_match[1] = 0; in GlobalCache()
/external/autotest/client/cros/
Dcros_logging.py154 last_match = None
157 last_match = line
158 if last_match:
159 return last_match
/external/mksh/src/
Djobs.c1649 Job *j, *last_match; in j_lookup() local
1698 last_match = NULL; in j_lookup()
1702 if (last_match) { in j_lookup()
1707 last_match = j; in j_lookup()
1709 if (last_match) in j_lookup()
1710 return (last_match); in j_lookup()
1716 last_match = NULL; in j_lookup()
1719 if (last_match) { in j_lookup()
1724 last_match = j; in j_lookup()
1726 if (last_match) in j_lookup()
[all …]
/external/v8/tools/
Djs2c.py105 last_match = end
119 add_arg(lines[last_match:end])
120 last_match = end + 1
127 add_arg(lines[last_match:end-1])
/external/v8/src/runtime/
Druntime-regexp.cc949 int32_t* last_match = NewArray<int32_t>(capture_registers); in SearchRegExpMultiple() local
951 last_match[i] = Smi::cast(last_match_cache->get(i))->value(); in SearchRegExpMultiple()
961 last_match); in SearchRegExpMultiple()
962 DeleteArray(last_match); in SearchRegExpMultiple()
1058 int32_t* last_match = global_cache.LastSuccessfulMatch(); in SearchRegExpMultiple() local
1060 last_match_cache->set(i, Smi::FromInt(last_match[i])); in SearchRegExpMultiple()