Home
last modified time | relevance | path

Searched refs:finish (Results 1 - 12 of 12) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/include/
H A Dhistogram-inl.h27 SimpleHistogram<Value>::SimpleHistogram(ForwardIterator start, ForwardIterator finish, helpers::ValueType typeOfValue) in SimpleHistogram() argument
30 for (auto it = start; it != finish; ++it) { in SimpleHistogram()
62 Histogram<Value>::Histogram(ForwardIterator start, ForwardIterator finish, helpers::ValueType typeOfValue) in Histogram() argument
65 for (auto it = start; it != finish; ++it) { in Histogram()
H A Dhistogram.h39 * @brief Add all element to statistics at the half-interval from @param start to @param finish
41 * @param finish end of values ​​not inclusive
44 SimpleHistogram(ForwardIterator start, ForwardIterator finish,
120 * @brief Add all element to statistics at the half-interval from @param start to @param finish
122 * @param finish end of values ​​not inclusive
125 Histogram(ForwardIterator start, ForwardIterator finish,
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Drun.py105 timer_unit.finish()
109 timer_suite.finish()
H A Dhelpers.py176 def finish(self) -> None: member in Timer
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Dtest_base.py84 finish = datetime.now(pytz.UTC)
85 self.time = (finish - start).total_seconds()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
H A Dmain.py74 finish = datetime.now(pytz.UTC)
75 Log.default(logger, f"Runner has been working for {round((finish-start).total_seconds())} sec")
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Danalysis.cpp860 bool FindInThisBlock(Inst *currInst, Inst *finish) in FindInThisBlock() argument
862 while (currInst != finish) { in FindInThisBlock()
879 Inst *finish = isSameBlock ? domInst : nullptr; in FindInstBetween() local
880 if (FindInThisBlock<T>(currInst, finish)) { in FindInstBetween()
907 Inst *finish = isSameBlock ? domInst : nullptr; in HasSaveStateBetween() local
908 if (FindInThisBlock<T>(currInst, finish)) { in HasSaveStateBetween()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_array_stub_builder.cpp672 Label finish(env); in Filter()
674 BRANCH(Int32LessThan(*i, len), &callRT, &finish); in Filter()
684 Bind(&finish); in Filter()
1789 Label finish(env); in Reduce()
1791 BRANCH(Int32LessThan(*k, *thisLen), &callRT, &finish); in Reduce()
1796 Jump(&finish); in Reduce()
1798 Bind(&finish); in Reduce()
H A Dbuiltins_string_stub_builder.cpp1025 Label finish(env); in Slice()
1033 Jump(&finish); in Slice()
1043 Jump(&finish); in Slice()
1045 Bind(&finish); in Slice()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp1150 bool finish = true; in GenerateCompareWithZeroInstruction() local
1206 finish = false; in GenerateCompareWithZeroInstruction()
1209 return finish; in GenerateCompareWithZeroInstruction()
1237 bool finish = GenerateCompareWithZeroInstruction(jmpOp, cmpOp, is64Bits, primType, targetOpnd, *opnd0); in SelectCondGoto() local
1238 if (finish) { in SelectCondGoto()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dtyped_native_inline_lowering.cpp3438 Label finish(&builder_); in LowerArrayMap()
3487 BRANCH_CIR(builder_.Int64LessThan(*i, length), &loopEnd, &finish); in LowerArrayMap()
3493 builder_.Bind(&finish); in LowerArrayMap()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js9178 3660: "You are explicitly specifying `undefined` type to cc property \"%s\" of cc class \"%s\".\nIs this intended? If not, this may indicate a circular reference.\nFor example:\n\n \n// foo.ts\nimport { _decorator } from 'cc';\nimport { Bar } from './bar'; // Given that './bar' also reference 'foo.ts'.\n // When importing './bar', execution of './bar' is hung on to wait execution of 'foo.ts',\n // the `Bar` imported here is `undefined` until './bar' finish its execution.\n // It leads to that\n@_decorator.ccclass // ↓\nexport class Foo { // ↓\n @_decorator.type(Bar) // → is equivalent to `@_decorator.type(undefined)`\n public bar: Bar; // To eliminate this error, either:\n // - Refactor your module structure(recommended), or\n // - specify the type as cc class name: `@_decorator.type('Bar'/* or any name you specified for `Bar` */)`\n}",
[all...]

Completed in 60 milliseconds