Home
last modified time | relevance | path

Searched refs:st (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DobjectSpread.ts383 function conditionalSpreadString(st: string): { x: string, y: number } {
399 AssertType(o = { ...o, ...st && { x: st } }, "{ x: string; y: number; }");
401 AssertType({ ...o, ...st && { x: st } }, "{ x: string; y: number; }");
406 ...st && { x: st
407 AssertType(st && { x: st }, "union");
409 AssertType(st, "string");
411 AssertType({ x: st }, "{ x: string; }");
415 AssertType(st, "string");
418 let o2 = { ...st && { x: st }
421 AssertType({ ...st && { x: st }}, "{ x?: union; }");
[all …]
/arkcompiler/runtime_core/libpandabase/tests/
Darena_allocator_test.cpp381 ArenaDeque<uint32_t> st(aa.Adapter()); variable
388 st.push_back(rand() % MAX_VAL);
392 ASSERT_EQ(st.size(), SIZE);
397 for (auto t_it = st.cbegin(); t_it != st.cend(); ++t_it, ++i) {
402 st.resize(HALF_SIZE);
405 ASSERT_EQ(st.size(), HALF_SIZE);
410 for (auto t_it = st.cbegin(); t_it != st.cend(); ++t_it, ++i) {
415 st.resize(DOUBLE_SIZE, rand() % MAX_VAL);
419 auto it = st.cbegin();
423 for (uint32_t value = rand() % MAX_VAL; it != st.cend(); ++it, ++i) {
[all …]
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dfile.h97 struct stat st { in GetFileSize() struct
99 int r = fstat(fd_, &st); in GetFileSize()
101 struct stat64 st { in GetFileSize()
103 int r = fstat64(fd_, &st); in GetFileSize()
106 return {static_cast<size_t>(st.st_size)}; in GetFileSize()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_base.cpp75 RegAllocStat st(GetGraph()->GetAnalysis<LivenessAnalyzer>().GetLifeIntervals()); in RunImpl() local
76 …COMPILER_LOG(INFO, REGALLOC) << "RegAllocated " << GetPassName() << " reg " << st.GetRegCount() <<… in RunImpl()
77 … << st.GetVRegCount() << " slots " << st.GetSlotCount() << " vslots " in RunImpl()
78 << st.GetVSlotCount(); in RunImpl()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dfile.h89 struct _stat64 st { in GetFileSize() struct
91 auto r = _fstat64(fd_, &st); in GetFileSize()
93 return {static_cast<size_t>(st.st_size)}; in GetFileSize()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dearly_elimination.cpp487 ChunkStack<GateRef> st(chunk_); in GetGates() local
489 st.push(node->gate); in GetGates()
491 while (!st.empty()) { in GetGates()
492 gates.emplace_back(st.top()); in GetGates()
493 st.pop(); in GetGates()
Dcircuit_ir_specification.md53 * The 31st bit is used to distinguish between MIR type and TS type, `0` means TS type, `1` means MI…
61 * In the case of MIR type, the 1st bit in GateType is used to indicate whether there are output val…
/arkcompiler/runtime_core/libpandabase/mem/
Dalloc_tracker.cpp53 static size_t CalcHash(const std::vector<uintptr_t> &st) in CalcHash() argument
57 for (uintptr_t addr : st) { in CalcHash()
/arkcompiler/ets_frontend/ts2panda/src/
Ddebuginfo.ts100 private st = ""; // signature type property in VariableDebugInfo
111 this.st = signatureType;
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2085.pa34 # Check that verifier reports an error when the 1st operand is not a ref to an object (other than…
/arkcompiler/runtime_core/tests/regression/
Dstack-4-params.pa81 lda.str "1-st paramer fail!"
Dstack-9-params.pa156 lda.str "1-st paramer fail!"
/arkcompiler/runtime_core/compiler/docs/
Dreg_alloc_graph_coloring_doc.md50st phase, but now on “Full”-busy bitset, to try to satisfy neighbor bias preferences by tying to i…
/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md157 // 1st step: resolve `int max(int, int)`
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2st(t.expression);return 211===n.kind||212===n.kind?t:void 0}return 211===t.kind||224===t.kind||212… function
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js476 …P, O, N, L, F, V, k, U, G, z, H, j, X, W, Y, q, K, J, Z, Q, $, tt, et, it, st, nt, rt, ot, at, lt,…
499 i(this, "bulletPropM", st, this);
806 }), st = e(G.prototype, "bulletPropM", [ B ], {
7345 return st(this.ownerDocument || this, this, t);
7904 function st(t, e, i) {
7918 for (var u = 0; u < c; u++) s.setAttributeNode(st(t, l.item(u), !0));
7927 s.appendChild(st(t, _, i));
8809 st || (st = "undefined" == typeof Proxy ? {} : new Proxy(t, {
8815 return st;
9819 let st;
[all …]