• Home
  • Raw
  • Download

Lines Matching full:be

85     // 1. Let num be ToNumber(number).  in IsFinite()
104 // 1. Let num be ToNumber(number). in IsNaN()
166 // 1. Let uriString be ToString(encodedURI). in DecodeURI()
171 …// 3. Let reservedURISet be a String containing one instance of each code unit valid in uriReserve… in DecodeURI()
182 // 1. Let uriString be ToString(uri). in EncodeURI()
187 // 3. Let unescapedURISet be a String containing one instance of in EncodeURI()
199 // 1. Let componentString be ToString(encodedURIComponent). in DecodeURIComponent()
204 // 3. Let reservedURIComponentSet be the empty String. in DecodeURIComponent()
215 // 1. Let componentString be ToString(uriComponent). in EncodeURIComponent()
220 …// 3. Let unescapedURIComponentSet be a String containing one instance of each code unit valid in … in EncodeURIComponent()
229 // 1. Let strLen be the number of code units in string. in Encode()
231 // 2. Let R be the empty String. in Encode()
235 // 3. Let k be 0. in Encode()
246 // b. Let C be the code unit at index k within string. in Encode()
248 // i. Let S be a String containing only the code unit C. in Encode()
249 … // ii. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
259 … THROW_URI_ERROR_AND_RETURN(thread, "EncodeURI: The format of the URI to be parsed is incorrect", in Encode()
264 // 1. Let V be the code unit value of C. in Encode()
268 // 3. Let kChar be the code unit value of the code unit at index k within string. in Encode()
270 // 5. Let V be UTF16Decode(C, kChar). in Encode()
281 … THROW_URI_ERROR_AND_RETURN(thread, "EncodeURI: The format of the URI to be parsed is incorrect", in Encode()
287 … // iv. Let Octets be the array of octets resulting by applying the UTF-8 transformation to V, in Encode()
288 // and let L be the array size. in Encode()
289 // v. Let j be 0. in Encode()
291 // 1. Let jOctet be the value at index j within Octets. in Encode()
292 …// 2. Let S be a String containing three code units "%XY" where XY are two uppercase hexadecimal in Encode()
294 … // 3. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
345 // 1. Let stringLength be the length of S. in StringPad()
356 // 4. Let fillLen be maxLength - stringLength. in StringPad()
359 //5. Let truncatedStringFiller be the String value consisting of repeated concatenations in StringPad()
384 // 2. Let cp be (lead - 0xD800) × 0x400 + (trail - 0xDC00) + 0x10000. in UTF16SurrogatePairToCodePoint()
393 // 1. Let codePoints be a new empty List. in StringToCodePoints()
395 // 2. Let size be the length of string. in StringToCodePoints()
397 // 3. Let position be 0. in StringToCodePoints()
400 // a. Let cp be CodePointAt(string, position). in StringToCodePoints()
404 // i.Let first be the code unit at index position within string. in StringToCodePoints()
420 // iv. Let second be the code unit at index position + 1 within string. in StringToCodePoints()
449 // 1. Let strLen be the number of code units in string. in Decode()
451 // 2. Let R be the empty String. in Decode()
455 // 3. Let k be 0. in Decode()
466 // b. Let C be the code unit at index k within string. in Decode()
468 // i. Let S be the String containing only the code unit C. in Decode()
470 // i. Let start be k. in Decode()
471 …// iv. Let B be the 8-bit value represented by the two hexadecimal digits at index (k + 1) and (… in Decode()
474 // 1. Let C be the code unit with code unit value B. in Decode()
476 // a. Let S be the String containing only the code unit C. in Decode()
478 // a. Let S be the substring of string from index start to index k inclusive. in Decode()
494 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
499 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
518 … // 1. Let n be the smallest nonnegative integer such that (B << n) & 0x80 is equal to 0. in Decode()
519 // 3. Let Octets be an array of 8-bit integers of size n. in Decode()
521 // 6. Let j be 1. in Decode()
524 // d. Let B be the 8-bit value represented by the two hexadecimal digits at in Decode()
530 // a. Let C be the code unit V. in Decode()
532 // i. Let S be the String containing only the code unit C. in Decode()
534 // i. Let S be the substring of string from index start to index k inclusive. in Decode()
536 // a. Let L be (((V – 0x10000) & 0x3FF) + 0xDC00). in Decode()
537 // b. Let H be ((((V – 0x10000) >> 10) & 0x3FF) + 0xD800). in Decode()
538 // c. Let S be the String containing the two code units H and L. in Decode()
548 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
556 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
567 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
572 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
581 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
590 … // 8. Let V be the value obtained by applying the UTF-8 transformation to Octets, that is, in Decode()
594 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
617 // e. Let R be a new String value computed by concatenating the previous value of R and S. in Decode()
762 // 2. Let len be the length of string. in Escape()
764 // 3. Let R be the empty String. in Escape()
766 // 4. Let unescapedSet be the string-concatenation of the ASCII word characters and "@*+-./". in Escape()
767 // 5. Let k be 0. in Escape()
770 // a. Let C be the code unit at index k within string. in Escape()
772 // i. Let S be C. in Escape()
774 // i. Let n be the numeric value of C. in Escape()
776 …// 1. Let hex be the String representation of n, formatted as an uppercase hexadecimal nu… in Escape()
777 // 2. Let S be the string-concatenation of "%" and StringPad(hex, 2, "0", start). in Escape()
779 …// 1. Let hex be the String representation of n, formatted as an uppercase hexadecimal nu… in Escape()
780 // 2. Let S be the string-concatenation of "%u" and StringPad(hex, 4, "0", start). in Escape()
818 // 2. Let len be the length of string. in Unescape()
820 // 3. Let R be the empty String. in Unescape()
824 // 4. Let k be 0. in Unescape()
827 // a. Let C be the code unit at index k within string. in Unescape()
829 // i. Let hexDigits be the empty String. in Unescape()
830 // ii. Let optionalAdvance be 0. in Unescape()
838 // v. Let parseResult be ParseText(StringToCodePoints(hexDigits), HexDigits[~Sep]). in Unescape()
840 // 1. Let n be the MV of parseResult. in Unescape()