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

  /external/chromium_org/v8/src/
runtime.js 50 if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
57 } else if (IS_BOOLEAN(x)) {
58 if (IS_BOOLEAN(y)) return %_ObjectEquals(x, y) ? 0 : 1;
75 if (IS_BOOLEAN(y)) y = %ToNumber(y);
487 if (IS_BOOLEAN(x)) return x;
502 if (IS_BOOLEAN(x)) return x ? 1 : 0;
513 if (IS_BOOLEAN(x)) return x ? 1 : 0;
524 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
532 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
549 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 176 if (IS_BOOLEAN(x)) return x ? 'true' : 'false';
    [all...]
messages.js 200 if (IS_BOOLEAN(obj)) return obj ? 'true' : 'false';
    [all...]
mirror-debugger.js 64 } else if (IS_BOOLEAN(value)) {
    [all...]

Completed in 1192 milliseconds