/arkcompiler/ets_frontend/merge_abc/src/ |
D | assemblyFieldProto.h | 25 class Field { 27 static void Serialize(const panda::pandasm::Field &field, protoPanda::Field &protoField); 28 static void Deserialize(const protoPanda::Field &protoField, panda::pandasm::Field &field,
|
D | assemblyFieldProto.cpp | 19 void Field::Serialize(const panda::pandasm::Field &field, protoPanda::Field &protoField) in Serialize() 33 void Field::Deserialize(const protoPanda::Field &protoField, panda::pandasm::Field &field, in Deserialize()
|
D | assemblyRecordProto.cpp | 29 Field::Serialize(field, *proto_field); in Serialize() 50 auto recordField = panda::pandasm::Field(panda::panda_file::SourceLang::ECMASCRIPT); in Deserialize() 51 Field::Deserialize(protoField, recordField, allocator); in Deserialize()
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | inferentialTypingUsingApparentType3.ts | 21 interface Field<T> { 25 class CharField implements Field<string> { 32 class NumberField implements Field<number> { 39 class ObjectField<A, T extends { [name: string]: Field<any> }> {
|
D | conditionalTypeSubclassExtendsTypeParam.ts | 23 public getField2<K extends keyof M>(): Field<M[K], [K] extends [keyof MR] ? MR[K] : M[K]> 26 declare class Field<T extends TR, TR> { class
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-field.h | 28 struct Field { struct 39 explicit Field(panda::panda_file::SourceLang lang) in Field() argument
|
D | assembly-record.h | 35 std::vector<Field> field_list; /* class fields list */
|
D | assembly-parser.h | 97 panda::pandasm::Field *curr_fld_ = nullptr;
|
/arkcompiler/runtime_core/libpandabase/events/ |
D | events.rb | 23 class Field class 60 @fields ||= @dscr['fields'].map { |field| Field.new(self, field) }
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
D | commonjs.cpp | 25 auto isCommonJsField = panda::pandasm::Field(LANG_EXT); in SetCommonjsField() 37 auto isCommonJsField = panda::pandasm::Field(LANG_EXT); in GenCommonjsRecord()
|
D | typeExtractorEmitter.cpp | 27 using Field = panda::pandasm::Field; typedef 202 auto typeFlagField = Field(LANG_EXT); in GenTypeSummaryInfo() 209 auto typeSummaryIndexField = Field(LANG_EXT); in GenTypeSummaryInfo()
|
D | emitter.cpp | 337 auto pkgNameField = panda::pandasm::Field(LANG_EXT); in SetPkgNameField() 370 auto jsonContentField = panda::pandasm::Field(panda::panda_file::SourceLang::ECMASCRIPT); in GenJsonContentRecord() 406 auto moduleIdxField = panda::pandasm::Field(LANG_EXT); in AddSourceTextModuleRecord() 421 auto moduleIdxField = panda::pandasm::Field(LANG_EXT); in AddSourceTextModuleRecord()
|
/arkcompiler/runtime_core/libpandafile/ |
D | panda_cache.h | 29 class Field; variable 44 Field *ptr_ {nullptr}; 107 inline Field *GetFieldFromCache(File::EntityId id) const in GetFieldFromCache() 121 inline void SetFieldCache(File::EntityId id, Field *field) in SetFieldCache()
|
/arkcompiler/runtime_core/docs/ |
D | code_metainfo.md | 103 | Field | Description | 115 | Field | Description | 130 | Field | Description | 176 | Field | Description | 197 | Field | Description |
|
D | file_format.md | 138 #### Field access flags 271 ### Field subsection 282 … | Access flags of the field. The value must be a combination of the [Field access flags](#fie… 395 | `fields` | `Field[]` | Class fields. Number of elements is `num_fields`. Each ele… 697 … value represents an offset to an enum's field. The offset must point to [Field](#field) or [Forei… 863 The structure is organized as an array of offsets from the beginning og the file to the [Field](#fi… 872 | `offsets` | `uint32_t[]` | Array of offsets to [Field](#field) or [ForeignField](#… 1003 …o a static setter. Offset in [MethodHandle](#methodhandle) must point to [Field](#field) or [Forei… 1004 …o a static getter. Offset in [MethodHandle](#methodhandle) must point to [Field](#field) or [Forei… 1005 …n instance getter. Offset in [MethodHandle](#methodhandle) must point to [Field](#field) or [Forei… [all …]
|
D | assembly_format.md | 127 ### Field metadata annotations 484 # Field metadata annotations:
|
D | runtime-compiled_code-interaction.md | 45 | Field | Type | Description | 64 | Field | Description |
|
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/ |
D | ts_type_test_helper.h | 53 auto typeSummaryIndexField = pandasm::Field(pandasm::extensions::Language::ECMASCRIPT); in AddTypeSummary() 69 auto isCommonJsField = pandasm::Field(pandasm::extensions::Language::ECMASCRIPT); in AddCommonJsField()
|
/arkcompiler/ets_frontend/merge_abc/protos/ |
D | assemblyField.proto | 22 message Field { message
|
D | assemblyRecord.proto | 29 repeated Field fieldList = 5;
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | moduleHelpers.cpp | 54 auto entryNameField = panda::pandasm::Field(langExt); in CompileNpmModuleEntryList()
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 879 auto isCommonJsField = panda::pandasm::Field(LANG_EXT); in GenerateCommonJsRecord() 894 auto isCommonJsField = panda::pandasm::Field(LANG_EXT); in SetCommonjsField() 910 auto moduleIdxField = panda::pandasm::Field(LANG_EXT); in AddModuleRecord() 1085 auto pkgNameField = panda::pandasm::Field(LANG_EXT); in SetPackageName() 1101 auto inputJsonFileContentField = panda::pandasm::Field(LANG_EXT); in ParseInputJsonFileContent() 1269 auto typeFlagField = panda::pandasm::Field(LANG_EXT); in ParseSingleTypeInfo() 1277 auto typeSummaryIndexField = panda::pandasm::Field(LANG_EXT); in ParseSingleTypeInfo() 1290 auto typeFlagField = panda::pandasm::Field(LANG_EXT); in ParseSingleTypeInfo() 1298 auto typeSummaryIndexField = panda::pandasm::Field(LANG_EXT); in ParseSingleTypeInfo() 1654 auto entryNameField = panda::pandasm::Field(langExt); in CompileNpmEntries()
|
/arkcompiler/runtime_core/disassembler/ |
D | disassembler.h | 101 void GetMetaData(pandasm::Field *field, const panda_file::File::EntityId &field_id);
|
D | disassembler.cpp | 408 pandasm::Field field(file_language_); in GetFields() 704 void Disassembler::GetMetaData(pandasm::Field *field, const panda_file::File::EntityId &field_id) in GetMetaData()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | global_env.h | 238 enum Field { enum
|