Home
last modified time | relevance | path

Searched full:nn (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/compiler/lowering/
Dutil.cpp58 auto doNode = [](ir::AstNode *nn) { in ClearTypesVariablesAndScopes() argument
59 if (nn->IsScopeBearer()) { in ClearTypesVariablesAndScopes()
60 nn->ClearScope(); in ClearTypesVariablesAndScopes()
62 if (nn->IsTyped() && !(nn->IsExpression() && nn->AsExpression()->IsTypeNode())) { in ClearTypesVariablesAndScopes()
63 nn->AsTyped()->SetTsType(nullptr); in ClearTypesVariablesAndScopes()
65 if (nn->IsIdentifier()) { in ClearTypesVariablesAndScopes()
66 nn->AsIdentifier()->SetVariable(nullptr); in ClearTypesVariablesAndScopes()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/arkui/
Ddollar_dollar_01.sts31 let nn = 5
32 increment(nn)
33 assert(nn == 5)
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/
DfunctionTypeToObject.sts17 function nn(x: int, y: int) {}
21 let nnp: (a: int, b: int) => void = nn
DfunctionTypeToObject-expected.txt217 "name": "nn",
241 "name": "nn",
656 "name": "nn",
/arkcompiler/runtime_core/docs/
Daot.md60 -NN-24: PLT InitClass Resolver
61 -NN-16: PLT Class Resolver
62 -NN-08: PLT VirtualCall Resolver
64 -NN: address of handler 0, NN = N * 8
82 -NN: address of handler 0, NN = N * 8
/arkcompiler/runtime_core/static_core/docs/
Daot.md60 -NN-24: PLT InitClass Resolver
61 -NN-16: PLT Class Resolver
62 -NN-08: PLT VirtualCall Resolver
64 -NN: address of handler 0, NN = N * 8
82 -NN: address of handler 0, NN = N * 8
/arkcompiler/runtime_core/libabckit/tests/helpers/
Dhelpers.cpp672 static void FindNamespaceInNamespaces(AbckitCoreNamespace *n, NamespaceAndName *nn) in FindNamespaceInNamespaces() argument
674 g_implI->namespaceEnumerateNamespaces(n, nn, [](AbckitCoreNamespace *n, void *data) { in FindNamespaceInNamespaces()
675 auto nn = static_cast<NamespaceAndName *>(data); in FindNamespaceInNamespaces() local
678 if (currNamespaceNameStr == nn->namespaceName) { in FindNamespaceInNamespaces()
679 nn->foundNamespace = n; in FindNamespaceInNamespaces()
681 FindNamespaceInNamespaces(n, nn); in FindNamespaceInNamespaces()
690 auto nn = static_cast<NamespaceAndName *>(data); in FindNamespaceByNameImpl() local
691 FindNamespaceInNamespaces(n, nn); in FindNamespaceByNameImpl()
696 auto nn = static_cast<NamespaceAndName *>(data); in FindNamespaceByNameImpl() local
699 if (currNamespaceNameStr == nn->namespaceName) { in FindNamespaceByNameImpl()
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/11.function_call_expression/step_1_selection_of_function/
Dstep1.params.yaml22 return "NN"
35 return "NN"
48 return "NN"
63 return "NN"
71 assert foo(new Number()) == "NN"
86 return "NN"
420 return "NN"
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/class_operations/
Dclass_operations.sts53 native static $nn(top: JSValue, qname: String, a0: double, a1: double) : JSValue;
78 let resObj = jsnew.$nn(jsvars.m, ".ExampleClass", 42, 42);
90 let resObj = jsnew.$nn(jsvars.m, ".ExampleClass", 42, 42);
118 let resObj = jsnew.$nn(jsvars.m, ".ExampleClass", 42, 42);
130 let resObj = jsnew.$nn(jsvars.m, ".ExampleClass", 42, 42);
/arkcompiler/runtime_core/static_core/compiler/docs/
Dplt.md41 -NN: address of handler 0, NN = N * 8 |
78 -NN: address of handler 0, NN = N * 8 |
130 -NN: address of handler 0, NN = N * 8 |
/arkcompiler/runtime_core/compiler/docs/
Dplt.md41 -NN: address of handler 0, NN = N * 8 |
78 -NN: address of handler 0, NN = N * 8 |
130 -NN: address of handler 0, NN = N * 8 |
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/01.type_alias_declaration/
Dalias.params.yaml177 type NN = number|null|undefined
179 type TT = [NN, SN]|null|undefined
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/12.union_types/union_types_normalization/
Dnorm.params.yaml31 type NN = number | null
36 type UT = NU | NN | N | NU2 | NN2 | N2 // => Number|null|undefined
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/tests/
Dtest_breaks_props.py141 const nn = [n1, n2];
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/test_intrins/
Dtest_intrins.sts39 native static num$nn(top: JSValue, qname: String, a0: double, a1: double): double;
109 return jscall.num$nn(jsvars.m, ".sum", a, b);
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/
Dstubbuilder.js587 var obj2={"mm":2,"nn":3}; property
595 "nn": 3 property
643 p1.name = "nn";
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_source_text.cpp1429 for (std::string &nn : starNames) { in SetExportName()
1431 …if (nn != "default" && std::find(exportedNames.begin(), exportedNames.end(), nn) == exportedNames.… in SetExportName()
1434 exportedNames.emplace_back(nn); in SetExportName()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_peep.cpp886 Insn *nn = prevInsn.GetNextMachineInsn(); in RemoveInsnAndKeepComment() local
897 DEBUG_ASSERT(nn != nullptr, "nn should not be nullptr"); in RemoveInsnAndKeepComment()
898 nn->SetComment(newComment); in RemoveInsnAndKeepComment()
/arkcompiler/runtime_core/isa/
Disa.yaml65 …of source object. In that case, bNN notation is used, where NN is bit size of result. Therefore, f…
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2nn(e,t){this.flags=e,this.escapedName=t,this.declarations=void 0,this.valueDeclaration=void 0,this… class
/arkcompiler/runtime_core/static_core/isa/
Disa.yaml65 …of source object. In that case, bNN notation is used, where NN is bit size of result. Therefore, f…
/arkcompiler/ets_frontend/testTs/
Dtest-case.patch1439 + for await (const nn of nums) {
1440 + console.log(nn)
1448 + for await (const nn of nums) {
1449 + console.log(nn)
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js17122 let nn;
17130 }(nn || (nn = {}));
17657 class Nn { class
17737 ds(this.buffers, t.buffers, Nn);
18593 return nn;
18625 UniformStorageBuffer: Nn,
21125 return nn;
21157 UniformStorageBuffer: Nn,
46692 … var GO, zO, HO, jO, XO, WO, YO, qO, KO, JO, ZO, QO, $O, tN, eN, iN, sN, nN, rN, oN, aN, lN, hN;
46771 Ml(this, "_lineJoin", nN, this);
[all …]