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

  /external/chromium_org/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 219 if (IS_UNDEFINED(this) && !IS_UNDETECTABLE(this)) return "[object Undefined]";
276 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
293 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
302 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
319 if (receiver == null && !IS_UNDETECTABLE(receiver)) {
    [all...]
runtime.js 551 if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {

Completed in 52 milliseconds