/arkcompiler/runtime_core/assembler/ |
D | asm_metadata.rb | 55 def attributes method 56 @data.attributes.map do |op| 95 … attributes = Metadata::attributes.select { |a| a.applicable_to?(item_type) && a.bool? == is_bool } 99 attributes.each do |a| 150 …attributes = Metadata::attributes.select { |a| a.applicable_to?(item_type) && a.bool? == is_bool &… 154 attributes.each do |a| 183 …attributes = Metadata::attributes.select { |a| a.applicable_to?(item_type) && a.bool? == is_bool &… 187 attributes.each do |a| 232 … attributes = Metadata::attributes.select { |a| a.applicable_to?(item_type) && a.bool? == is_bool } 233 args[0] = add_unused_attribute(args[0]) if attributes.none? [all …]
|
D | CMakeLists.txt | 102 target_compile_options(assembler_tests PUBLIC "-Wno-ignored-attributes")
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | ts_hclass_generator.cpp | 188 PropertyAttributes attributes = PropertyAttributes::Default(); in CreateIHClass() local 189 attributes.SetIsInlinedProps(true); in CreateIHClass() 190 attributes.SetRepresentation(Representation::NONE); in CreateIHClass() 191 attributes.SetOffset(index); in CreateIHClass() 192 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreateIHClass() 255 PropertyAttributes attributes = PropertyAttributes::Default(true, false, true); in CreatePHClass() local 257 attributes.SetIsAccessor(true); in CreatePHClass() 259 attributes.SetIsInlinedProps(true); in CreatePHClass() 260 attributes.SetRepresentation(Representation::NONE); in CreatePHClass() 261 attributes.SetOffset(index); in CreatePHClass() [all …]
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | class_info_extractor.cpp | 194 … PropertyAttributes attributes = PropertyAttributes::Default(true, false, true); // non-enumerable in CreatePrototypeHClass() local 197 attributes.SetIsAccessor(true); in CreatePrototypeHClass() 200 attributes.SetIsInlinedProps(true); in CreatePrototypeHClass() 201 attributes.SetRepresentation(Representation::TAGGED); in CreatePrototypeHClass() 202 attributes.SetOffset(index); in CreatePrototypeHClass() 203 layout->AddKey(thread, index, key.GetTaggedValue(), attributes); in CreatePrototypeHClass() 250 PropertyAttributes attributes; in CreateConstructorHClass() local 253 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass() 257 attributes = PropertyAttributes::Default(false, false, true); in CreateConstructorHClass() 260 attributes = PropertyAttributes::Default(true, false, true); in CreateConstructorHClass() [all …]
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | optionalAccessorsInInterface1.ts | 26 declare function defineMyProperty(o: any, p: string, attributes: MyPropertyDescriptor): any; 43 declare function defineMyProperty2(o: any, p: string, attributes: MyPropertyDescriptor2): any;
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_hclass-inl.h | 34 const JSHandle<JSTaggedValue> &key, PropertyAttributes attributes) in AddTransitions() argument 53 auto attr = JSHandle<JSTaggedValue>(thread, JSTaggedValue(attributes.GetPropertyMetaData())); in AddTransitions() 92 …line JSHClass *JSHClass::FindTransitions(const JSTaggedValue &key, const JSTaggedValue &attributes) in FindTransitions() argument 105 if (attr == attributes.GetInt() && key == cachedKey) { in FindTransitions() 113 auto entry = dict->FindEntry(key, attributes); in FindTransitions()
|
D | object_factory.cpp | 676 PropertyAttributes attributes = PropertyAttributes::Default(true, false, false); in CreateJSRegExpInstanceClass() local 677 attributes.SetIsInlinedProps(true); in CreateJSRegExpInstanceClass() 678 attributes.SetRepresentation(Representation::TAGGED); in CreateJSRegExpInstanceClass() 679 attributes.SetOffset(fieldOrder++); in CreateJSRegExpInstanceClass() 680 layoutInfoHandle->AddKey(thread_, 0, globalConst->GetLastIndexString(), attributes); in CreateJSRegExpInstanceClass() 700 PropertyAttributes attributes = PropertyAttributes::DefaultAccessor(true, false, false); in CreateJSArrayInstanceClass() local 701 attributes.SetIsInlinedProps(true); in CreateJSArrayInstanceClass() 702 attributes.SetRepresentation(Representation::TAGGED); in CreateJSArrayInstanceClass() 703 attributes.SetOffset(fieldOrder++); in CreateJSArrayInstanceClass() 704 layoutInfoHandle->AddKey(thread_, 0, globalConst->GetLengthString(), attributes); in CreateJSArrayInstanceClass() [all …]
|
D | global_dictionary-inl.h | 68 const PropertyAttributes &attributes) in SetEntry() argument 71 SetAttributes(thread, entry, attributes); in SetEntry() 72 UpdateValueAndAttributes(thread, entry, value, attributes); in SetEntry()
|
D | js_hclass.h | 1683 inline JSHClass *FindTransitions(const JSTaggedValue &key, const JSTaggedValue &attributes);
|
/arkcompiler/ets_frontend/merge_abc/protos/ |
D | meta.proto | 28 repeated Attributes attributes = 2; field
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_reflect_test.cpp | 179 JSHandle<JSObject> attributes = in HWTEST_F_L0() local 185 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value); in HWTEST_F_L0() 189 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable); in HWTEST_F_L0() 193 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0() 197 … JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable); in HWTEST_F_L0() 204 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes)); in HWTEST_F_L0()
|
/arkcompiler/toolchain/ |
D | BUILD.gn | 42 "-Wno-ignored-attributes",
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_reflect.cpp | 102 JSHandle<JSTaggedValue> attributes = GetCallArg(argv, BuiltinsBase::ArgsPosition::THIRD); in ReflectDefineProperty() local 104 JSObject::ToPropertyDescriptor(thread, attributes, desc); in ReflectDefineProperty()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | metaProto.cpp | 162 for (const auto &protoKeyVal: protoMeta.attributes()) { in Deserialize()
|
/arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
D | satepoint_GC_0.ll | 96 attributes #0 = { "frame-pointer"="all"}
|
/arkcompiler/runtime_core/ldscripts/ |
D | panda_test_asan.ld | 344 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
|
/arkcompiler/toolchain/build/third_party_gn/icu/icu4c/ |
D | BUILD.gn | 44 "-Wno-ignored-attributes", 521 "-Wno-ignored-attributes", 572 "-Wno-ignored-attributes", 626 "-Wno-ignored-attributes", 679 "-Wno-ignored-attributes",
|
/arkcompiler/runtime_core/disassembler/ |
D | disassembler.cpp | 1441 auto attributes = meta.GetAttributes(); in Serialize() local 1442 if (bool_attributes.empty() && attributes.empty() && ann_list.empty()) { in Serialize() 1454 if (!attributes.empty() || !ann_list.empty() || idx < size) { in Serialize() 1459 size = attributes.size(); in Serialize() 1461 for (const auto &[key, values] : attributes) { in Serialize()
|
/arkcompiler/runtime_core/gn/ark-third-party/icu/ |
D | BUILD.gn | 43 "-Wno-ignored-attributes", 519 "-Wno-ignored-attributes", 564 "-Wno-ignored-attributes", 612 "-Wno-ignored-attributes", 664 "-Wno-ignored-attributes",
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 702 PropertyAttributes attributes; in RuntimeStGlobalRecord() local 704 attributes.SetIsConstProps(true); in RuntimeStGlobalRecord() 711 attributes.SetBoxType(boxType); in RuntimeStGlobalRecord() 713 …*GlobalDictionary::PutIfAbsent(thread, dictHandle, prop, JSHandle<JSTaggedValue>(box), attributes); in RuntimeStGlobalRecord()
|
/arkcompiler/ets_runtime/ecmascript/ts_types/ |
D | lib_ark_builtins.d.ts | 108 …static defineProperty(o: any, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): any;
|
/arkcompiler/ets_runtime/ |
D | BUILD.gn | 323 "-Wno-ignored-attributes",
|
/arkcompiler/runtime_core/docs/ |
D | doxygen.config | 347 # For Microsoft's IDL there are propget and propput attributes to indicate 1375 # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1383 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1385 # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 7320 attributes: null, property 7364 return this.attributes.length > 0; 7489 (e.attributes = new w)._ownerElement = e; 7541 var n = i.attributes = new w; 7583 return this.attributes.getNamedItem(t); 7613 return this.attributes.setNamedItem(t); 7616 return this.attributes.setNamedItemNS(t); 7619 return this.attributes.removeNamedItem(t.nodeName); 7638 return this.attributes.getNamedItemNS(t, e); 7782 var r = t.attributes; [all …]
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …attributes type '{0}' may not be a union type."),The_return_type_of_a_JSX_element_constructor_must…
|