Lines Matching refs:value
218 // 2. Append a byte whose value is bytePoint to output.
352 // and the extract-value flag.
453 // 2. Let value be the empty string.
454 let value = ''
467 // position, to value.
468 value += collectASequenceOfCodePoints(
489 // U+005C (\) to value and break.
491 value += '\\'
495 // 2. Append the code point at position within input to value.
496 value += input[position.position]
511 // 6. If the extract-value flag is set, then return value.
513 return value
532 // 2. For each name → value of mimeType’s parameters:
533 for (let [name, value] of parameters.entries()) {
543 // 4. If value does not solely contain HTTP token code
544 // points or value is the empty string, then:
545 if (!HTTP_TOKEN_CODEPOINTS.test(value)) {
547 // U+005C (\) in value with U+005C (\).
548 value = value.replace(/(\\|")/g, '\\$1')
550 // 2. Prepend U+0022 (") to value.
551 value = '"' + value
553 // 3. Append U+0022 (") to value.
554 value += '"'
557 // 5. Append value to serialization.
558 serialization += value