Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 25 of 35) sorted by relevance

12

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DnestedTypeVariableInfersLiteral.ts23 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 …]
DexcessPropertyCheckWithNestedArrayIntersection.ts22 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; }[]");
DsubstitutionTypeNoMergeOfAssignableType.ts26 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: {}; }");
DinferentialTypingUsingApparentType3.ts40 constructor(public fields: T) { } property in ObjectField
61 person.fields.id;
62 AssertType(person.fields.id, "NumberField");
/arkcompiler/ets_runtime/ecmascript/
Djs_date.cpp650 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 …]
Djs_date.h168 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/
Dgc-mark.puactivity29 :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/
Devents_gen.h.erb34 % 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 …]
Devents.rb59 def fields method in Event
/arkcompiler/runtime_core/tests/fuzztest/fielddataaccessor_fuzzer/
Dfielddataaccessor_fuzzer.cpp32 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/
Dtest-object-proto-expected.txt1 SyntaxError: Duplicate __proto__ fields are not allowed in object literals [test-object-proto.js:25…
/arkcompiler/runtime_core/docs/
Druntime-class.md3 …independent information about class. Virtual table and region for static fields are embedded to th…
17 ... // Mirror fields
31 | Mirror fields | | |
Dglossary.md67 for each of their fields.
79 …eachable/alive object, but still should be scanned by GC (to process all fields with reference typ…
Dcode_metainfo.md126 > 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:
Dfile_format.md12 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/
Dir_interface.h82 auto it = maps_->fields.find(offset); in GetFieldIdByOffset()
83 ASSERT(it != maps_->fields.cend()); in GetFieldIdByOffset()
/arkcompiler/runtime_core/templates/
Dcommon.rb144 fields.each do |field|
155 fields.each do |field|
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_date.cpp473 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/
DtypeSystem.ts281 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/
Dassembly-emitter.h38 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,
Dassembly-emitter.cpp298 … 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()
Dassembly-ins.h112 const std::unordered_map<std::string, panda_file::BaseFieldItem *> &fields,
/arkcompiler/runtime_core/tests/cts-coverage-tool/
DREADME.md25 --full (-f) - output the full spec in yaml format with additional fields showing the coverage data …
/arkcompiler/runtime_core/docs/bc_verification/
Dabsint_checks.md15 Or access to wrong fields of object.
/arkcompiler/runtime_core/assembler/tests/
Demitter_test.cpp158 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()

12