OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsBooleanTypes
(Results
1 - 4
of
4
) sorted by null
/art/runtime/verifier/
reg_type_test.cc
101
EXPECT_TRUE(bool_reg_type.
IsBooleanTypes
());
133
EXPECT_FALSE(byte_reg_type.
IsBooleanTypes
());
165
EXPECT_FALSE(char_reg_type.
IsBooleanTypes
());
197
EXPECT_FALSE(short_reg_type.
IsBooleanTypes
());
229
EXPECT_FALSE(int_reg_type.
IsBooleanTypes
());
261
EXPECT_FALSE(long_reg_type.
IsBooleanTypes
());
293
EXPECT_FALSE(float_reg_type.
IsBooleanTypes
());
325
EXPECT_FALSE(double_reg_type.
IsBooleanTypes
());
register_line.cc
324
if (GetRegisterType(vregB).
IsBooleanTypes
() &&
325
GetRegisterType(vregC).
IsBooleanTypes
()) {
362
if (GetRegisterType(vregA).
IsBooleanTypes
() &&
363
GetRegisterType(vregB).
IsBooleanTypes
()) {
405
if (GetRegisterType(vregB).
IsBooleanTypes
() && (val == 0 || val == 1)) {
reg_type.cc
557
} else if (
IsBooleanTypes
()) {
715
return rhs.
IsBooleanTypes
();
858
if (
IsBooleanTypes
() && incoming_type.
IsBooleanTypes
()) {
reg_type.h
154
bool
IsBooleanTypes
() const {
164
return IsChar() ||
IsBooleanTypes
() || IsConstantChar();
Completed in 28 milliseconds