Home | History | Annotate | Download | only in arm

Lines Matching refs:type_

62   Type type() const { return type_; }
64 ASSERT_EQ(ILLEGAL, type_);
65 type_ = value;
69 ASSERT_NE(ILLEGAL, type_);
70 ASSERT_NE(UNLOADED, type_);
71 type_ = UNLOADED;
75 return (type_ < SLOT) ? 0 : type_;
78 bool is_illegal() const { return type_ == ILLEGAL; }
79 bool is_slot() const { return type_ == SLOT; }
80 bool is_property() const { return type_ == NAMED || type_ == KEYED; }
81 bool is_unloaded() const { return type_ == UNLOADED; }
107 Type type_;