| /arkcompiler/runtime_core/libpandabase/events/ |
| D | events.yaml | 14 # To add new event, create new record in the 'events' section with following fields: 16 # - fields - data fields that will be stored within event. The type of each field should be a real … 28 fields: 41 fields: 56 fields: 66 fields: 79 fields: 101 fields: 106 fields: 114 fields: [all …]
|
| D | events_gen.h.erb | 34 % event.fields.select(&:is_enum?).each do |field| 49 …virtual void <%= event.name.camelize %>(<%= event.fields.map {|f| f.arg_type}.join(', ') %>) {} /… 60 % event.fields.select(&:is_enum?).each do |field| 77 % event.fields.each do |field| 103 …void <%= event.name.camelize %>(<%= event.fields.map {|f| f.arg_type + ' ' + f.name }.join(', ') %… 105 …auto event = new EventRecord(<%= event.name.camelize %>Event{<%= event.fields.map(&:name).join(', … 169 …void <%= event.name.camelize %>(<%= event.fields.map {|f| f.arg_type + ' ' + f.name }.join(', ') %… 171 …file_ << "<%= event.name.camelize %>," << <%= event.fields.map(&:name).join(" << ',' << ") %> << s… 191 …void <%= event.name.camelize %>(<%= event.fields.map {|f| f.arg_type + ' ' + f.name }.join(', ') %… 192 …LOG(INFO, EVENTS) << "<%= event.name.camelize %>," << <%= event.fields.map(&:name).join(" << ',' <… [all …]
|
| D | events.rb | 59 def fields method in Event 60 @fields ||= @dscr['fields'].map { |field| Field.new(self, field) }
|
| /arkcompiler/runtime_core/docs/diagrams/ |
| D | gc-mark.puactivity | 29 :Mark all fields in Reference except 'referent'; 31 :Mark all fields in object; 37 mark object == mark object and add all non-primitive fields to the Mark Stack 38 …mark all fields in object == mark all directly referenced objects and add their un-marked fields t…
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_date.cpp | 652 std::array<int64_t, DATE_LENGTH> fields = {0}; in ToDateString() local 653 if (!GetThisDateValues(&fields, true)) { in ToDateString() 656 CString year = StrToTargetLength(ToCString(fields[YEAR]), STR_LENGTH_YEAR); in ToDateString() 657 CString day = StrToTargetLength(ToCString(fields[DAYS]), STR_LENGTH_OTHERS); in ToDateString() 658 …CString str = weekdayName[fields[WEEKDAY]] + SPACE + monthName[fields[MONTH]] + SPACE + day + SPAC… in ToDateString() 674 std::array<int64_t, DATE_LENGTH> fields = {0}; in ToDateString() local 675 GetDateValues(timeMs, &fields, true); in ToDateString() 687 CString year = ToCString(fields[YEAR]); in ToDateString() 689 CString weekday = weekdayName[fields[WEEKDAY]]; in ToDateString() 690 CString month = monthName[fields[MONTH]]; in ToDateString() [all …]
|
| D | js_date.h | 38 // the index in the Date Fields 168 CString GetLocaleTimeStr(const std::array<int64_t, DATE_LENGTH> &fields) const; 169 CString GetLocaleDateStr(const std::array<int64_t, DATE_LENGTH> &fields) const;
|
| /arkcompiler/runtime_core/compiler/ |
| D | compiler.yaml | 619 fields: 634 fields: 645 fields: 654 fields: 661 fields: 668 fields: 677 fields: 692 fields: 697 fields: 710 fields: [all …]
|
| /arkcompiler/runtime_core/irtoc/lang/ |
| D | instruction.rb | 21 attr_reader :index, :inputs, :name, :bb, :fields, :modifiers, :dscr accessor in IRInstruction 29 @fields = kwargs 38 @fields[:ArgIndex] = index 105 ss = "CONSTANT(#{@index}, #{@fields[:Value]})" 107 Output.println "PARAMETER(#{@index}, #{@fields[:ArgIndex]}).#{@type}();" 207 Output.println("auto* #{local_var_name} = graph->FindOrCreateConstant(#{@fields[:Value]});") 295 if !@fields.empty? 296 stm.print(", #{@fields}")
|
| /arkcompiler/runtime_core/runtime/ |
| D | class_linker.cpp | 76 Span<Field> fields = class_ptr->GetFields(); in FreeClassData() local 77 if (fields.Size() > 0) { in FreeClassData() 78 allocator_->Free(fields.begin()); in FreeClassData() 310 explicit ClassDataAccessor(Span<Field> fields) : fields_(fields) {} in ClassDataAccessor() argument 333 ClassLinker::ClassInfo ClassLinker::GetClassInfo(Span<Method> methods, Span<Field> fields, Class *b… in GetClassInfo() argument 346 ClassDataAccessor data_accessor(fields); in GetClassInfo() 480 Span<Field> fields {allocator_->AllocArray<Field>(num_fields), num_fields}; in LoadFields() local 485 … [klass, &sfields_idx, &ifields_idx, &fields](panda_file::FieldDataAccessor &field_data_accessor) { in LoadFields() 486 … Field *field = field_data_accessor.IsStatic() ? &fields[sfields_idx++] : &fields[ifields_idx++]; in LoadFields() 491 klass->SetFields(fields, num_sfields); in LoadFields() [all …]
|
| D | class.cpp | 96 // Initializa all static fields with 0 value. in Class() 149 os << " static fields (" << this->num_sfields_ << " entries)\n"; in DumpClass() 152 os << " instance fields (" << this->num_fields_ - this->num_sfields_ << " entries)\n"; in DumpClass()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | alias_analysis.h | 40 // Valid fields: base 43 // Valid fields: imm 46 // Valid fields: base, imm, type_ptr 49 // Valid fields: imm, type_ptr 52 // Valid fields: base, idx
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_displaynames.cpp | 42 // « [[InitializedDisplayNames]], [[Locale]], [[Style]], [[Type]], [[Fallback]], [[Fields]] »). in DisplayNamesConstructor() 96 // 5. Let fields be displayNames.[[Fields]]. in Of() 97 // 6. If fields has a field [[<code>]], return fields.[[<code>]]. in Of()
|
| /arkcompiler/runtime_core/runtime/mem/gc/static/ |
| D | gc_marker_static-inl.h | 28 // Iterate over instance fields in HandleObject() 48 // Iterate over static fields in HandleClass() 104 … // Handle Class handles static fields only, so we need to Handle regular fields explicitly too in MarkInstance()
|
| /arkcompiler/runtime_core/docs/ |
| D | runtime-class.md | 3 …independent information about class. Virtual table and region for static fields are embedded to th… 17 ... // Mirror fields 31 | Mirror fields | | |
|
| /arkcompiler/runtime_core/runtime/mem/ |
| D | object_helpers.cpp | 70 Span<Field> fields = cls->GetInstanceFields(); in DumpObject() local 87 for (Field &field : fields) { in DumpObject() 167 void TraverseFields(const Span<Field> &fields, const Class *cls, const ObjectHeader *object_header, in TraverseFields() argument 170 for (const Field &field : fields) { in TraverseFields() 196 // Dump class static fields in DumpClass() 198 *o_stream << "Dump static fields:" << std::endl; in DumpClass() 199 const Span<Field> &fields = cls->GetStaticFields(); in DumpClass() local 201 TraverseFields(fields, cls, cls_object, field_dump); in DumpClass() 202 *o_stream << "Dump cls object fields:" << std::endl; in DumpClass()
|
| /arkcompiler/runtime_core/tests/fuzztest/fielddataaccessor_fuzzer/ |
| D | fielddataaccessor_fuzzer.cpp | 32 const auto &fields = panda_file.GetFieldIndex(&header); in FieldDataAccessorFuzzTest() local 33 for (const auto &id : fields) { in FieldDataAccessorFuzzTest()
|
| /arkcompiler/toolchain/ |
| D | OAT.xml | 31 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilte… 43 6. policyitem rule and group: These two fields are used together to merge policy results. "may" pol…
|
| /arkcompiler/runtime_core/ |
| D | OAT.xml | 24 …2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilt… 35 …6. policyitem rule and group: These two fields are used together to merge policy results. "may" po…
|
| /arkcompiler/ets_frontend/ |
| D | OAT.xml | 30 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilte… 42 6. policyitem rule and group: These two fields are used together to merge policy results. "may" pol…
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | newobj.yaml | 36 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 199 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 240 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 283 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 344 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 412 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 415 description: Check that objects fields are properly initialized in PandaAssembly context. 759 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their 762 description: Check that objects fields are properly initialized in PandaAssembly context. 1133 … Resolve class type from type_id, allocate memory for an object, initialize its fields with their [all …]
|
| /arkcompiler/ets_runtime/ |
| D | OAT.xml | 31 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilte… 43 6. policyitem rule and group: These two fields are used together to merge policy results. "may" pol…
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | class-inl.h | 185 auto fields = GetFields<filter>(); in FindDeclaredField() local 186 auto it = std::find_if(fields.begin(), fields.end(), pred); in FindDeclaredField() 187 if (it != fields.end()) { in FindDeclaredField() 193 ALWAYS_INLINE inline Field *BinarySearchField(Span<Field> fields, panda_file::File::EntityId id) in BinarySearchField() argument 196 auto it = std::lower_bound(fields.begin(), fields.end(), id, comp); in BinarySearchField() 197 if (it != fields.end() && (*it).GetFileId() == id) { in BinarySearchField() 218 auto fields = GetFields<filter>(); in FindDeclaredField() local 219 auto *field = BinarySearchField(fields, id); in FindDeclaredField() 564 // Try to fill alignment gaps with fields that have smaller size from largest to smallests in ComputeClassSize() 566 "Please fix alignment of the fields of type \"TaggedValue\""); in ComputeClassSize() [all …]
|
| D | class.h | 227 void SetFields(Span<Field> fields, uint32_t num_sfields) in SetFields() argument 229 fields_ = fields.data(); in SetFields() 230 num_fields_ = fields.size(); in SetFields() 911 uint32_t num_reffields_ {0}; // instance reference fields num 912 uint32_t num_refsfields_ {0}; // static reference fields num 913 uint32_t offset_reffields_ {0}; // first instance reference fields offset in object layout 914 uint32_t offset_refsfields_ {0}; // first static reference fields offset in object layout
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/ |
| D | test-object-proto-expected.txt | 1 SyntaxError: Duplicate __proto__ fields are not allowed in object literals [test-object-proto.js:25…
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | instructions.yaml | 256 fields: 264 fields: 272 fields: 298 fields: 343 fields: 360 fields: 369 fields: 377 fields: 386 fields: 433 fields: [all …]
|