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

  /external/chromium_org/v8/src/
types.cc 80 if (this->IsBitset()) return BitsetType::Min(this->AsBitset());
98 if (this->IsBitset()) return BitsetType::Max(this->AsBitset());
123 return type->AsBitset();
139 if (type->IsBitset()) return type->AsBitset();
150 type->AsClass()->Bound(NULL)->AsBitset();
152 if (type->IsConstant()) return type->AsConstant()->Bound()->AsBitset();
438 return BitsetType::Is(this->BitsetLub(), that->AsBitset());
441 return BitsetType::Is(this->AsBitset(), that->BitsetGlb());
744 return BitsetType::New(type1->AsBitset() | type2->AsBitset(), region)
    [all...]
types.h 508 bitset AsBitset() {
775 int BitsetLub() { return this->Get(0)->AsBitset(); }
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 29 static bitset AsBitset(Type* t) {
60 static bitset AsBitset(Handle<HeapType> t) {
362 this->AsBitset(type1) == this->AsBitset(type2)) &&
376 CHECK(this->AsBitset(type1) != this->AsBitset(type2));
384 CHECK(this->AsBitset(type1) != this->AsBitset(type2));
414 CHECK(bitset(0) == this->AsBitset(T.None));
415 CHECK(bitset(0xfffffffeu) == this->AsBitset(T.Any))
    [all...]

Completed in 63 milliseconds