Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type.h56 virtual bool IsBoolean() const { return false; } in IsBoolean() function
142 IsShort() || IsBoolean(); in IsCategory1Types()
147 bool IsBooleanTypes() const { return IsBoolean() || IsConstantBoolean(); } in IsBooleanTypes()
149 return IsConstantByte() || IsByte() || IsBoolean(); in IsByteTypes()
152 return IsShort() || IsByte() || IsBoolean() || IsConstantShort(); in IsShortTypes()
159 IsBoolean(); in IsIntegralTypes()
292 if (IsBoolean()) { in GetAssignmentType()
471 bool IsBoolean() const override { return true; } in IsBoolean() function
Dreg_type_test.cc99 EXPECT_TRUE(bool_reg_type.IsBoolean()); in TEST_F()
132 EXPECT_FALSE(byte_reg_type.IsBoolean()); in TEST_F()
165 EXPECT_FALSE(char_reg_type.IsBoolean()); in TEST_F()
198 EXPECT_FALSE(short_reg_type.IsBoolean()); in TEST_F()
231 EXPECT_FALSE(int_reg_type.IsBoolean()); in TEST_F()
264 EXPECT_FALSE(long_reg_type.IsBoolean()); in TEST_F()
297 EXPECT_FALSE(float_reg_type.IsBoolean()); in TEST_F()
330 EXPECT_FALSE(double_reg_type.IsBoolean()); in TEST_F()
Dmethod_verifier.cc2177 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction()
2178 ((return_type.IsBoolean() || return_type.IsByte() || in CodeFlowVerifyInstruction()