Home
last modified time | relevance | path

Searched refs:IsBoolean (Results 1 – 4 of 4) sorted by relevance

/art/runtime/verifier/
Dreg_type_test.cc98 EXPECT_TRUE(bool_reg_type.IsBoolean()); in TEST_F()
131 EXPECT_FALSE(byte_reg_type.IsBoolean()); in TEST_F()
164 EXPECT_FALSE(char_reg_type.IsBoolean()); in TEST_F()
197 EXPECT_FALSE(short_reg_type.IsBoolean()); in TEST_F()
230 EXPECT_FALSE(int_reg_type.IsBoolean()); in TEST_F()
263 EXPECT_FALSE(long_reg_type.IsBoolean()); in TEST_F()
296 EXPECT_FALSE(float_reg_type.IsBoolean()); in TEST_F()
329 EXPECT_FALSE(double_reg_type.IsBoolean()); in TEST_F()
Dreg_type.h57 virtual bool IsBoolean() const { return false; } in IsBoolean() function
139 IsShort() || IsBoolean(); in IsCategory1Types()
144 bool IsBooleanTypes() const { return IsBoolean() || IsConstantBoolean(); } in IsBooleanTypes()
146 return IsConstantByte() || IsByte() || IsBoolean(); in IsByteTypes()
149 return IsShort() || IsByte() || IsBoolean() || IsConstantShort(); in IsShortTypes()
156 IsBoolean(); in IsIntegralTypes()
421 bool IsBoolean() const OVERRIDE { return true; } in IsBoolean() function
Dreg_type-inl.h74 if (lhs.IsBoolean()) { in AssignableFrom()
Dmethod_verifier.cc2182 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction()
2183 ((return_type.IsBoolean() || return_type.IsByte() || in CodeFlowVerifyInstruction()