OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_boolean
(Results
1 - 25
of
40
) sorted by null
1
2
/external/chromium_org/v8/src/
runtime.js
74
if (
IS_BOOLEAN
(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y));
84
} else if (
IS_BOOLEAN
(x)) {
85
if (
IS_BOOLEAN
(y)) return %_ObjectEquals(x, y) ? 0 : 1;
101
if (
IS_BOOLEAN
(y)) y = %ToNumber(y);
513
if (
IS_BOOLEAN
(x)) return x;
528
if (
IS_BOOLEAN
(x)) return x ? 1 : 0;
539
if (
IS_BOOLEAN
(x)) return x ? 1 : 0;
550
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
557
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
574
if (
IS_BOOLEAN
(x)) return new $Boolean(x)
[
all
...]
json.js
164
} else if (
IS_BOOLEAN
(value)) {
macros.py
103
macro
IS_BOOLEAN
(arg) = (typeof(arg) === 'boolean');
typedarray.js
120
IS_BOOLEAN
(arg1) || IS_UNDEFINED(arg1)) {
v8natives.js
[
all
...]
array.js
197
if (
IS_BOOLEAN
(x)) return x ? 'true' : 'false';
[
all
...]
messages.js
226
if (
IS_BOOLEAN
(obj)) return x ? 'true' : 'false';
[
all
...]
/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
...]
json.js
157
} else if (
IS_BOOLEAN
(value)) {
284
} else if (
IS_BOOLEAN
(value)) {
macros.py
99
macro
IS_BOOLEAN
(arg) = (typeof(arg) === 'boolean');
v8natives.js
[
all
...]
/external/chromium_org/tools/metrics/actions/
extract_actions.py
450
is_boolean
= ('dataType' in attrs and attrs['dataType'] == 'boolean')
453
is_boolean
= True
459
is_boolean
= True
461
if
is_boolean
:
/external/chromium_org/third_party/mesa/src/src/glsl/
ast_function.cpp
210
if (formal->type->is_numeric() || formal->type->
is_boolean
()) {
[
all
...]
glsl_types.h
356
bool
is_boolean
() const
function in struct:glsl_type
ir.cpp
1106
if (this->type->
is_boolean
())
1142
if (this->type->
is_boolean
())
[
all
...]
ir_constant_expression.cpp
264
assert(op[0]->type->
is_boolean
());
[
all
...]
ast_to_hir.cpp
895
if (val->type->
is_boolean
() && val->type->is_scalar())
[
all
...]
/external/mesa3d/src/glsl/
ast_function.cpp
210
if (formal->type->is_numeric() || formal->type->
is_boolean
()) {
[
all
...]
glsl_types.h
356
bool
is_boolean
() const
function in struct:glsl_type
ir.cpp
1106
if (this->type->
is_boolean
())
1142
if (this->type->
is_boolean
())
[
all
...]
ir_constant_expression.cpp
264
assert(op[0]->type->
is_boolean
());
[
all
...]
ast_to_hir.cpp
895
if (val->type->
is_boolean
() && val->type->is_scalar())
[
all
...]
/external/chromium_org/third_party/mesa/
chromium.patch
804
assert(op[0]->type->
is_boolean
());
811
assert(op[0]->type->
is_boolean
());
836
assert(op[0]->type->
is_boolean
());
843
assert(op[0]->type->
is_boolean
());
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp
745
if (!uni->type->
is_boolean
()) {
/external/mesa3d/src/mesa/main/
uniform_query.cpp
745
if (!uni->type->
is_boolean
()) {
Completed in 307 milliseconds
1
2