Home
last modified time | relevance | path

Searched defs:attribute (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/assembler/extension/
Dets_meta.h25 static bool IsAnnotationRecordAttribute(std::string_view attribute) in IsAnnotationRecordAttribute()
30 static bool IsAnnotationIdAttribute(std::string_view attribute) in IsAnnotationIdAttribute()
35 static bool IsAnnotationElementTypeAttribute(std::string_view attribute) in IsAnnotationElementTypeAttribute()
40 static bool IsAnnotationElementArrayComponentTypeAttribute(std::string_view attribute) in IsAnnotationElementArrayComponentTypeAttribute()
45 static bool IsAnnotationElementNameAttribute(std::string_view attribute) in IsAnnotationElementNameAttribute()
50 static bool IsAnnotationElementValueAttribute(std::string_view attribute) in IsAnnotationElementValueAttribute()
99 bool IsAnnotationRecordAttribute([[maybe_unused]] std::string_view attribute) const override in IsAnnotationRecordAttribute()
104 bool IsAnnotationIdAttribute([[maybe_unused]] std::string_view attribute) const override in IsAnnotationIdAttribute()
109 … bool IsAnnotationElementNameAttribute([[maybe_unused]] std::string_view attribute) const override in IsAnnotationElementNameAttribute()
114 … bool IsAnnotationElementTypeAttribute([[maybe_unused]] std::string_view attribute) const override in IsAnnotationElementTypeAttribute()
[all …]
/arkcompiler/runtime_core/assembler/extensions/
Decmascript_meta.h51 …bool IsAnnotationRecordAttribute([[maybe_unused]] const std::string_view &attribute) const override in IsAnnotationRecordAttribute()
56 bool IsAnnotationIdAttribute([[maybe_unused]] const std::string_view &attribute) const override in IsAnnotationIdAttribute()
61 …bool IsAnnotationElementNameAttribute([[maybe_unused]] const std::string_view &attribute) const ov… in IsAnnotationElementNameAttribute()
66 …bool IsAnnotationElementTypeAttribute([[maybe_unused]] const std::string_view &attribute) const ov… in IsAnnotationElementTypeAttribute()
72 [[maybe_unused]] const std::string_view &attribute) const override in IsAnnotationElementArrayComponentTypeAttribute()
77 …bool IsAnnotationElementValueAttribute([[maybe_unused]] const std::string_view &attribute) const o… in IsAnnotationElementValueAttribute()
97 …bool IsAnnotationRecordAttribute([[maybe_unused]] const std::string_view &attribute) const override in IsAnnotationRecordAttribute()
102 bool IsAnnotationIdAttribute([[maybe_unused]] const std::string_view &attribute) const override in IsAnnotationIdAttribute()
107 …bool IsAnnotationElementNameAttribute([[maybe_unused]] const std::string_view &attribute) const ov… in IsAnnotationElementNameAttribute()
112 …bool IsAnnotationElementTypeAttribute([[maybe_unused]] const std::string_view &attribute) const ov… in IsAnnotationElementTypeAttribute()
[all …]
Decmascript_meta.cpp38 std::optional<Metadata::Error> RecordMetadata::Validate(const std::string_view &attribute, in Validate()
62 std::optional<Metadata::Error> FieldMetadata::Validate(const std::string_view &attribute, in Validate()
73 std::optional<Metadata::Error> FunctionMetadata::Validate(const std::string_view &attribute, in Validate()
84 std::optional<Metadata::Error> ParamMetadata::Validate(const std::string_view &attribute, in Validate()
90 void RecordMetadata::SetFlags(const std::string_view &attribute) in SetFlags()
98 void RecordMetadata::SetFlags(const std::string_view &attribute, const std::string_view &value) in SetFlags()
103 void RecordMetadata::RemoveFlags(const std::string_view &attribute) in RemoveFlags()
113 void RecordMetadata::RemoveFlags(const std::string_view &attribute, const std::string_view &value) in RemoveFlags()
118 void FieldMetadata::SetFlags(const std::string_view &attribute) in SetFlags()
123 void FieldMetadata::SetFlags(const std::string_view &attribute, const std::string_view &value) in SetFlags()
[all …]
/arkcompiler/runtime_core/static_core/assembler/
Dmeta.h72 std::optional<Error> SetAttribute(std::string_view attribute) in SetAttribute()
84 void RemoveAttribute(const std::string &attribute) in RemoveAttribute()
91 bool GetAttribute(const std::string &attribute) const in GetAttribute()
96 std::optional<Error> SetAttributeValue(std::string_view attribute, std::string_view value) in SetAttributeValue()
108 std::vector<std::string> GetAttributeValues(const std::string &attribute) const in GetAttributeValues()
118 std::optional<std::string> GetAttributeValue(const std::string &attribute) const in GetAttributeValue()
152 virtual std::optional<Error> StoreValue(std::string_view attribute, std::string_view value) in StoreValue()
165 virtual std::optional<Error> Store(std::string_view attribute) in Store()
180 bool HasAttribute(std::string_view attribute) const in HasAttribute()
218 virtual bool IsAnnotationRecordAttribute([[maybe_unused]] std::string_view attribute) const in IsAnnotationRecordAttribute()
[all …]
Dmeta.cpp238 std::optional<Metadata::Error> AnnotationMetadata::Store(std::string_view attribute) in Store()
253 …d::optional<Metadata::Error> AnnotationMetadata::MeetExpRecordAttribute(std::string_view attribute, in MeetExpRecordAttribute()
267 std::optional<Metadata::Error> AnnotationMetadata::MeetExpIdAttribute(std::string_view attribute, in MeetExpIdAttribute()
287 …tional<Metadata::Error> AnnotationMetadata::MeetExpElementNameAttribute(std::string_view attribute, in MeetExpElementNameAttribute()
307 …tional<Metadata::Error> AnnotationMetadata::MeetExpElementTypeAttribute(std::string_view attribute, in MeetExpElementTypeAttribute()
327 …a::Error> AnnotationMetadata::MeetExpElementArrayComponentTypeAttribute(std::string_view attribute, in MeetExpElementArrayComponentTypeAttribute()
352 …ional<Metadata::Error> AnnotationMetadata::MeetExpElementValueAttribute(std::string_view attribute, in MeetExpElementValueAttribute()
383 std::optional<Metadata::Error> AnnotationMetadata::StoreValue(std::string_view attribute, std::stri… in StoreValue()
490 std::optional<Metadata::Error> FieldMetadata::StoreValue(std::string_view attribute, std::string_vi… in StoreValue()
Dasm_metadata.rb85 def attribute_name(attribute) argument
/arkcompiler/runtime_core/assembler/
Dmeta.h72 std::optional<Error> SetAttribute(const std::string_view &attribute) in SetAttribute()
84 void RemoveAttribute(const std::string &attribute) in RemoveAttribute()
91 bool GetAttribute(const std::string &attribute) const in GetAttribute()
96 …std::optional<Error> SetAttributeValue(const std::string_view &attribute, const std::string_view &… in SetAttributeValue()
108 std::vector<std::string> GetAttributeValues(const std::string &attribute) const in GetAttributeValues()
118 std::optional<std::string> GetAttributeValue(const std::string &attribute) const in GetAttributeValue()
153 …virtual std::optional<Error> StoreValue(const std::string_view &attribute, const std::string_view … in StoreValue()
166 virtual std::optional<Error> Store(const std::string_view &attribute) in Store()
181 bool HasAttribute(const std::string_view &attribute) const in HasAttribute()
264 … virtual bool IsAnnotationRecordAttribute([[maybe_unused]] const std::string_view &attribute) const in IsAnnotationRecordAttribute()
[all …]
Dmeta.cpp230 std::optional<Metadata::Error> AnnotationMetadata::Store(const std::string_view &attribute) in Store()
245 …onal<Metadata::Error> AnnotationMetadata::MeetExpRecordAttribute(const std::string_view &attribute, in MeetExpRecordAttribute()
259 …optional<Metadata::Error> AnnotationMetadata::MeetExpIdAttribute(const std::string_view &attribute, in MeetExpIdAttribute()
279 …Metadata::Error> AnnotationMetadata::MeetExpElementNameAttribute(const std::string_view &attribute, in MeetExpElementNameAttribute()
300 const std::string_view &attribute, const std::string_view &value) in MeetExpElementTypeAttribute()
320 const std::string_view &attribute, const std::string_view &value) in MeetExpElementArrayComponentTypeAttribute()
344 …etadata::Error> AnnotationMetadata::MeetExpElementValueAttribute(const std::string_view &attribute, in MeetExpElementValueAttribute()
374 std::optional<Metadata::Error> AnnotationMetadata::StoreValue(const std::string_view &attribute, in StoreValue()
472 std::optional<Metadata::Error> FieldMetadata::StoreValue(const std::string_view &attribute, in StoreValue()
Dasm_metadata.rb85 def attribute_name(attribute) argument
/arkcompiler/toolchain/tooling/dynamic/test/
Dpt_params_test.cpp55 std::string attribute = "test"; in HWTEST_F_L0() local
64 std::string attribute = "test"; in HWTEST_F_L0() local
81 std::string attribute = "test"; in HWTEST_F_L0() local
96 std::string attribute = "test"; in HWTEST_F_L0() local
108 std::string attribute = "test"; in HWTEST_F_L0() local
124 std::string attribute = "test"; in HWTEST_F_L0() local
143 std::string attribute = "test"; in HWTEST_F_L0() local
159 std::string attribute = "test"; in HWTEST_F_L0() local
171 std::string attribute = "test"; in HWTEST_F_L0() local
182 std::string attribute = "test"; in HWTEST_F_L0() local
[all …]
Dpt_types_test.cpp319 std::string attribute = "test"; in HWTEST_F_L0() local
527 std::string attribute = "32"; in HWTEST_F_L0() local
813 std::string attribute = "test"; in HWTEST_F_L0() local
836 std::string attribute = "test"; in HWTEST_F_L0() local
848 std::string attribute = "test"; in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/abc2program/
Dabc_file_entity_processor.h31 …d SetEntityAttribute(T &entity, const std::function<bool()> &shouldSet, std::string_view attribute) in SetEntityAttribute()
43 …EntityAttributeValue(T &entity, const std::function<bool()> &shouldSet, std::string_view attribute, in SetEntityAttributeValue()
/arkcompiler/ets_runtime/test/fuzztest/objectrefgetownproperty_fuzzer/
Dobjectrefgetownproperty_fuzzer.cpp40 PropertyAttribute attribute(objectvalue, true, true, true); in JSNApiGetOwnPropertyFuzzTest() local
/arkcompiler/ets_runtime/test/fuzztest/objectref_fuzzer/
Dobjectref_fuzzer.cpp61 PropertyAttribute attribute(value, true, true, true); in DefinePropertyFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/tests/
Dglobal_dictionary_test.cpp84 PropertyAttributes attribute(1); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_first_tests.cpp538 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
561 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
574 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
586 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
2016 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
Djsnapi_third_tests.cpp1112 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
1138 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
1202 PropertyAttribute attribute(toPrimitiveFunc, true, true, true); in HWTEST_F_L0() local
Djsnapi_second_tests.cpp627 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
Djsnapi_sample.cpp724 PropertyAttribute attribute(StringRef::NewFromUtf8(vm, "FreezeValue"), true, true, false); in FreezeAndSeal() local
Dffi_workload.cpp5272 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
5287 PropertyAttribute attribute(value, true, true, true); in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/disassembler/
Ddisassembler.cpp873 …d SetEntityAttribute(T *entity, const std::function<bool()> &shouldSet, std::string_view attribute) in SetEntityAttribute()
884 …EntityAttributeValue(T *entity, const std::function<bool()> &shouldSet, std::string_view attribute, in SetEntityAttributeValue()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp2884 Local<FunctionRef> setter, PropertyAttribute attribute) in SetAccessorProperty()
3062 bool ObjectRef::DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute) in DefineProperty()