Home
last modified time | relevance | path

Searched refs:NEXT (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/compiler/
H A Dinterop_intrinsics_opt_test.cpp33 enum BlockPos : uint8_t { PRED = 1U << 0U, LEFT = 1U << 1U, RIGHT = 1U << 2U, NEXT = 1U << 3U, NONE = 0U };
232 if (BlockEnabled(BlockPos::NEXT)) { in BuildGraphChainOfBlocks()
250 ::testing::Values(BlockPos::PRED, BlockPos::LEFT, BlockPos::NEXT, BlockPos::NONE), GetTestName) in PARAM_TEST()
335 if (BlockEnabled(BlockPos::NEXT)) { in BuildGraphTriangleOfBlocks()
351 ::testing::Values(BlockPos::PRED | BlockPos::LEFT | BlockPos::NEXT, BlockPos::PRED | BlockPos::LEFT, in PARAM_TEST()
352 BlockPos::PRED | BlockPos::NEXT, BlockPos::LEFT | BlockPos::NEXT), in PARAM_TEST()
357 if (BlockEnabled(BlockPos::PRED) && BlockEnabled(BlockPos::NEXT)) { in PARAM_TEST()
407 ::testing::Values(BlockPos::PRED | BlockPos::RIGHT | BlockPos::NEXT, BlockPos::PRED | BlockPos::RIGHT, in PARAM_TEST()
408 BlockPos::PRED | BlockPos::NEXT, BlockPo in PARAM_TEST()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dcgbb.h66 #define FOR_BB_INSNS_SAFE(INSN, BLOCK, NEXT) \
67 for (Insn * (INSN) = FIRST_INSN(BLOCK), *(NEXT) = (INSN) ? NEXT_INSN(INSN) : nullptr; (INSN) != nullptr; \
68 (INSN) = (NEXT), (NEXT) = (INSN) ? NEXT_INSN(INSN) : nullptr)
70 #define FOR_BB_INSNS_REV_SAFE(INSN, BLOCK, NEXT) \
71 for (Insn * (INSN) = LAST_INSN(BLOCK), *(NEXT) = (INSN) ? PREV_INSN(INSN) : nullptr; (INSN) != nullptr; \
72 (INSN) = (NEXT), (NEXT) = (INSN) ? PREV_INSN(INSN) : nullptr)
/arkcompiler/ets_runtime/ecmascript/
H A Dasync_generator_helper.cpp28 genObject->SetResumeMode(AsyncGeneratorResumeMode::NEXT); in Next()
H A Dgenerator_helper.cpp31 genObject->SetResumeMode(GeneratorResumeMode::NEXT); in Next()
H A Djs_async_generator_object.h40 NEXT, member in panda::ecmascript::AsyncGeneratorResumeMode
H A Djs_generator_object.h34 NEXT, member in panda::ecmascript::GeneratorResumeMode
/arkcompiler/ets_frontend/ets2panda/compiler/function/
H A DfunctionBuilder.h34 NEXT, member in ark::es2panda::ark::es2panda::compiler::ResumeMode
H A DfunctionBuilder.cpp165 pg_->LoadAccumulatorInt(node, static_cast<int32_t>(ResumeMode::NEXT)); in YieldStar()
174 pg_->LoadAccumulatorInt(node, static_cast<int32_t>(ResumeMode::NEXT)); in YieldStar()
/arkcompiler/ets_frontend/es2panda/compiler/function/
H A DfunctionBuilder.h35 NEXT, member in panda::es2panda::panda::es2panda::compiler::ResumeMode
H A DfunctionBuilder.cpp198 pg_->LoadAccumulatorInt(node, static_cast<int32_t>(ResumeMode::NEXT)); in YieldStar()
207 pg_->LoadAccumulatorInt(node, static_cast<int32_t>(ResumeMode::NEXT)); in YieldStar()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js1937 case e.NEXT:
[all...]

Completed in 37 milliseconds