HomeSort by relevance Sort by last modified time
    Searched refs:IS_UNDETECTABLE (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
macros.py 131 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg));
150 macro CHECK_OBJECT_COERCIBLE(arg, functionName) = if (IS_NULL_OR_UNDEFINED(arg) && !IS_UNDETECTABLE(arg)) throw MakeTypeError('called_on_null_or_undefined', [functionName]);
v8natives.js 220 if (IS_UNDEFINED(this) && !IS_UNDETECTABLE(this)) return "[object Undefined]";
277 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
294 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
303 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
320 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
    [all...]
runtime.js 552 if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {

Completed in 35 milliseconds