/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | nestedTypeVariableInfersLiteral.ts | 23 declare function nested<A extends string>(a: { fields: A }): Record<A, string> 24 declare function nestedUnion<A extends string>(a: { fields: A | A[] }): Record<A, string> 40 const nestedSingle = nested({fields: "z"}) 42 AssertType(nested({fields: "z"}), "Record<"z", string>"); 44 AssertType({fields: "z"}, "{ fields: "z"; }"); 45 AssertType(fields, "string"); 48 const nestedUnionSingle = nestedUnion({fields: "z"}) 50 AssertType(nestedUnion({fields: "z"}), "Record<"z", string>"); 52 AssertType({fields: "z"}, "{ fields: "z"; }"); 53 AssertType(fields, "string"); [all …]
|
D | excessPropertyCheckWithNestedArrayIntersection.ts | 22 fields: Array<{ 27 fields: Array<{ property 37 AssertType({ dataType: { fields: [{ key: 'bla', // should be OK: Not excess value: nu… 41 AssertType({ fields: [{ key: 'bla', // should be OK: Not excess value: null, }], }… 43 fields: [{ 44 AssertType(fields, "{ key: string; value: null; }[]");
|
D | substitutionTypeNoMergeOfAssignableType.ts | 26 fields: {[key: string]: Entry}; property 45 const myTest = makeEntityStore({ test: { fields: { id: {} } } }); 47 AssertType(makeEntityStore({ test: { fields: { id: {} } } }), "Nodes<{ test: { fields: { id: {}; };… 49 AssertType({ test: { fields: { id: {} } } }, "{ test: { fields: { id: {}; }; }; }"); 51 AssertType({ fields: { id: {} } }, "{ fields: { id: {}; }; }"); 52 AssertType(fields, "{ id: {}; }");
|
D | inferentialTypingUsingApparentType3.ts | 40 constructor(public fields: T) { } property in ObjectField 61 person.fields.id; 62 AssertType(person.fields.id, "NumberField");
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_date.cpp | 650 std::array<int64_t, DATE_LENGTH> fields = {0}; in ToDateString() local 651 if (!GetThisDateValues(&fields, true)) { in ToDateString() 654 CString year = StrToTargetLength(ToCString(fields[YEAR]), STR_LENGTH_YEAR); in ToDateString() 655 CString day = StrToTargetLength(ToCString(fields[DAYS]), STR_LENGTH_OTHERS); in ToDateString() 656 …CString str = weekdayName[fields[WEEKDAY]] + SPACE + monthName[fields[MONTH]] + SPACE + day + SPAC… in ToDateString() 672 std::array<int64_t, DATE_LENGTH> fields = {0}; in ToDateString() local 673 GetDateValues(timeMs, &fields, true); in ToDateString() 685 CString year = ToCString(fields[YEAR]); in ToDateString() 687 CString weekday = weekdayName[fields[WEEKDAY]]; in ToDateString() 688 CString month = monthName[fields[MONTH]]; in ToDateString() [all …]
|
D | js_date.h | 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/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/runtime_core/libpandabase/events/ |
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
|
/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/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/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 | | |
|
D | glossary.md | 67 for each of their fields. 79 …eachable/alive object, but still should be scanned by GC (to process all fields with reference typ…
|
D | code_metainfo.md | 126 > NOTE: fields with `_INDEX` in the end of the name contain only index of the record in the corresp… 181 Virtual register description has the following fields:
|
D | file_format.md | 12 Many mobile applications use a lot of types, methods and fields. Their number is so large that it 19 addressing fields, methods, classes, etc. 24 But to achieve more compactness 16-bit indexes are used to refer classes, methods and fields in 36 All classes, fields and methods are separated into 2 groups: foreign and local. 37 Foreign classes, fields and methods are declared in other files, with references from the 38 current binary file. Local classes, fields and methods are declared in the current file. 209 …m` | `uint8_t[4]` | adler32 checksum of the file except magic and checksum fields. | 392 | `num_fields` | `uleb128` | Number of fields the class has. 395 | `fields` | `Field[]` | Class fields. Number of elements is `num_fields`. Each ele…
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | ir_interface.h | 82 auto it = maps_->fields.find(offset); in GetFieldIdByOffset() 83 ASSERT(it != maps_->fields.cend()); in GetFieldIdByOffset()
|
/arkcompiler/runtime_core/templates/ |
D | common.rb | 144 fields.each do |field| 155 fields.each do |field|
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_date.cpp | 473 std::array<int64_t, DATE_LENGTH> fields = {0, 0, 1, 0, 0, 0, 0, 0, 0}; in ExtractDateFields() local 486 fields[i] = static_cast<int64_t>(temp); in ExtractDateFields() 487 if (i == 0 && fields[0] >= 0 && fields[0] < JSDate::HUNDRED) { in ExtractDateFields() 488 fields[0] += JSDate::NINETEEN_HUNDRED_YEAR; in ExtractDateFields() 491 … timeValue = JSTaggedValue((i == length) ? JSDate::SetDateValues(&fields, true) : base::NAN_VALUE); in ExtractDateFields()
|
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | typeSystem.ts | 281 fields: Map<string, Array<number>> = new Map<string, Array<number>>(); property in ClassType 382 this.fields.set(fieldName, fieldInfo); 481 … let transferredTarget: Map<string, Array<number>> = isStatic ? this.staticFields : this.fields; 824 fields: Map<string, Array<number>> = new Map<string, Array<number>>(); property in InterfaceType 879 this.fields.set(fieldName, fieldInfo); 939 let transferredTarget: Map<string, Array<number>> = this.fields;
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-emitter.h | 38 std::unordered_map<uint32_t, std::string> fields; member 199 const std::unordered_map<std::string, panda_file::BaseFieldItem *> &fields); 218 const std::unordered_map<std::string, panda_file::BaseFieldItem *> &fields,
|
D | assembly-emitter.cpp | 298 … const std::unordered_map<std::string, BaseFieldItem *> &fields) in CreateScalarEnumValueItem() argument 301 auto it = fields.find(name); in CreateScalarEnumValueItem() 302 if (it == fields.cend()) { in CreateScalarEnumValueItem() 464 … const std::unordered_map<std::string, BaseFieldItem *> &fields, in CreateMethodHandleItem() argument 473 item = container->CreateItem<MethodHandleItem>(mh.type, fields.at(mh.item_name)); in CreateMethodHandleItem() 1184 maps->fields.insert({field->GetFileId().GetOffset(), std::string(name)}); in FillMap() 1485 const std::unordered_map<std::string, panda_file::BaseFieldItem *> &fields, in Emit() argument 1506 … if (!insn.Emit(emitter, method, methods, fields, classes, strings, literalarrays, labels)) { in Emit()
|
D | assembly-ins.h | 112 const std::unordered_map<std::string, panda_file::BaseFieldItem *> &fields,
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/ |
D | README.md | 25 --full (-f) - output the full spec in yaml format with additional fields showing the coverage data …
|
/arkcompiler/runtime_core/docs/bc_verification/ |
D | absint_checks.md | 15 Or access to wrong fields of object.
|
/arkcompiler/runtime_core/assembler/tests/ |
D | emitter_test.cpp | 158 std::vector<FieldData> fields {{"sf", panda_file::Type::TypeId::I32, ACC_STATIC}, in TEST() local 166 utf::CStringAsMutf8(fields[i].name.c_str())), in TEST() 169 ASSERT_EQ(fda.GetType(), panda_file::Type(fields[i].type_id).GetFieldEncoding()); in TEST() 170 ASSERT_EQ(fda.GetAccessFlags(), fields[i].access_flags); in TEST()
|