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

  /external/chromium_org/v8/src/
harmony-array.js 29 if (IS_NULL_OR_UNDEFINED(thisArg)) {
64 if (IS_NULL_OR_UNDEFINED(thisArg)) {
runtime.js 38 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
51 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
59 if (IS_NULL_OR_UNDEFINED(y)) return 1;
66 } else if (IS_NULL_OR_UNDEFINED(x)) {
67 return IS_NULL_OR_UNDEFINED(y) ? 0 : 1;
73 if (IS_NULL_OR_UNDEFINED(y)) return 1; // not equal
551 if (IS_NULL_OR_UNDEFINED(x) && !IS_UNDETECTABLE(x)) {
macros.py 103 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null);
150 macro CHECK_OBJECT_COERCIBLE(arg, functionName) = if (IS_NULL_OR_UNDEFINED(arg) && !IS_UNDETECTABLE(arg)) throw MakeTypeError('called_on_null_or_undefined', [functionName]);
array.js 177 return (IS_NULL_OR_UNDEFINED(x)) ? '' : %ToString(%DefaultString(x));
182 if (IS_NULL_OR_UNDEFINED(e)) {
    [all...]

Completed in 648 milliseconds