Home
last modified time | relevance | path

Searched full:parameters (Results 1 – 25 of 142) sorted by relevance

123456

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcall_signature.cpp39 /* 3 : 3 input parameters */ \
43 /* 3 : 3 input parameters */ \
145 // 3 : 3 input parameters in DEF_CALL_SIGNATURE()
148 // 3 : 3 input parameters in DEF_CALL_SIGNATURE()
162 /* 2 : 2 input parameters */ \
166 /* 2 : 2 input parameters */ \
201 // 2 input parameters in DEF_CALL_SIGNATURE()
204 // 2 input parameters in DEF_CALL_SIGNATURE()
215 // 6 : 6 input parameters in DEF_CALL_SIGNATURE()
218 // 6 : 6 input parameters in DEF_CALL_SIGNATURE()
[all …]
Dtest_stubs_signature.cpp21 // 7 : 7 input parameters in DEF_CALL_SIGNATURE()
25 std::array<VariableType, 8> params = { // 8 : 8 input parameters in DEF_CALL_SIGNATURE()
41 // 7 : 7 input parameters in DEF_CALL_SIGNATURE()
45 std::array<VariableType, 8> params = { // 8 : 8 input parameters in DEF_CALL_SIGNATURE()
61 // 7 : 7 input parameters in DEF_CALL_SIGNATURE()
65 std::array<VariableType, 8> params = { // 8 : 8 input parameters in DEF_CALL_SIGNATURE()
81 // 7 : 7 input parameters in DEF_CALL_SIGNATURE()
85 std::array<VariableType, 8> params = { // 8 : 8 input parameters in DEF_CALL_SIGNATURE()
101 // 7 : 7 input parameters in DEF_CALL_SIGNATURE()
105 std::array<VariableType, 8> params = { // 8 : 8 input parameters in DEF_CALL_SIGNATURE()
[all …]
/arkcompiler/ets_frontend/ts2panda/templates/
DbuiltinsMap.ts.erb71 % parameters = ""
75 throw new Error("<%= i-2%> parameters must be Imm <" + ins.toString() + ">");
76 % parameters += ", <ir.Imm>operands[" + (i-2).to_s + "]"
80 throw new Error("<%= i-2%> parameters must be VReg <" + ins.toString() + ">");
81 % parameters += ", <ir.VReg>operands[" + (i-2).to_s + "]"
85 throw new Error("<%= i-2%> parameters must be string <" + ins.toString() + ">");
86 % parameters += ", <string>operands[" + (i-2).to_s + "]"
90 throw new Error("<%= i-2%> parameters must be string <" + ins.toString() + ">");
91 % parameters += ", <string>operands[" + (i-2).to_s + "]"
94 % raise "Unknown parameters type"
[all …]
/arkcompiler/runtime_core/docs/bc_verification/
Dtypes_n_values.md12 Types are formed by some `Sort`, an uniq identifier of the type family, and particular parameters.
14 `Sort` + `parameters` = `Type`.
19 It defines subtyping relation of types in parameters in subtyping relation of parameterized
26 - Types are denoted by sort literal and parameters in parenthesis. For instance: `Array(~i8())`.
27 - Type parameters are just types prepended by variance sign, `-` - contrvariant, `+` - variant, `~`…
51 ## How to read notation of type parameters and to determine subtyping relation?
55 … `T(+i16()) <: T(+i8())`? Let's see, according to `+` (covariance), relation of types of parameters
59 Let's check `T(+i8()) <: T(+i16())`. So we have `i8() <: i16()` for the first parameters which is i…
Dabsint_checks.md3 ### Physical compatibility of arguments to instructions and actual parameters to methods
19 Checks of compatibility of objects in arguments to instructions and actual parameters to methods.
/arkcompiler/runtime_core/libpandabase/
DREADME.md40 - 3 parameters: argument name, default value, description.
41 - 4 parameters for single list: argument name, default value, description, delimiter.
42 - 5 parameters for integer args: argument name, default value, description, min value, max value
43 - PandArgCompound accepts three parameters: argument name, description and list of sub-arguments
141 - string and list arguments may accept no parameters
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DinterfaceWithNonCompatibleIndexInfos-expected.txt11 "parameters": {
66 "parameters": {
Dmember_expression_71-expected.txt17 "parameters": {
72 "parameters": {
Dmember_expression_70-expected.txt17 "parameters": {
72 "parameters": {
DinterfaceAssignment6-expected.txt11 "parameters": {
66 "parameters": {
Dmember_expression_73-expected.txt11 "parameters": {
66 "parameters": {
Dmember_expression_72-expected.txt11 "parameters": {
66 "parameters": {
DinterfaceAssignment8-expected.txt11 "parameters": {
110 "parameters": {
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-func-param4-expected.txt1 SyntaxError: 'get' and 'set' accessors cannot declare 'this' parameters [test-func-param4.ts:18:17]
/arkcompiler/ets_frontend/ts2panda/src/
DsyntaxCheckerForStrcitMode.ts142 let parameters: ts.NodeArray<ts.ParameterDeclaration> = decl.parameters;
144 for (let i = 0; i < parameters.length; i++) {
145 let param = parameters[i];
/arkcompiler/ets_runtime/test/perform/string/
Dstring.js61 print("string split number of input parameters is 2 : " + time3);
72 print("string split number of input parameters is 1 : " + time3);
119 print("string indexOf number of input parameters is 2 : " + time3);
130 print("string slice number of input parameters is 1 : " + time3);
141 print("string slice number of input parameters is 2 : " + time3);
196 print("string substr the two parameters are adjacent numbers : " + time3);
218 print("string substr number of input parameters is 2 : " + time3);
/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts536 parameters: Array<number> = new Array<number>(); property in FunctionType
609 if (node.parameters) {
610 for (let parameter of node.parameters) {
614 this.parameters.push(typeIndex);
644 this.transferType2Literal(this.parameters[0], funcTypeLiterals);
645 funcTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.parameters.length - 1));
646 for (let i = 1; i < this.parameters.length; i++) { // normal parameter types
647 this.transferType2Literal(this.parameters[i], funcTypeLiterals);
651 funcTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.parameters.length));
652 for (let i = 0; i < this.parameters.length; i++) {
[all …]
/arkcompiler/runtime_core/verification/type/
Dtype_system.h49 3. lazy computation of parameters subtyping
52 7. Check parameters variance of types from type family (same sort + same arity),
53 upon new type addition. Or separate parameters variance from parameters, make
/arkcompiler/runtime_core/libpandabase/mem/
Dgc_barrier.h78 * Runtime should provide these parameters:
94 * Runtime should provide these parameters:
119 * Runtime should provide these parameters:
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp340 if (size == 3) { // the number of parameters is 3 in HandleWithUint8()
360 if (size == 3) { // the number of parameters is 3 in HandleWithInt8()
380 if (size == 3) { // the number of parameters is 3 in HandleWithUint16()
400 if (size == 3) { // the number of parameters is 3 in HandleWithInt16()
420 if (size == 3) { // the number of parameters is 3 in HandleWithUint32()
440 if (size == 3) { // the number of parameters is 3 in HandleWithInt32()
462 if (size == 3) { // the number of parameters is 3 in HandleWithBigInt64()
485 if (size == 3) { // the number of parameters is 3 in HandleWithBigUint64()
/arkcompiler/runtime_core/compiler/tests/
Dreg_alloc_common_test.cpp123 * - Parameters [arg0 - arg6] are placed in the registers [r1-r7] in TestParametersLocations()
124 * - All other Parameters are placed in stack slots [slot0 - ...] in TestParametersLocations()
132 * - If arg1, arg2 are 32-bit Parameters, they are placed in the [r2-r3] registers in TestParametersLocations()
133 * - All other Parameters are placed in stack slots [slot0 - ...] in TestParametersLocations()
/arkcompiler/runtime_core/verification/
DTODO.txt23 7. done Origins: at method entry, give different @start origins to parameters!
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dcall.short.yaml163 # Template parameters:
167 # 4th - call.short parameters
262 … description: Check 'call.short' when arguments of function and instruction parameters mismatch.
273 # Template parameters:
276 # 3rd - call.short parameters
284 description: Mismatch function parameters.
287 description: Mismatch function parameters.
316 # Template parameters:
320 # 4 - call.short parameters
1276 description: Compiler should check amount of `call.short` argument and function parameters.
/arkcompiler/runtime_core/docs/
Ddeoptimization.md67 Both bridges have following parameters:
90 `InvokeInterpreter` has next parameters:
/arkcompiler/runtime_core/verification/models/typesystem/
Dark_typesystem.als80 // type cannot present in its own parameters
113 all idx : sig1.inds // and all parameters in subtyping relation

123456