Lines Matching defs:start_from
273 int start_from = Smi::ToInt(*from_index);
274 if (start_from < 0) {
275 index = std::max<int64_t>(len + start_from, 0);
277 index = start_from;
281 double start_from = from_index->Number();
282 if (start_from >= len) return ReadOnlyRoots(isolate).false_value();
283 if (V8_LIKELY(std::isfinite(start_from))) {
284 if (start_from < 0) {
285 index = static_cast<int64_t>(std::max<double>(start_from + len, 0));
287 index = start_from;
368 int64_t start_from;
377 start_from = static_cast<int64_t>(fp);
379 start_from = std::numeric_limits<int64_t>::min();
384 if (start_from >= 0) {
385 index = start_from;
387 index = len + start_from;