/arkcompiler/runtime_core/static_core/runtime/ |
H A D | field.cpp | 42 case panda_file::Type::TypeId::U1: in ResolveTypeClass() 43 return ext->GetClassRoot(ClassRoot::U1); in ResolveTypeClass()
|
/arkcompiler/runtime_core/assembler/ |
H A D | annotation.h | 79 U1, member in panda::pandasm::Value::Type 107 case Type::U1: in GetTypeAsChar() 181 case Type::U1: in GetArrayTypeAsChar() 244 type = Type::U1; in GetCharAsType() 318 type = Type::U1; in GetCharAsArrayType() 414 using type = std::conditional_t<value_type == Value::Type::U1, uint8_t,
|
H A D | annotation.cpp | 24 case Value::Type::U1: { in InitScalarValue() 25 copy_val = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U1>(sc_val.GetValue<uint8_t>())); in InitScalarValue() 118 case Value::Type::U1: in making_value() 208 case Value::Type::U1: in TypeToString()
|
H A D | define.h | 27 _("u1", U1) \
|
H A D | assembly-type.h | 112 return type_id_ == panda_file::Type::TypeId::U1 || type_id_ == panda_file::Type::TypeId::U8 || in IsIntegral() 121 return type_id_ == panda_file::Type::TypeId::U1 || type_id_ == panda_file::Type::TypeId::U8 || in FitsInto32()
|
H A D | meta.cpp | 52 {"u1", VType::U1}, {"i8", VType::I8}, {"u8", VType::U8}, in GetType() 153 case Value::Type::U1: { 154 return CreatePrimitiveValue<Value::Type::U1>(value, 1);
|
/arkcompiler/runtime_core/static_core/assembler/ |
H A D | annotation.h | 75 U1, member in ark::pandasm::Value::Type 103 case Type::U1: in GetTypeAsChar() 175 case Type::U1: in GetArrayTypeAsChar() 239 type = Type::U1; in GetCharAsType() 311 type = Type::U1; in GetCharAsArrayType() 404 using Type = std::conditional_t<VALUE_TYPE == Value::Type::U1, uint8_t,
|
H A D | annotation.cpp | 25 case Value::Type::U1: { in InitScalarValue() 26 copyVal = std::make_unique<ScalarValue>(ScalarValue::Create<Value::Type::U1>(scVal.GetValue<uint8_t>())); in InitScalarValue() 111 case Value::Type::U1: in MakingValue() 200 case Value::Type::U1: in TypeToString()
|
H A D | define.h | 29 _("u1", U1) \
|
H A D | assembly-type.h | 113 return typeId_ == panda_file::Type::TypeId::U1 || typeId_ == panda_file::Type::TypeId::U8 || in IsIntegral() 122 return typeId_ == panda_file::Type::TypeId::U1 || typeId_ == panda_file::Type::TypeId::U8 || in FitsInto32()
|
H A D | assembly-literals.h | 189 case panda_file::Type::TypeId::U1: in GetArrayTagFromComponentType() 219 case panda_file::Type::TypeId::U1: in GetLiteralTagFromComponentType()
|
H A D | meta.cpp | 52 {"u1", VType::U1}, {"i8", VType::I8}, {"u8", VType::U8}, in GetType() 155 case Value::Type::U1: { 156 return CreatePrimitiveValue<Value::Type::U1>(value, 1);
|
/arkcompiler/runtime_core/static_core/runtime/core/ |
H A D | core_class_linker_extension.cpp | 62 InitializePrimitiveClassRoot(ClassRoot::U1, Type::TypeId::U1, "Z"); in InitializeClassRoots() 75 InitializeArrayClassRoot(ClassRoot::ARRAY_U1, ClassRoot::U1, "[Z"); in InitializeClassRoots() 159 case ClassRoot::U1: in GetClassVTableSize() 204 case ClassRoot::U1: in GetClassIMTSize() 249 case ClassRoot::U1: in GetClassSize()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | class_root.h | 22 U1, member in ark::ClassRoot
|
H A D | typed_value.h | 47 static TypedValue U1(bool value) in U1() function in ark::TypedValue 132 return GetType() == panda_file::Type::TypeId::U1; in IsU1()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | default_inspector_extension.cpp | 33 case panda_file::Type::TypeId::U1: in GetArrayElementValueStatic() 34 return TypedValue::U1(array.GetPrimitive<uint8_t>(offset) != 0); in GetArrayElementValueStatic() 72 case panda_file::Type::TypeId::U1: in GetFieldValueStatic() 73 return TypedValue::U1(object->template GetFieldPrimitive<uint8_t>(field.GetOffset()) != 0); in GetFieldValueStatic()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_type.h | 47 case panda_file::Type::TypeId::U1: in ConvertPandaTypeToEtsType() 79 return panda_file::Type(panda_file::Type::TypeId::U1); in ConvertEtsTypeToPandaType()
|
/arkcompiler/runtime_core/abc2program/ |
H A D | abc_annotation_processor.cpp | 71 case pandasm::Value::Type::U1: { in FillAnnotationElements() 75 pandasm::ScalarValue::Create<pandasm::Value::Type::U1>(value))); in FillAnnotationElements()
|
H A D | abc_field_processor.cpp | 145 case panda_file::Type::TypeId::U1: { in FillMetaDataValue() 148 field_.metadata->SetValue(pandasm::ScalarValue::Create<pandasm::Value::Type::U1>(val.value())); in FillMetaDataValue()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_class_linker_extension.cpp | 94 InitializePrimitiveClassRoot(ClassRoot::U1, panda_file::Type::TypeId::U1, "Z"); in InitializeClassRoots() 107 InitializeArrayClassRoot(ClassRoot::ARRAY_U1, ClassRoot::U1, "[Z"); in InitializeClassRoots() 224 case ClassRoot::U1: in GetClassVTableSize() 272 case ClassRoot::U1: in GetClassIMTSize() 319 case ClassRoot::U1: in GetClassSize()
|
H A D | ets_class_root.cpp | 26 case ClassRoot::U1: in ToEtsClassRoot()
|
H A D | ets_class_root.h | 26 BOOLEAN = helpers::ToUnderlying(ClassRoot::U1),
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | invokation_helper.cpp | 30 case panda_file::Type::TypeId::U1: in CountMethodTypes()
|
/arkcompiler/runtime_core/assembler/tests/ |
H A D | annotation_test.cpp | 57 ScalarValue insn_order1(ScalarValue::Create<panda::pandasm::Value::Type::U1>(1U)); in HWTEST_F() 59 ArrayValue array_value_U1(panda::pandasm::Value::Type::U1, elements); in HWTEST_F() 74 char type_u1 = Value::GetTypeAsChar(panda::pandasm::Value::Type::U1); in HWTEST_F() 162 type_u1 = Value::GetArrayTypeAsChar(panda::pandasm::Value::Type::U1); in HWTEST_F() 243 EXPECT_EQ(panda::pandasm::Value::Type::U1, type); in HWTEST_F() 306 EXPECT_EQ(panda::pandasm::Value::Type::U1, type); in HWTEST_F() 369 std::string type_u1 = AnnotationElement::TypeToString(panda::pandasm::Value::Type::U1); in HWTEST_F()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_method_signature_test.cpp | 44 panda_file::Type {panda_file::Type::TypeId::U1}, in MethodSignaturePrologue() 122 panda_file::Type {panda_file::Type::TypeId::U1}, in TEST_F()
|