Home
last modified time | relevance | path

Searched refs:BOOLEAN (Results 1 – 6 of 6) sorted by relevance

/system/tools/aidl/
Daidl_const_expressions.cpp194 case Type::BOOLEAN: \
337 case Type::BOOLEAN: // fall-through in IsCompatibleType()
364 case Type::BOOLEAN: // fall-through in AreCompatibleOperandTypes()
369 case Type::BOOLEAN: // fall-through in AreCompatibleOperandTypes()
403 if (left == Type::BOOLEAN) return right; in UsualArithmeticConversion()
404 if (right == Type::BOOLEAN) return left; in UsualArithmeticConversion()
442 return new AidlConstantValue(location, Type::BOOLEAN, value ? "true" : "false"); in Boolean()
668 case Type::BOOLEAN: // fall-through in ValueString()
778 case Type::BOOLEAN: // fall-through in CheckValid()
851 case Type::BOOLEAN: in evaluate()
[all …]
Daidl_language.h625 BOOLEAN,
668 AIDL_FATAL_IF(final_type_ != Type::BOOLEAN, this);
Daidl_unittest.cpp1513 compatibleTypesMap({{AidlConstantValue::Type::BOOLEAN, in TEST_F()
1514 {AidlConstantValue::Type::BOOLEAN, AidlConstantValue::Type::INT8, in TEST_F()
1517 {AidlConstantValue::Type::BOOLEAN, AidlConstantValue::Type::INT8, in TEST_F()
1520 {AidlConstantValue::Type::BOOLEAN, AidlConstantValue::Type::INT8, in TEST_F()
1523 {AidlConstantValue::Type::BOOLEAN, AidlConstantValue::Type::INT8, in TEST_F()
/system/libcppbor/src/
Dcppbor.cpp371 case BOOLEAN: in operator ==()
/system/libcppbor/include/cppbor/
Dcppbor.h59 BOOLEAN, enumerator
879 static constexpr SimpleType kSimpleType = BOOLEAN;
/system/libcppbor/tests/
Dcppbor_test.cpp815 EXPECT_EQ(cppbor::BOOLEAN, item->asSimple()->simpleType()); in TEST()
1059 EXPECT_EQ(clone->asSimple()->simpleType(), cppbor::BOOLEAN); in TEST()