Home
last modified time | relevance | path

Searched full:they (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DDataView.ets81 * Read bytes as they represent given type
90 * Sets bytes as they represent given type
98 * Read bytes as they represent given type
107 * Sets bytes as they represent given type
155 * Read bytes as they represent given type
164 * Sets bytes as they represent given type
172 * Read bytes as they represent given type
181 * Sets bytes as they represent given type
228 * Read bytes as they represent given type
237 * Sets bytes as they represent given type
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/08.function_method_and_constructor_overloading/04.declaration_distinguishable_by_signatures/
Ddist.ets20 - They are functions with the same name, but their signatures are not override-equivalent.
21 - They are methods with the same name, but their signatures are not override-equivalent.
22 - They are constructors of the same class, but their signatures are not override-equivalent.
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dcheck_resolver.h38 * However, these LenArray that are generated from asm lenarr should be keeped, as they
40 * since they can throw but they are not generated as inputs of check-instructions, We
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/02.separate_module_initializer/
Dimport_statements.ets21 initializers are executed to ensure that they all have valid initial values
22 …• If the separate module has top-level statements (see Top-Level Statements), then they are also e…
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DDataView.ets.j298 * Read bytes as they represent given type
107 * Sets bytes as they represent given type
117 * Read bytes as they represent given type
126 * Sets bytes as they represent given type
135 * Sets bytes as they represent given type
148 * Sets bytes as they represent given type
161 * Read bytes as they represent given type
175 * Read bytes as they represent given type
/arkcompiler/runtime_core/static_core/docs/bc_verification/
Dtype_system.md14 Internally they denoted by indices (just numbers), and there is separate class to hold their names.
20 Internally they are just indices.
Dtypes_n_values.md5 1. Semantic (abstract) types. They used only for values classification without taking into consider…
8 3. Physycal (concrete) types. They are parameterized types by abstract and storage types.
81 in the type system. They form a single class of equivalence.
/arkcompiler/runtime_core/docs/bc_verification/
Dtype_system.md14 Internally they denoted by indices (just numbers), and there is separate class to hold their names.
20 Internally they are just indices.
Dtypes_n_values.md5 1. Semantic (abstract) types. They used only for values classification without taking into consider…
8 3. Physycal (concrete) types. They are parameterized types by abstract and storage types.
81 in the type system. They form a single class of equivalence.
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md9they acted like a [finite state machine](https://en.wikipedia.org/wiki/Finite-state_machine) (FSM)…
11 …. Some computation gates will load from or store to the global memory, so they should be executed …
13they are [partially ordered](https://en.wikipedia.org/wiki/Partially_ordered_set) by wires. Sequen…
19 …tps://en.wikipedia.org/wiki/Relay) gates** `DEPEND_RELAY` are introduced. They take a state gate (…
21 …scheduling phrase (without furthermore IR analysis or modification), thus they will not couple wit…
23 … **root nodes** in Circuit IR. They are not called "gates" since they do not contribute to the log…
33 * `CONSTANT_LIST` `ARG_LIST`: Registering all value origins such as constants and arguments. (they
35 The offsets of root nodes are fixed, so they can be accessed instantly via `GateRef Circuit::GetRoo…
43 …*fundamental** for Circuit IR, and are determined by the opcode of gates. They describe the bit wi…
45 …level of types are **high level** (closer to languages) and **optional**. They can provide informa…
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe134.md8 they are considered an excessive compiler hint.
/arkcompiler/ets_frontend/ets2panda/linter/test/sdkwhite/
Dsendable_class_interface_property_sdk.ets16 // they both is not in sdkwhitelist after updated sdkwhitelist.
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dvn.h84 …* If instruction A dominates B and they have equivalent vn, users B are moved to A and DCE removes…
85 * The instruction with the property NO_CSE has unique vn and they can't be removed.
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dmemlayout.cpp27 * they cannot be fit in a pair of registers.
51 * and map to machine code sequences. We ignore them because they are not in FindLargestActualArea()
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/compiler/
Dtest-ts-static-blocks-in-class3.ts17 // multiple static blocks are run in the same order in which they're written
Dtest-ts-static-blocks-in-class6.ts17 // multiple static blocks are run in the same order in which they're written
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/01.abstract_classes/
Dabstract_method_1.ets17 desc: Abstract methods do not have bodies, i.e., they can be declared but not implemented
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/08.class_initializer/
Dclass_initializer_ensure_fields_initialized.ets19 static fields receive their initial values before they are used for the first time.
Dclass_initializer_ensure_fields_initialized_1.ets19 static fields receive their initial values before they are used for the first time.
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dvn.h91 …* If instruction A dominates B and they have equivalent vn, users B are moved to A and DCE removes…
92 * The instruction with the property NO_CSE has unique vn and they can't be removed.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/01.predefined_types/01.primitive_types/
Dpt_constructor.ets21 They only have the operations as referred herein (see Value Types).
Dpt_type.ets19 … types are called primitive types. Primitive type names are reserved, i.e., they cannot be used for
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/05.utility_type_private_field/
Dprivate_field_check_2.ets17 desc: Private fields of the initial type stay in the utility type but they are not
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/03.class_members/fld/
Dsepmod.ets20 the current class resides in. They are inherited by all subclasses
Dpkgmod.ets20 the current class resides in. They are inherited by all subclasses

12345678910>>...16