Searched refs:Let (Results 1 – 25 of 539) sorted by relevance
12345678910>>...22
/external/v8/src/builtins/ |
D | array-copywithin.tq | 13 // 1. Let O be ? ToObject(this value). 16 // 2. Let len be ? ToLength(? Get(O, "length")). 19 // 3. Let relativeTarget be ? ToInteger(target). 26 // 5. Let relativeStart be ? ToInteger(start). 44 // 9. Let count be min(final-from, len-to). 51 // a. Let direction be -1. 54 // b. Let from be from + count - 1. 57 // c. Let to be to + count - 1. 63 // a. Let fromKey be ! ToString(from). 64 // b. Let toKey be ! ToString(to). [all …]
|
D | array-from.tq | 26 // 1. Let C be the this value. 38 // b. Let mapping be true. 42 // 4. Let usingIterator be ? GetMethod(items, @@iterator). 52 // i. Let A be ? Construct(C). 56 // i. Let A be ? ArrayCreate(0). 61 // c. Let iteratorRecord be ? GetIterator(items, sync, usingIterator). 66 // d. Let k be 0. 71 // 1. Let error be ThrowCompletion(a newly created TypeError object). 82 // ii. Let Pk be ! ToString(k). 84 // iii. Let next be ? IteratorStep(iteratorRecord). [all …]
|
D | string-replaceall.tq | 97 // 1. Let O be ? RequireObjectCoercible(this value). 102 // a. Let isRegExp be ? IsRegExp(searchString). 104 // i. Let flags be ? Get(searchValue, "flags"). 114 // c. Let replacer be ? GetMethod(searchValue, @@replace). 124 // 3. Let string be ? ToString(O). 127 // 4. Let searchString be ? ToString(searchValue). 130 // 5. Let functionalReplace be IsCallable(replaceValue). 136 // a. Let replaceValue be ? ToString(replaceValue). 140 // 7. Let searchLength be the length of searchString. 143 // 8. Let advanceBy be max(1, searchLength). [all …]
|
D | regexp-match-all.tq | 16 // 1. Let R be the this value. 23 // 3. Let S be ? ToString(O). 38 // 4. Let C be ? SpeciesConstructor(R, %RegExp%). 39 // 5. Let flags be ? ToString(? Get(R, "flags")). 40 // 6. Let matcher be ? Construct(C, « R, flags »). 46 // 7. Let lastIndex be ? ToLength(? Get(R, "lastIndex")). 60 // 4. Let C be ? SpeciesConstructor(R, %RegExp%). 65 // 5. Let flags be ? ToString(? Get(R, "flags")). 69 // 6. Let matcher be ? Construct(C, « R, flags »). 72 // 7. Let lastIndex be ? ToLength(? Get(R, "lastIndex")). [all …]
|
D | typed-array-subarray.tq | 12 // 1. Let O be the this value. 19 // 5. Let buffer be O.[[ViewedArrayBuffer]]. 22 // 6. Let srcLength be O.[[ArrayLength]]. 25 // 7. Let relativeBegin be ? ToInteger(begin). 41 // 11. Let newLength be max(endIndex - beginIndex, 0). 44 // 12. Let constructorName be the String value of O.[[TypedArrayName]]. 45 // 13. Let elementSize be the Number value of the Element Size value 49 // 14. Let srcByteOffset be O.[[ByteOffset]]. 52 // 15. Let beginByteOffset be srcByteOffset + beginIndex × elementSize. 57 // 16. Let argumentsList be « buffer, beginByteOffset, newLength ».
|
D | array-of.tq | 10 // 1. Let len be the actual number of arguments passed to this function. 13 // 2. Let items be the List of arguments passed to this function. 16 // 3. Let C be the this value. 24 // a. Let A be ? Construct(C, « len »). 28 // a. Let A be ? ArrayCreate(len). 33 // 6. Let k be 0. 38 // a. Let kValue be items[k]. 41 // b. Let Pk be ! ToString(k).
|
D | promise-finally.tq | 60 // 1. Let onFinally be F.[[OnFinally]]. 65 // 3. Let result be ? Call(onFinally). 68 // 4. Let C be F.[[Constructor]]. 75 // 6. Let promise be ? PromiseResolve(C, result). 78 // 7. Let thrower be equivalent to a function that throws reason. 107 // 1. Let onFinally be F.[[OnFinally]]. 112 // 3. Let result be ? Call(onFinally). 115 // 4. Let C be F.[[Constructor]]. 122 // 6. Let promise be ? PromiseResolve(C, result). 125 // 7. Let valueThunk be equivalent to a function that returns value. [all …]
|
D | array-splice.tq | 190 // 10. Let k be 0. 195 // a. Let from be ! ToString(actualStart + k). 198 // b. Let fromPresent be ? HasProperty(O, from). 203 // i. Let fromValue be ? Get(O, from). 224 // a. Let k be actualStart. 229 // i. Let from be ! ToString(k + actualDeleteCount). 231 // ii. Let to be ! ToString(k + itemCount). 234 // iii. Let fromPresent be ? HasProperty(O, from). 239 // 1. Let fromValue be ? Get(O, from). 254 // c. Let k be len. [all …]
|
D | array-unshift.tq | 10 // 1. Let O be ? ToObject(this value). 13 // 2. Let len be ? ToLength(? Get(O, "length")). 16 // 3. Let argCount be the number of actual arguments. 26 // b. Let k be len. 31 // i. Let from be ! ToString(k - 1). 34 // ii. Let to be ! ToString(k + argCount - 1). 37 // iii. Let fromPresent be ? HasProperty(O, from). 42 // 1. Let fromValue be ? Get(O, from). 56 // d. Let j be 0. 59 // e. Let items be a List whose elements are, in left to right order,
|
D | typed-array-filter.tq | 14 // 1. Let O be the this value. 21 // 3. Let len be O.[[ArrayLength]]. 31 // 6. Let kept be a new empty List. 37 // 7. Let k be 0. 38 // 8. Let captured be 0. 43 // a. Let Pk be ! ToString(k). 44 // b. Let kValue be ? Get(O, Pk). 47 // c. Let selected be ToBoolean(? Call(callbackfn, T, « kValue, k, O 63 // 10. Let A be ? TypedArraySpeciesCreate(O, captured). 67 // 11. Let n be 0.
|
D | string-startswith.tq | 16 // 1. Let O be ? RequireObjectCoercible(this value). 17 // 2. Let S be ? ToString(O). 20 // 3. Let isRegExp be ? IsRegExp(searchString). 26 // 5. Let searchStr be ? ToString(searchString). 29 // 8. Let len be the length of S. 32 // 6. Let pos be ? ToInteger(position). 34 // 9. Let start be min(max(pos, 0), len). 38 // 10. Let searchLength be the length of searchStr.
|
D | typed-array-set.tq | 41 // 2. Let target be the this value. 50 // 5. Let targetOffset be ? ToInteger(offset). 70 // 7. Let targetBuffer be target.[[ViewedArrayBuffer]]. 86 // 10. Let srcBuffer be typedArray.[[ViewedArrayBuffer]]. 130 // 14. Let src be ? ToObject(array). 133 // 15. Let srcLength be ? LengthOfArrayLike(src). 138 // 9. Let targetLength be target.[[ArrayLength]]. 152 // 10. Let targetName be the String value of target.[[TypedArrayName]]. 153 // 11. Let targetElementSize be the Element Size value specified in 155 // 12. Let targetType be the Element Type value in Table 62 for [all …]
|
D | typed-array-of.tq | 16 // 1. Let len be the actual number of arguments passed to this function. 19 // 2. Let items be the List of arguments passed to this function. 21 // 3. Let C be the this value. 25 // 5. Let newObj be ? TypedArrayCreate(C, len). 32 // 6. Let k be 0. 35 // 7a. Let kValue be items[k]. 38 // 7b. Let Pk be ! ToString(k).
|
D | promise-any.tq | 77 // 1. Let F be the active function object. 79 // 2. Let alreadyCalled be F.[[AlreadyCalled]]. 102 // 5. Let index be F.[[Index]]. 108 // 6. Let errors be F.[[Errors]]. 113 // 7. Let promiseCapability be F.[[Capability]]. 115 // 8. Let remainingElementsCount be F.[[RemainingElements]]. 142 // a. Let error be a newly created AggregateError object. 166 // 3. Let errors be a new empty List. (Do nothing: errors is 169 // 4. Let remainingElementsCount be a new Record { [[Value]]: 1 }. 173 // 5. Let index be 0. [all …]
|
D | string-endswith.tq | 35 // 1. Let O be ? RequireObjectCoercible(this value). 36 // 2. Let S be ? ToString(O). 39 // 3. Let isRegExp be ? IsRegExp(searchString). 45 // 5. Let searchStr be ? ToString(searchString). 48 // 6. Let len be the length of S. 53 // 8. Let end be min(max(pos, 0), len). 57 // 9. Let searchLength be the length of searchStr. 60 // 10. Let start be end - searchLength.
|
D | array-shift.tq | 41 // 1. Let O be ? ToObject(this value). 44 // 2. Let len be ? ToLength(? Get(O, "length")). 55 // 4. Let first be ? Get(O, "0"). 57 // 5. Let k be 1. 61 // a. Let from be ! ToString(k). 64 // b. Let to be ! ToString(k - 1). 67 // c. Let fromPresent be ? HasProperty(O, from). 72 // i. Let fromVal be ? Get(O, from).
|
D | proxy-get-prototype-of.tq | 16 // 1. Let handler be O.[[ProxyHandler]]. 23 // 4. Let target be O.[[ProxyTarget]]. 26 // 5. Let trap be ? GetMethod(handler, "getPrototypeOf"). 31 // 7. Let handlerProto be ? Call(trap, handler, « target »). 40 // 9. Let extensibleTarget be ? IsExtensible(target). 48 // 11. Let targetProto be ? target.[[GetPrototypeOf]]().
|
D | array-reverse.tq | 71 // 1. Let O be ? ToObject(this value). 74 // 2. Let len be ? ToLength(? Get(O, "length")). 77 // 3. Let middle be floor(len / 2). 78 // 4. Let lower be 0. 80 // a. Let upper be len - lower - 1. 91 // b. Let upperP be ! ToString(upper). 92 // c. Let lowerP be ! ToString(lower). 93 // d. Let lowerExists be ? HasProperty(O, lowerP). 98 // i. Let lowerValue be ? Get(O, lowerP). 102 // f. Let upperExists be ? HasProperty(O, upperP). [all …]
|
D | promise-race.tq | 18 // Let promiseCapability be ? NewPromiseCapability(C). 40 // Let promiseResolve be GetPromiseResolve(C). 44 // Let iterator be GetIterator(iterable). 51 // Let result be PerformPromiseRace(iteratorRecord, C, promiseCapability). 58 // Let next be IteratorStep(iteratorRecord.[[Iterator]]). 64 // Let nextValue be IteratorValue(next). 72 // Let nextPromise be ? Call(constructor, _promiseResolve_, «
|
D | proxy-delete-property.tq | 23 // 2. Let handler be O.[[ProxyHandler]]. 30 // 5. Let target be O.[[ProxyTarget]]. 33 // 6. Let trap be ? GetMethod(handler, "deleteProperty"). 38 // 8. Let booleanTrapResult be ToBoolean(? Call(trap, handler, 52 // 10. Let targetDesc be ? target.[[GetOwnProperty]](P). 56 // 13. Let extensibleTarget be ? IsExtensible(target).
|
D | string-substr.tq | 12 // 1. Let O be ? RequireObjectCoercible(this value). 13 // 2. Let S be ? ToString(O). 16 // 5. Let size be the number of code units in S. 19 // 3. Let intStart be ? ToInteger(start). 27 // 7. Let resultLength be min(max(end, 0), size - intStart).
|
D | typed-array-from.tq | 28 // 1. Let C be the this value. 35 // b. Let mapping be true. 54 // 5. Let usingIterator be ? GetMethod(source, @@iterator). 129 // a. Let values be ? IterableToList(source, usingIterator). 130 // b. Let len be the number of elements in values. 140 // 8. Let arrayLike be ! ToObject(source). 143 // 9. Let len be ? LengthOfArrayLike(arrayLike). 159 // 6c/10. Let targetObj be ? TypedArrayCreate(C, «len»). 178 // 11. Let k be 0. 181 // 12a. Let Pk be ! ToString(k). [all …]
|
D | proxy-set-prototype-of.tq | 20 // 2. Let handler be O.[[ProxyHandler]]. 27 // 5. Let target be O.[[ProxyTarget]]. 30 // 6. Let trap be ? GetMethod(handler, "setPrototypeOf"). 35 // 8. Let booleanTrapResult be ToBoolean(? Call(trap, handler, « target, V 48 // 10. Let extensibleTarget be ? IsExtensible(target). 56 // 12. Let targetProto be ? target.[[GetPrototypeOf]]().
|
D | proxy-is-extensible.tq | 16 // 1. Let handler be O.[[ProxyHandler]]. 23 // 4. Let target be O.[[ProxyTarget]]. 26 // 5. Let trap be ? GetMethod(handler, "isExtensible"). 31 // 7. Let booleanTrapResult be ToBoolean(? Call(trap, handler, « 35 // 8. Let targetResult be ? IsExtensible(target).
|
D | proxy-prevent-extensions.tq | 17 // 1. Let handler be O.[[ProxyHandler]]. 24 // 4. Let target be O.[[ProxyTarget]]. 27 // 5. Let trap be ? GetMethod(handler, "preventExtensions"). 32 // 7. Let booleanTrapResult be ToBoolean(? Call(trap, handler, « 37 // 8.a. Let extensibleTarget be ? IsExtensible(target).
|
12345678910>>...22