• Home
  • Raw
  • Download

Lines Matching full:not

4  * you may not use this file except in compliance with the License.
32 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.apply target is not callable", JSTaggedValue::Excepti… in ReflectApply()
62 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.construct target is not constructor", JSTaggedValue::… in ReflectConstruct()
64 // 2. If newTarget is not present, set newTarget to target. in ReflectConstruct()
69 … THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.construct newTarget is present, but not constructor", in ReflectConstruct()
93 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectDefineProperty()
96 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.defineProperty target is not object", JSTaggedValue::… in ReflectDefineProperty()
117 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectDeleteProperty()
120 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.deleteProperty target is not object", JSTaggedValue::… in ReflectDeleteProperty()
136 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectGet()
139 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.get target is not object", JSTaggedValue::Exception()… in ReflectGet()
145 // 3. If receiver is not present, then in ReflectGet()
162 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectGetOwnPropertyDescriptor()
165 THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.getOwnPropertyDescriptor target is not object", in ReflectGetOwnPropertyDescriptor()
188 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectGetPrototypeOf()
191 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.getPrototypeOf target is not object", JSTaggedValue::… in ReflectGetPrototypeOf()
204 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectHas()
207 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.has target is not object", JSTaggedValue::Exception()… in ReflectHas()
222 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectIsExtensible()
225 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.isExtensible target is not object", JSTaggedValue::Ex… in ReflectIsExtensible()
238 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectOwnKeys()
241 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.ownKeys target is not object", JSTaggedValue::Excepti… in ReflectOwnKeys()
258 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectPreventExtensions()
261 THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.preventExtensions target is not object", in ReflectPreventExtensions()
275 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectSet()
278 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.get target is not object", JSTaggedValue::Exception()… in ReflectSet()
284 // 3. If receiver is not present, then in ReflectSet()
301 // 1. If Type(target) is not Object, throw a TypeError exception. in ReflectSetPrototypeOf()
304 …THROW_TYPE_ERROR_AND_RETURN(thread, "Reflect.setPrototypeOf target is not object", JSTaggedValue::… in ReflectSetPrototypeOf()
306 // 2. If Type(proto) is not Object and proto is not null, throw a TypeError exception. in ReflectSetPrototypeOf()