OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAny
(Results
1 - 4
of
4
) sorted by null
/external/v8/test/cctest/
test-hydrogen-types.cc
86
CHECK(ti.
IsAny
());
/external/v8/src/
types.cc
758
if (type1->IsNone() || type2->
IsAny
()) return type1; // Shortcut.
759
if (type2->IsNone() || type1->
IsAny
()) return type2; // Shortcut.
983
if (type1->
IsAny
() || type2->IsNone()) return type1;
984
if (type2->
IsAny
() || type1->IsNone()) return type2;
[
all
...]
types-inl.h
66
if (this->
IsAny
()) return true;
types.h
580
bool
IsAny
() { return this == Any(); }
[
all
...]
Completed in 52 milliseconds