Home
last modified time | relevance | path

Searched refs:skip (Results 1 - 25 of 30) sorted by relevance

12

/arkcompiler/runtime_core/libpandabase/utils/
H A Ddebug.h24 inline void PrintStackTrace([[maybe_unused]] int skip = 1) {} in PrintStackTrace()
26 void PrintStackTrace(int skip = 1);
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Ddebug.h25 inline void PrintStackTrace([[maybe_unused]] int skip = 1) {} in PrintStackTrace()
27 void PrintStackTrace(int skip = 1);
/arkcompiler/runtime_core/static_core/tests/cts-generator/
H A Dgenerate-cts.rb58 opts.on('-k', '--skip', 'Skip yaml schema validation')
60 opts.on('--skip-header', 'Do not generate test headers')
77 skip = options['skip']
78 skip_header = options['skip-header']
98 unless skip
108 generator.parse skip
/arkcompiler/runtime_core/tests/cts-generator/
H A Dgenerate-cts.rb58 opts.on('-k', '--skip', 'Skip yaml schema validation')
60 opts.on('--skip-header', 'Do not generate test headers')
77 skip = options['skip']
78 skip_header = options['skip-header']
98 unless skip
108 generator.parse skip
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/
H A Dtest.rb27 @skip = @test[Generator::TEST_SKIP]
37 if !@skip
44 LOG.warn "Skip test '#{@test_name}' generation due to skip property is set"
H A Dcommand.rb25 # skip: Generator::TEST_COMMAND_SKIP
39 @skip = command.key?(Generator::TEST_COMMAND_SKIP) ? command[Generator::TEST_COMMAND_SKIP] : false
44 if @skip
45 LOG.info("Skip test '#{@test_name}' due to \"skip\": true")
H A Dparser.rb40 def parse(skip)
46 if !skip
/arkcompiler/runtime_core/tests/cts-generator/generator/
H A Dtest.rb27 @skip = @test[Generator::TEST_SKIP]
37 if !@skip
44 LOG.warn "Skip test '#{@test_name}' generation due to skip property is set"
H A Dcommand.rb25 # skip: Generator::TEST_COMMAND_SKIP
39 @skip = command.key?(Generator::TEST_COMMAND_SKIP) ? command[Generator::TEST_COMMAND_SKIP] : false
44 if @skip
45 LOG.info("Skip test '#{@test_name}' due to \"skip\": true")
H A Dparser.rb40 def parse(skip)
46 if !skip
/arkcompiler/ets_frontend/ets2panda/ast_verifier/
H A DvariableHasScope.cpp104 bool skip = CheckAstExceptions(varNode); in ScopeEncloseVariable() local
107 if (!skip) { in ScopeEncloseVariable()
116 if (!skip) { in ScopeEncloseVariable()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_resolver.cpp308 bool skip = false; in SqueezeCatchPhiInputs() local
316 skip = true; in SqueezeCatchPhiInputs()
320 skip = true; in SqueezeCatchPhiInputs()
322 if (skip) { in SqueezeCatchPhiInputs()
326 if (!skip) { in SqueezeCatchPhiInputs()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dcombined_pass_visitor.cpp169 auto skip = passList_.end(); in VisitGate() local
171 if (i == skip) { in VisitGate()
177 skip = i; in VisitGate()
185 if (skip == passList_.end()) { in VisitGate()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_resolver.cpp453 bool skip = false; in SqueezeCatchPhiInputs() local
461 skip = true; in SqueezeCatchPhiInputs()
465 skip = true; in SqueezeCatchPhiInputs()
467 if (skip) { in SqueezeCatchPhiInputs()
471 if (!skip) { in SqueezeCatchPhiInputs()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/internal_tests/
H A D__init__.py56 internal_test = pytest.mark.skip(reason="need internal_tests=True option to run")
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Ddev_log.py46 opt = request.config.getoption("dev_log", request.config.getini("dev_log"), skip=True)
/arkcompiler/runtime_core/static_core/tests/irtoc-interpreter-tests/irtoc-tag/
H A Dgenerate-tag.rb61 next if generator.skip?(instr)
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
H A Dtest_shell.py19 # pylint: skip-file
33 pytest.skip("POSIX-only test")
/arkcompiler/ets_frontend/testTs/
H A Drun_testTs.py50 def skip(filepath, flag=False): function
119 if skip(args.file, True):
133 if skip(test_path, True):
147 if skip(test_path):
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Dreg_alloc_verifier.h150 void SetSkip(bool skip) in SetSkip() argument
152 skip_ = skip; in SetSkip()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
H A Dpaoc.cpp493 * `--paoc-skip-until`, `--paoc-compile-until` and `--paoc-methods-from-file` options:
882 std::cerr << " --paoc-skip-until first method to compile, skip all previous\n"; in PrintUsage()
883 std::cerr << " --paoc-compile-until last method to compile, skip all following\n"; in PrintUsage()
900 * Check if needed to skip method, considering 'paoc-skip-until' and 'paoc-compile-until' options
/arkcompiler/runtime_core/libpandabase/os/
H A Dstacktrace.cpp70 pos_ = pos + 1; // skip delimiter in Next()
262 Buf(uintptr_t *buf, size_t skip, size_t capacity) : buf_(buf), skip_(skip), size_(0), capacity_(capacity) {} in Buf() argument
/arkcompiler/runtime_core/static_core/libpandabase/os/
H A Dstacktrace.cpp70 pos_ = pos + 1; // skip delimiter in Next()
262 Buf(uintptr_t *buf, size_t skip, size_t capacity) : buf_(buf), skip_(skip), capacity_(capacity) {} in Buf() argument
/arkcompiler/runtime_core/static_core/tests/irtoc-interpreter-tests/irtoc-tag/generator/
H A Dgenerator.rb59 def skip?(inst)
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcgfunc.cpp339 * but skip the case cmp(op0, 0) in HandleCondbr()
349 bool skip = false; in HandleCondbr() local
353 skip = true; in HandleCondbr()
356 if (!skip && mirConst->IsZero()) { in HandleCondbr()
523 /* func.GetPregTab()->_preg_table[0] is nullptr, so skip it */ in CGFunc()

Completed in 12 milliseconds

12