/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | objectSpread.ts | 383 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/ |
D | arena_allocator_test.cpp | 381 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/ |
D | file.h | 97 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/ |
D | reg_alloc_base.cpp | 75 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/ |
D | file.h | 89 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/ |
D | early_elimination.cpp | 487 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()
|
D | circuit_ir_specification.md | 53 * 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/ |
D | alloc_tracker.cpp | 53 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/ |
D | debuginfo.ts | 100 private st = ""; // signature type property in VariableDebugInfo 111 this.st = signatureType;
|
/arkcompiler/runtime_core/tests/verifier-tests/ |
D | bug_2085.pa | 34 # Check that verifier reports an error when the 1st operand is not a ref to an object (other than…
|
/arkcompiler/runtime_core/tests/regression/ |
D | stack-4-params.pa | 81 lda.str "1-st paramer fail!"
|
D | stack-9-params.pa | 156 lda.str "1-st paramer fail!"
|
/arkcompiler/runtime_core/compiler/docs/ |
D | reg_alloc_graph_coloring_doc.md | 50 …st phase, but now on “Full”-busy bitset, to try to satisfy neighbor bias preferences by tying to i…
|
/arkcompiler/runtime_core/docs/ |
D | runtime-compiled_code-interaction.md | 157 // 1st step: resolve `int max(int, int)`
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …st(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/ |
D | cocos_worker_test.js | 476 …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 …]
|