OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsUnion
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
types.cc
99
for (int i = 0, n = this->
AsUnion
()->Length(); i < n; ++i) {
100
min = std::min(min, this->
AsUnion
()->Get(i)->Min());
117
for (int i = 0, n = this->
AsUnion
()->Length(); i < n; ++i) {
118
max = std::max(max, this->
AsUnion
()->Get(i)->Max());
142
SLOW_DCHECK(type->
AsUnion
()->Wellformed());
143
return type->
AsUnion
()->Get(0)->BitsetGlb() |
144
SEMANTIC(type->
AsUnion
()->Get(1)->BitsetGlb()); // Shortcut.
164
int bitset = type->
AsUnion
()->Get(0)->BitsetLub();
165
for (int i = 0, n = type->
AsUnion
()->Length(); i < n; ++i) {
167
bitset |= SEMANTIC(type->
AsUnion
()->Get(i)->BitsetLub())
[
all
...]
types.h
588
UnionType*
AsUnion
() { return UnionType::cast(this); }
[
all
...]
/external/v8/test/cctest/
test-types.cc
47
static Struct*
AsUnion
(Type* t) {
79
static Struct*
AsUnion
(Handle<HeapType> t) { return AsStruct(t); }
124
this->Length(this->
AsUnion
(type1)) ==
125
this->Length(this->
AsUnion
(type2)));
[
all
...]
Completed in 42 milliseconds