Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type.h58 virtual bool IsByte() const { return false; } in IsByte() function
142 return IsChar() || IsInteger() || IsFloat() || IsConstant() || IsByte() || in IsCategory1Types()
150 return IsConstantByte() || IsByte() || IsBoolean(); in IsByteTypes()
153 return IsShort() || IsByte() || IsBoolean() || IsConstantShort(); in IsShortTypes()
159 return IsInteger() || IsConstant() || IsByte() || IsShort() || IsChar() || in IsIntegralTypes()
284 } else if (IsByte()) { in GetAssignmentType()
440 bool IsByte() const override { return true; } in IsByte() function
Dreg_type_test.cc121 EXPECT_FALSE(bool_reg_type.IsByte()); in TEST_F()
154 EXPECT_TRUE(byte_reg_type.IsByte()); in TEST_F()
187 EXPECT_FALSE(char_reg_type.IsByte()); in TEST_F()
220 EXPECT_FALSE(short_reg_type.IsByte()); in TEST_F()
253 EXPECT_FALSE(int_reg_type.IsByte()); in TEST_F()
286 EXPECT_FALSE(long_reg_type.IsByte()); in TEST_F()
319 EXPECT_FALSE(float_reg_type.IsByte()); in TEST_F()
352 EXPECT_FALSE(double_reg_type.IsByte()); in TEST_F()
Dmethod_verifier.cc2125 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction()
2126 ((return_type.IsBoolean() || return_type.IsByte() || in CodeFlowVerifyInstruction()