Lines Matching refs:result

40   // 2. Let location be the result of extracting header list values given
44 // 3. If location is a header value, then set location to the result of
197 // 1. Let policy be the result of executing § 8.1 Parse a referrer policy
201 // 1. Let policy-tokens be the result of extracting header list values given `Referrer-Policy` and response’s header list.
276 // 1. Let serializedOrigin be the result of byte-serializing a request origin with request.
385 // 4. Let request’s referrerURL be the result of stripping referrerSource for
389 // 5. Let referrerOrigin be the result of stripping referrerSource for use as
393 // 6. If the result of serializing referrerURL is a string whose length is
541 // 1. Let parsedMetadata be the result of parsing metadataList.
557 // 5. Let metadata be the result of getting the strongest
573 // 3. Let actualValue be the result of applying algorithm to bytes.
605 // 1. Let result be the empty set.
607 const result = []
637 // agent, add the parsed token to result.
639 result.push(parsedToken.groups)
643 // 4. Return no metadata if empty is true, otherwise return result.
648 return result
801 // 1. Let result be ? Call(%JSON.stringify%, undefined, « value »).
802 const result = JSON.stringify(value)
804 // 2. If result is undefined, then throw a TypeError.
805 if (result === undefined) {
809 // 3. Assert: result is a string.
810 assert(typeof result === 'string')
812 // 4. Return result.
813 return result
872 // 13. Return the iterator result for pair and kind.
876 // result of concatenating the identifier of the interface and the string " Iterator".
887 // https://webidl.spec.whatwg.org/#iterator-result
889 let result
891 // 1. Let result be a value determined by the value of kind:
895 // 2. Let key be the result of converting idlKey to an
897 // 3. result is key.
898 result = pair[0]
903 // 2. Let value be the result of converting idlValue to
905 // 3. result is value.
906 result = pair[1]
912 // 3. Let key be the result of converting idlKey to an
914 // 4. Let value be the result of converting idlValue to
919 // 8. result is array.
920 result = pair
925 // 2. Return CreateIterResultObject(result, false).
926 return { value: result, done: false }
934 // the result of starting a new parallel queue.
944 // 4. Let reader be the result of getting a reader for body’s stream.
958 const result = await readAllBytes(reader)
959 successSteps(result)