Lines Matching refs:fromIndex

2679 	  function baseIndexOf(array, value, fromIndex) {
2681 return indexOfNaN(array, fromIndex);
2683 var index = (fromIndex || 0) - 1,
2861 function indexOfNaN(array, fromIndex, fromRight) {
2863 index = fromRight ? (fromIndex || length) : ((fromIndex || 0) - 1);
4116 function baseDelay(func, wait, args, fromIndex) {
4120 return setTimeout(function() { func.apply(undefined, baseSlice(args, fromIndex)); }, wait);
4291 function baseFlatten(array, isDeep, isStrict, fromIndex) {
4292 var index = (fromIndex || 0) - 1,
5797 function getIndexOf(collection, target, fromIndex) {
5800 return collection ? result(collection, target, fromIndex) : result;
6737 function indexOf(array, value, fromIndex) {
6742 if (typeof fromIndex == 'number') {
6743 fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0);
6744 } else if (fromIndex) {
6750 return baseIndexOf(array, value, fromIndex);
6874 function lastIndexOf(array, value, fromIndex) {
6880 if (typeof fromIndex == 'number') {
6881 …index = (fromIndex < 0 ? nativeMax(length + fromIndex, 0) : nativeMin(fromIndex || 0, length - 1))…
6882 } else if (fromIndex) {
6931 var fromIndex = 0,
6934 while ((fromIndex = indexOf(array, value, fromIndex)) > -1) {
6935 splice.call(array, fromIndex, 1);
7794 function includes(collection, target, fromIndex) {
7803 if (typeof fromIndex == 'number') {
7804 fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0);
7806 fromIndex = 0;
7809 ? (fromIndex < length && collection.indexOf(target, fromIndex) > -1)
7810 : (getIndexOf(collection, target, fromIndex) > -1);
9433 fromIndex = funcs.length - 1;
9435 if (fromIndex < 0) {
9442 var index = fromIndex,