Lines Matching defs:strLen
230 // 1. Let strLen be the number of code units in string.
232 uint32_t strLen = EcmaStringAccessor(str).GetLength();
244 // a. If k equals strLen, return R.
245 if (k == strLen) {
272 // 2. If k equals strLen, throw a URIError exception.
281 if (k == strLen) {
455 // 1. Let strLen be the number of code units in string.
456 int32_t strLen = static_cast<int32_t>(EcmaStringAccessor(str).GetLength());
469 if (k == strLen) {
470 // a. If k equals strLen, return R.
492 if (cc == 0 && strLen == 1) {
498 DecodePercentEncoding(thread, string, k, IsInURISet, strLen, sStr);
523 judgURIFunc IsInURISet, int32_t strLen, std::u16string &sStr)
527 // ii. If k + 2 is greater than or equal to strLen, throw a URIError exception.
530 if ((k + 2) >= strLen) { // 2: means plus 2
582 // 5. If k + (3 × (n – 1)) is greater than or equal to strLen, throw a URIError exception.
583 if (k + (3 * (n - 1)) >= strLen) { // 3: means multiply by 3