• Home
  • Raw
  • Download

Lines Matching full:be

51     // 1. Let num be ToNumber(number).  in IsFinite()
70 // 1. Let num be ToNumber(number). in IsNaN()
132 // 1. Let uriString be ToString(encodedURI). in DecodeURI()
137 …// 3. Let reservedURISet be a String containing one instance of each code unit valid in uriReserve… in DecodeURI()
148 // 1. Let uriString be ToString(uri). in EncodeURI()
153 // 3. Let unescapedURISet be a String containing one instance of in EncodeURI()
165 // 1. Let componentString be ToString(encodedURIComponent). in DecodeURIComponent()
170 // 3. Let reservedURIComponentSet be the empty String. in DecodeURIComponent()
181 // 1. Let componentString be ToString(uriComponent). in EncodeURIComponent()
186 …// 3. Let unescapedURIComponentSet be a String containing one instance of each code unit valid in … in EncodeURIComponent()
194 // 1. Let strLen be the number of code units in string. in Encode()
196 // 2. Let R be the empty String. in Encode()
200 // 3. Let k be 0. in Encode()
211 // b. Let C be the code unit at index k within string. in Encode()
213 // i. Let S be a String containing only the code unit C. in Encode()
214 … // ii. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
224 … THROW_URI_ERROR_AND_RETURN(thread, "EncodeURI: The format of the URI to be parsed is incorrect", in Encode()
229 // 1. Let V be the code unit value of C. in Encode()
233 // 3. Let kChar be the code unit value of the code unit at index k within string. in Encode()
235 // 5. Let V be UTF16Decode(C, kChar). in Encode()
246 … THROW_URI_ERROR_AND_RETURN(thread, "EncodeURI: The format of the URI to be parsed is incorrect", in Encode()
252 … // iv. Let Octets be the array of octets resulting by applying the UTF-8 transformation to V, in Encode()
253 // and let L be the array size. in Encode()
254 // v. Let j be 0. in Encode()
256 // 1. Let jOctet be the value at index j within Octets. in Encode()
257 …// 2. Let S be a String containing three code units "%XY" where XY are two uppercase hexadecimal in Encode()
259 … // 3. Let R be a new String value computed by concatenating the previous value of R and S. in Encode()
293 // 1. Let strLen be the number of code units in string. in Decode()
295 // 2. Let R be the empty String. in Decode()
299 // 3. Let k be 0. in Decode()
310 // b. Let C be the code unit at index k within string. in Decode()
312 // i. Let S be the String containing only the code unit C. in Decode()
314 // i. Let start be k. in Decode()
315 …// iv. Let B be the 8-bit value represented by the two hexadecimal digits at index (k + 1) and (… in Decode()
318 // 1. Let C be the code unit with code unit value B. in Decode()
320 // a. Let S be the String containing only the code unit C. in Decode()
322 // a. Let S be the substring of string from index start to index k inclusive. in Decode()
338 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
343 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
366 … // 1. Let n be the smallest nonnegative integer such that (B << n) & 0x80 is equal to 0. in Decode()
367 // 3. Let Octets be an array of 8-bit integers of size n. in Decode()
369 // 6. Let j be 1. in Decode()
372 // d. Let B be the 8-bit value represented by the two hexadecimal digits at in Decode()
378 // a. Let C be the code unit V. in Decode()
380 // i. Let S be the String containing only the code unit C. in Decode()
382 // i. Let S be the substring of string from index start to index k inclusive. in Decode()
384 // a. Let L be (((V – 0x10000) & 0x3FF) + 0xDC00). in Decode()
385 // b. Let H be ((((V – 0x10000) >> 10) & 0x3FF) + 0xD800). in Decode()
386 // c. Let S be the String containing the two code units H and L. in Decode()
395 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
403 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
414 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
419 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
428 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
437 … // 8. Let V be the value obtained by applying the UTF-8 transformation to Octets, that is, in Decode()
441 … THROW_URI_ERROR_AND_RETURN(thread, "DecodeURI: The format of the URI to be parsed is incorrect", in Decode()
464 // e. Let R be a new String value computed by concatenating the previous value of R and S. in Decode()