• Home
  • Raw
  • Download

Lines Matching full:exception

39     THROW_TYPE_ERROR_AND_RETURN(thread, "not support eval()", JSTaggedValue::Exception());  in NotSupportEval()
221 // throw a URIError exception. in Encode()
224 JSTaggedValue::Exception()); in Encode()
231 // 2. If k equals strLen, throw a URIError exception. in Encode()
233 … // 4. If kChar is less than 0xDC00 or greater than 0xDFFF, throw a URIError exception. in Encode()
241 THROW_URI_ERROR_AND_RETURN(thread, "k is invalid", JSTaggedValue::Exception()); in Encode()
246 JSTaggedValue::Exception()); in Encode()
333 // ii. If k + 2 is greater than or equal to strLen, throw a URIError exception. in Decode()
335 // throw a URIError exception. in Decode()
338 JSTaggedValue::Exception()); in Decode()
342 JSTaggedValue::Exception()); in Decode()
388 // 2. If n equals 1 or n is greater than 4, throw a URIError exception. in Decode()
391 JSTaggedValue::Exception()); in Decode()
396 … // 5. If k + (3 × (n – 1)) is greater than or equal to strLen, throw a URIError exception. in Decode()
399 JSTaggedValue::Exception()); in Decode()
405 … // b. If the code unit at index k within string is not "%", throw a URIError exception. in Decode()
407 // digits, throw a URIError exception. in Decode()
410 JSTaggedValue::Exception()); in Decode()
414 JSTaggedValue::Exception()); in Decode()
420 … // e. If the two most significant bits in B are not 10, throw a URIError exception. in Decode()
423 JSTaggedValue::Exception()); in Decode()
433 // a Unicode code point throw a URIError exception. in Decode()
436 JSTaggedValue::Exception()); in Decode()