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/ |
| D | bigint_func_n.params.yaml | 25 - '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/ |
| D | gc.irt | 37 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/ |
| D | array_index.sts | 17 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/ |
| D | me_safety_warning.cpp | 25 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/ |
| D | scheduled_gc.sts | 17 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/ |
| D | CMakeLists.txt | 31 # Without this if branch zlib will get built in 2nd stage (issue #1389)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/tutorial/ |
| D | functions.rst | 63 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
|
| D | classes.rst | 325 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/ |
| D | multi_line_comment.sts | 43 {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/ |
| D | x64_args.h | 35 uint8 memPairSecondRegSize; /* struct arg requiring two regs, size of 2nd reg */
|
| D | x64_int_regs.def | 26 * - 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/ |
| D | cheatsheet.md | 19 ./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/ |
| D | 10_interfaces.rst | 500 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
|
| D | 9_classes.rst | 1512 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/ |
| D | step1.params.yaml | 111 // using super for referring 2nd level superclass
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | ldobj.v.64.yaml | 209 …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 (…
|
| D | stobj.v.64.yaml | 244 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
|
| D | stobj.v.obj.yaml | 213 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
|
| D | stobj.v.yaml | 271 …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
|
| D | lda.str.yaml | 444 ldai %s # 2-nd char 449 movi v2, 2 # index
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | ldobj.v.obj.yaml | 116 …description: Check that verifier reports error when the 2nd operand is not a ref to an object (oth… 352 ldai 2
|
| D | stobj.v.64.yaml | 128 Check that verifier reports error when the 2nd operand is not a ref to an 407 ldai 2
|
| D | stobj.v.obj.yaml | 133 Check that verifier reports error when the 2nd operand is not a ref to 451 ldai 2
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
| D | litecg_ir_builder.h | 79 // 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/ |
| D | graph_checker.h | 306 … (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