OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IS_BOOLEAN
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/
runtime.js
73
if (
IS_BOOLEAN
(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
77
} else if (
IS_BOOLEAN
(x)) {
78
if (
IS_BOOLEAN
(y)) return %_ObjectEquals(x, y) ? 0 : 1;
93
if (
IS_BOOLEAN
(y)) y = %ToNumber(y);
518
if (
IS_BOOLEAN
(x)) return x;
533
if (
IS_BOOLEAN
(x)) return x ? 1 : 0;
543
if (
IS_BOOLEAN
(x)) return x ? 1 : 0;
553
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
560
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
570
if (
IS_BOOLEAN
(x)) return new $Boolean(x)
[
all
...]
macros.py
99
macro
IS_BOOLEAN
(arg) = (typeof(arg) === 'boolean');
json.js
157
} else if (
IS_BOOLEAN
(value)) {
284
} else if (
IS_BOOLEAN
(value)) {
v8natives.js
[
all
...]
array.js
198
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
[
all
...]
mirror-debugger.js
75
} else if (
IS_BOOLEAN
(value)) {
[
all
...]
Completed in 128 milliseconds