Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp-inl.h37 int32_t* last_match = in FetchNext() local
39 int last_end_index = last_match[1]; in FetchNext()
46 int last_start_index = last_match[0]; in FetchNext()
Djsregexp.cc652 int32_t* last_match = in GlobalCache() local
654 last_match[0] = -1; in GlobalCache()
655 last_match[1] = 0; in GlobalCache()
/external/autotest/client/cros/
Dcros_logging.py156 last_match = None
159 last_match = line
160 if last_match:
161 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/tools/
Djs2c.py107 last_match = end
121 add_arg(lines[last_match:end])
122 last_match = end + 1
129 add_arg(lines[last_match:end-1])
/external/v8/src/runtime/
Druntime-regexp.cc1145 int32_t* last_match = NewArray<int32_t>(capture_registers); in SearchRegExpMultiple() local
1147 last_match[i] = Smi::ToInt(last_match_cache->get(i)); in SearchRegExpMultiple()
1157 capture_count, last_match); in SearchRegExpMultiple()
1158 DeleteArray(last_match); in SearchRegExpMultiple()
1274 int32_t* last_match = global_cache.LastSuccessfulMatch(); in SearchRegExpMultiple() local
1276 last_match_cache->set(i, Smi::FromInt(last_match[i])); in SearchRegExpMultiple()