Home
last modified time | relevance | path

Searched full:its (Results 1 – 25 of 660) sorted by relevance

12345678910>>...27

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/05.field_declarations/
Dinheritance_fields_with_same_name.sts17 desc: A class inherits fields with the same name from its direct superclass and superinterfaces.
18 … more than one field with the same name, either from its superclass and superinterfaces or from it…
Dfields_inheritance_from_superclass.sts17 desc: A class inherits from its direct superclass.
18 assert: A class inherits from its direct superclass and direct superinterfaces all non-private fiel…
Dfields_inheritance_from_superinterface.sts17 desc: A class inherits fкom its direct superinterface.
18 assert: A class inherits fom its direct superclass and direct superinterfaces all non-private field…
Dfields_inheritance_from_superclass_and_superinterface.sts17 desc: A class inherits from its direct superclass and superinterface.
18 assert: A class inherits from its direct superclass and direct superinterfaces all non-private fiel…
Dreference_to_inheritance_fields_with_same_name.sts17 desc: Refer to inherits field with the same name from its direct superclass and superinterfaces.
18 assert: However, any attempt within the body of the class to refer to any such field by its simple …
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/04.class_implementation_clause/
Doverride_default_method.sts18 …ass; if not, the default method is typically inherited and its behavior is as specified by its def…
Ddefault_method.sts18 …ass; if not, the default method is typically inherited and its behavior is as specified by its def…
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md129 This state has two possible transitions (branches) based on its input value.
142 This state has multiple possible transitions (branches) based on its input value.
308 * **FNEG**: returns the negation of its floating-point operand.
321 * **ADD**: returns the sum of its two integer operands.
322 * **SUB**: returns the difference of its two integer operands. It is used to implement the "-" unar…
323 * **MUL**: returns the product of its two integer operands.
325 * **SDIV**: returns the signed quotient of its two integer operands.
326 * **SREM**: returns the remainder from the signed division of its two integer operands.
327 * **UDIV**: returns the unsigned quotient of its two integer operands.
328 * **UREM**: returns the remainder from the unsigned division of its two integer operands.
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D1_intro.rst77 of its resources to, or importing from other modules.
129 power from |TS| and its predecessor JavaScript, and the static
131 syntax style similar to that of those languages, and some of its important
143 Like its predecessors, |LANG| is a relatively high-level language. It means
154 The |LANG| ecosystem includes the language along with its compiler,
220 - Is comprised of an abstract symbol (*nonterminal*) as its left-hand side,
221 and a sequence of one or more *nonterminal* and *terminal* symbols as its
416 that can hold values of type ``T`` and its derived types.
430 that name---can be accessed or referred to by its simple name without
479 abstract symbol (nonterminal) as its left-hand side, and a sequence
[all …]
/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dcoroutine_manager.h26 /// @brief describes the set of adjustable parameters for CoroutineManager and its descendants init…
79 …* It can be either (the bytecode method, its arguments and the completion event instance to hold t…
80 …* value) or (a native function and its parameter). See Coroutine::EntrypointInfo for details. If t…
114 …* @brief Remove coroutine from all internal structures, notify waiters about its completion, corre…
115 * delete coroutine and free its resources
147 * The program EP will be invoked within its context.
150 /// Delete the main coroutine instance and free its resources
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/10.inheritance/
Dinheritance_abstract_methods_without.sts18its direct superclass and direct superinterfaces all abstract and default methods m for which all …
Dinheritance_abstract_methods_that_not_member.sts18its direct superclass and direct superinterfaces all abstract and default methods m for which all …
Dinheritance_abstract_methods.sts18its direct superclass and direct superinterfaces all abstract and default methods m for which all …
/arkcompiler/runtime_core/static_core/compiler/docs/
Daot_resolve_string.md3 To get string literal by its identifier application has to perform special runtime call. To improve…
27 …-roots-limit` controls how many time the same string should be resolved before its pointer will be
47 String pointers stored inside PLT-slots have to be treated as GC-roots to prevent its scavenge in c…
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md3 To get string literal by its identifier application has to perform special runtime call. To improve…
27 …-roots-limit` controls how many time the same string should be resolved before its pointer will be
47 String pointers stored inside PLT-slots have to be treated as GC-roots to prevent its scavenge in c…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/01.partial_utility_type/
Dpartial_getter_and_setter.sts20 …Partial<T> variables. Object literal has its own built-in getters and setters to modify its variab…
Dpartial_getter_and_setter_int.sts20 …Partial<T> variables. Object literal has its own built-in getters and setters to modify its variab…
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_override-expected.txt1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…
Dtest_override7-expected.txt1 SyntaxError: This member cannot have an 'override' modifier because its containing class does not e…
Dtest-class-constructor15-expected.txt1 SyntaxError: A constructor cannot contain a super call when its class extends null. [test-class-con…
Dtest_import_type2-expected.txt1 SyntaxError: The type modifier cannot be used on a named import when 'import type' is used on its i…
Dtest_export_type-expected.txt1 SyntaxError: The type modifier cannot be used on a named export when 'export type' is used on its e…
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler_queue_aged_counter_priority.h26 * but it sorts the methods by its aged hotness counters.
56 // Thus it is negative and let's compare its absolute value with death_counter_value_ in UpdateCounterAndCheck()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dfunctions.rst23 A function declaration introduces a named function by specifying its name,
132 Calling a function actually leads to the execution of its body, while
200 To capture the context, an inner function forms a closure of its environment.
201 The closure allows accessing the inner function from the outside of its own
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/04.literal_types/
Dclass_literal_type.params.yaml82 Initialize class field of literal type using its supertype string
139 Class method return type is compatible to its supertype
157 Class method return type is not compatible to its subtype

12345678910>>...27