Searched refs:argsCount (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/test/unit/ |
H A D | ast_dumper_test.cpp | 40 : src {testSrc}, argsList {std::move(testArgsList)}, argsCount {testArgsCount}, fileName {testFileName} 47 int argsCount; member 122 static ark::pandasm::Program *GetProgram(std::string_view src, const char **argsList, int argsCount, in GetProgram() argument 126 if (!options->Parse(argsCount, argsList)) { in GetProgram() 155 std::unique_ptr<ark::pandasm::Program> {GetProgram(param.src, &argsListPtr, param.argsCount, param.fileName)}; in TEST_P()
|
/arkcompiler/ets_runtime/ecmascript/js_vm/ |
H A D | main.cpp | 79 uint32_t argsCount = runtimeInfo->GetArgsNumber(); in AssertEqual() local 80 if (argsCount < 2) { // 2: at least have two arguments in AssertEqual() 104 uint32_t argsCount = runtimeInfo->GetArgsNumber(); in AssertTrue() local 105 if (argsCount < 1) { in AssertTrue()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
H A D | inst_builder-inl.h | 103 size_t argsCount = Builder()->GetMethodArgumentsCount(methodId_); in SetCallArgs() local 104 size_t totalArgsCount = hiddenArgsCount + argsCount + additionalArgsCount; in SetCallArgs() 134 for (size_t i = 0; i < argsCount; startReg++, i++) { in SetCallArgs() 139 for (size_t i = 0; i < argsCount; i++) { in SetCallArgs() 1261 size_t argsCount = GetMethodArgumentsCount(methodId); in BuildMultiDimensionalArrayObject() local 1266 inst->ReserveInputs(ONE_FOR_OBJECT + argsCount + ONE_FOR_SSTATE); in BuildMultiDimensionalArrayObject() 1267 inst->AllocateInputTypes(GetGraph()->GetAllocator(), ONE_FOR_OBJECT + argsCount + ONE_FOR_SSTATE); in BuildMultiDimensionalArrayObject() 1275 for (size_t i = 0; i < argsCount; startReg++, i++) { in BuildMultiDimensionalArrayObject() 1282 for (size_t i = 0; i < argsCount; i++) { in BuildMultiDimensionalArrayObject() 1309 size_t argsCount in BuildInitObjectMultiDimensionalArray() local 1340 size_t argsCount = GetMethodArgumentsCount(methodId); BuildCallStaticForInitObject() local 1370 size_t argsCount = GetMethodArgumentsCount(ctorMethodId); BuildInitString() local 1421 size_t argsCount = GetMethodArgumentsCount(methodId); BuildInitObject() local [all...] |
/arkcompiler/runtime_core/static_core/irtoc/backend/ |
H A D | function.h | 170 void SetArgsCount(size_t argsCount) in SetArgsCount() argument 172 argsCount_ = argsCount; in SetArgsCount()
|
/arkcompiler/runtime_core/static_core/compiler/tests/aarch64/ |
H A D | codegen_test.cpp | 55 void BuildGraphSaveOnlyLiveRegisters(int argsCount); 214 void CodegenCallerSavedRegistersTest::BuildGraphSaveOnlyLiveRegisters(int argsCount) in BuildGraphSaveOnlyLiveRegisters() argument 218 for (int i = 0; i < argsCount; i++) { in BuildGraphSaveOnlyLiveRegisters() 221 for (int i = 0; i < argsCount; i++) { in BuildGraphSaveOnlyLiveRegisters() 222 PARAMETER(i + argsCount, i + argsCount).f64(); in BuildGraphSaveOnlyLiveRegisters()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 2889 const uint32_t argsCount = args->GetLength(); 2890 const uint32_t size = preArgsSize + argsCount; 2900 for (uint32_t i = 0; i < argsCount; ++i) { 2994 const uint32_t argsCount = args->GetLength(); 2995 uint32_t size = preArgsSize + argsCount; 3019 for (uint32_t i = 0; i < argsCount; ++i) { 3023 for (uint32_t i = 0; i < argsCount; ++i) {
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_sample.cpp | 811 uint32_t argsCount = runtimeInfo->GetArgsNumber(); in HWTEST_F_L0() 813 for (uint32_t i = 0; i < argsCount; ++i) { in HWTEST_F_L0() 843 uint32_t argsCount = runtimeInfo->GetArgsNumber(); in AddFunc() local 845 for (uint32_t i = 0; i < argsCount; ++i) { in AddFunc() 864 uint32_t argsCount = runtimeInfo->GetArgsNumber(); in AddProxyFunc() local 867 if (argsCount != defaultArgsCount) { in AddProxyFunc()
|
Completed in 18 milliseconds