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

  /external/v8/src/
runtime.js 51 if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
58 } else if (IS_BOOLEAN(x)) {
59 if (IS_BOOLEAN(y)) return %_ObjectEquals(x, y) ? 0 : 1;
76 if (IS_BOOLEAN(y)) y = %ToNumber(y);
488 if (IS_BOOLEAN(x)) return x;
503 if (IS_BOOLEAN(x)) return x ? 1 : 0;
514 if (IS_BOOLEAN(x)) return x ? 1 : 0;
525 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
533 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
550 if (IS_BOOLEAN(x)) return new $Boolean(x)
    [all...]
json.js 143 } else if (IS_BOOLEAN(value)) {
macros.py 107 macro IS_BOOLEAN(arg) = (typeof(arg) === 'boolean');
typedarray.js 109 IS_BOOLEAN(arg1) || IS_UNDEFINED(arg1)) {
v8natives.js     [all...]
array.js 186 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
    [all...]
messages.js 212 if (IS_BOOLEAN(obj)) return obj ? 'true' : 'false';
    [all...]
mirror-debugger.js 64 } else if (IS_BOOLEAN(value)) {
    [all...]

Completed in 222 milliseconds