Home
last modified time | relevance | path

Searched +full:2 +full:nd (Results 1 – 25 of 60) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/09.literals/03.bigint_literals/
Dbigint_func_n.params.yaml25 - 'BigInt.asIntN(32, 0 as byte) // wrong 2nd argument type'
26 - 'BigInt.asIntN(32, 12345) // wrong 2nd argument type'
31 - 'BigInt.asUintN(32, 0 as short) // wrong 2nd argument type'
32 - 'BigInt.asUintN(32, 12345) // wrong 2nd argument type'
/arkcompiler/runtime_core/static_core/irtoc/scripts/
Dgc.irt37 elsif obj_num == 2
103 # - Checks if the 2nd object's card should be marked;
105 # - Otherwise, if 1st and 2nd object's cards are the same (i.e.
106 # - 2nd store addr isn't aligned on a beggining of a card), marks the card and exits.
107 # - Otherwise, marks the 2nd object's card as well as the 1st obj's card.
257 # `mem` here is a pointer to the 2nd slot of the pair
269 PostInterGenerationalBarrier(2)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/06.array_types/
Darray_index.sts17 desc: The first element of the array is stored at the 0th index, 2nd element is stored on 1st index…
21 let x: int[] = [1, 2, 3];
23 assert(x[1 as short] == 2);
25 assert(x[1 as char] == 2);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/src/
Dme_safety_warning.cpp25 return "2nd"; in GetNthStr()
26 case 2: // 2 is third index from 0 in GetNthStr()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/gc/
Dscheduled_gc.sts17 GC.scheduleGcAfterNthAlloc(2, GC.YOUNG_CAUSE);
19 …assert GC.isScheduledGCTriggered() == false : "GC was scheduled before 2nd allocation, current is …
21 …assert GC.isScheduledGCTriggered() == true : "2 allocation already done, but GC has not been trigg…
/arkcompiler/runtime_core/static_core/libziparchive/
DCMakeLists.txt31 # Without this if branch zlib will get built in 2nd stage (issue #1389)
/arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/
Dfunctions.rst63 function multiply(n: number, coeff: number = 2): number {
66 multiply(2) // returns 2*2
67 multiply(2, 3) // returns 2*3
87 sum(1, 2, 3) // returns 6
213 console.log(z()) // output: 2
230 function foo(x: string): void; /* 2nd signature */
236 foo("aa") // ok, 2nd signature is used
Dclasses.rst325 foo(x: string): void; /* 2nd signature */
332 c.foo("aa") // ok, 2nd signature is used
525 constructor(x: string) /* 2nd signature */
531 let c2 = new C("abc") // ok, 2nd signature is used
654 let cc: C[] = [{n: 1, s: "a"}, {n: 2, s: "b"}]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/10.comments/
Dmulti_line_comment.sts43 {return/***/p/***/*/***/2;}
48 /*2*/let /***********************************************
68 /*** 2-nd array element ***/55
77 assert y[0] == 44/*1*/ && y[1] == 55 /*2*/ && x == 0/*3*/
78 assert new C().foo(2) == 4 /*4*/
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_args.h35 uint8 memPairSecondRegSize; /* struct arg requiring two regs, size of 2nd reg */
Dx64_int_regs.def26 * - rdx is used to pass 3rd argument to functions; 2nd return register
32 INT_REG(2 , "BL", "BH", "W", "L", "Q", true, false, true, false, false) //DX
52 INT_REG_ALIAS(DX, 2)
/arkcompiler/ets_frontend/ets2panda/docs/
Dcheatsheet.md19 ./bin/es2panda --extension=sts --output=out.abc --opt-level=2 x.sts
20 ./bin/es2panda --extension=sts --output=etsstdlib.abc --opt-level=2 --gen-stdlib=true
34 if (ArkTS_main_in_place) call ArkTS_main // 2nd step
41 For the 2nd step we just always generate *ETSGLOBAL.main()* function and call after
61 # AOT - 2 steps
78 ./bin/es2panda --extension=sts --output=out.abc --opt-level=2 --gen-stdlib=false /path/to/module/fo…
84 *path/to/build/tools/es2panda/generated/* folder. It has 2 default paths related to stdlib -
129 folder. It has 2 default paths related to stdlib - *std* and *compat*. They're imported
154 ./bin/es2panda --extension=sts --output=out.abc --opt-level=2 --gen-stdlib=false \
171 Have 2 options to form a correct .so for further work with it:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D10_interfaces.rst500 foo(x: string) // 2st method
504 foo(x: string) {/*2nd method body*/}
509 i.foo("aa") // ok, 2nd method is called
522 foo(x: string) // 2st method
D9_classes.rst1512 foo(x: string): void // 2nd signature
1520 c.foo("aa") // ok, call fits 2nd and 3rd signatures
1966 constructor(x: string) // 2nd signature
1973 new C("aa") // ok, fits the 2nd and 3rd signatures
1992 protected constructor(x: string) // protected 2nd signature
2034 2. Mandatory call to ``super([arguments])`` (see :ref:`Explicit Constructor Call`)
2088 2. Call to another same-class constructor ``this([arguments])`` with arguments.
2251 2. After *i*'s immediately enclosing instance with respect to *S* (if available)
2339 // Example of an error case #2
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/10.method_call_expression/01.step_1_selection_of_type_to_use/
Dstep1.params.yaml111 // using super for referring 2nd level superclass
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dldobj.v.64.yaml209 …description: Check that verifier reports an error when the 2nd operand is not a ref to an object (…
247 …description: Check that verifier reports an error when the 2nd operand is not a ref to an object (…
Dstobj.v.64.yaml244 Check that verifier reports error when the 2nd operand is not a ref to an
286 Check that verifier reports error when the 2nd operand is not a ref to an
743 ldai 2
Dstobj.v.obj.yaml213 Check that verifier reports error when the 2nd operand is not a ref to
250 Check that verifier reports error when the 2nd operand is not a ref to
772 ldai 2
863 ldai 2
Dstobj.v.yaml271 …description: Check that verifier reports error when the 2nd register is not a ref to an object (ot…
325 …description: Check that verifier reports error when the 2nd register is not a ref to an object (ot…
787 ldai 2
853 ldai 2
924 ldai 2
Dlda.str.yaml444 ldai %s # 2-nd char
449 movi v2, 2 # index
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dldobj.v.obj.yaml116 …description: Check that verifier reports error when the 2nd operand is not a ref to an object (oth…
352 ldai 2
Dstobj.v.64.yaml128 Check that verifier reports error when the 2nd operand is not a ref to an
407 ldai 2
Dstobj.v.obj.yaml133 Check that verifier reports error when the 2nd operand is not a ref to
451 ldai 2
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
Dlitecg_ir_builder.h79 // 2: 3nd param in IteratefuncIndexMap()
80 cb(std::get<0>(record), std::get<1>(record), std::get<2>(record)); in IteratefuncIndexMap()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dgraph_checker.h306 … (std::cerr << "Binary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr)));
361 … (std::cerr << "Ternary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr)));
363 … (std::cerr << "Ternary instruction 2nd operand type is not a numeric", inst->Dump(&std::cerr)));

123