Home
last modified time | relevance | path

Searched full:dec (Results 1 – 25 of 185) sorted by relevance

12345678

/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/decorators/
Dtest-ts-decorators-18.ts17 function Dec(v: string) { function
26 @Dec('prop1')
27 @Dec('prop')
30 @Dec("prop2")
33 @Dec("prop3")
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_decorator9.ts17 declare function dec<T>(target: T): T; function
20 @dec
22 @dec
Dtest_decorator.ts28 @dec ["1"]() { }
29 @dec.dec ["h"]() { }
Dtest_decorator3.ts19 @dec set baz(a) { };
20 @dec get baz() { };
Dtest-class-auto-accessor-7.ts17 function dec(target:any, prop:any) { function
21 @dec
Dtest_decorator1.ts17 function foo(@dec a) { };
Dtest_decorator5.ts18 @dec constructor() { };
Dtest_decorator4.ts18 @dec a();
Dtest_decorator6.ts18 @dec [a: number]: string;
/arkcompiler/runtime_core/libpandabase/mem/
Dmalloc_mem_pool-inl.h41 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl()
57 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << size_for_buff in AllocArenaImpl()
65 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << arena->GetSize() in FreeArenaImpl()
77 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl()
80 …LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = "… in AllocPoolImpl()
88 …LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " <… in FreePoolImpl()
Dmmap_mem_pool-inl.h184 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl()
195 …LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << pool_for_arena.GetSize… in AllocArenaImpl()
208 …LOG_MMAP_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << size << " at addr = " <<… in FreeArenaImpl()
224 << std::dec << compiler_space_current_size_; in AllocRawMemCompilerImpl()
238 << std::dec << internal_space_current_size_; in AllocRawMemInternalImpl()
252 << std::dec << code_space_current_size_; in AllocRawMemCodeImpl()
259 … LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(type) << " - " << std::dec in AllocRawMemObjectImpl()
401 …LOG_MMAP_MEM_POOL(DEBUG) << "Freed " << std::dec << size << " memory for " << SpaceTypeToString(po… in FreePoolUnsafe()
408 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl()
411 LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << pool.GetSize() in AllocPoolImpl()
[all …]
/arkcompiler/toolchain/tooling/dynamic/utils/
Dutils.cpp58 const int dec = 10; in StrToUInt() local
60 *result = std::strtoul(content, &endPtr, dec); in StrToUInt()
69 const int dec = 10; in StrToInt32() local
71 long long num = std::strtoll(str.c_str(), &endPtr, dec); in StrToInt32()
81 const int dec = 10; in StrToInt32() local
83 long long num = std::strtoll(str.c_str(), &endPtr, dec); in StrToInt32()
/arkcompiler/runtime_core/static_core/libpandabase/mem/
Dmalloc_mem_pool-inl.h43 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl()
59 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << sizeForBuff in AllocArenaImpl()
70 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << arena->GetSize() in FreeArenaImpl()
83 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl()
86 …LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = "… in AllocPoolImpl()
98 …LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " <… in FreePoolImpl()
/arkcompiler/ets_frontend/ets2panda/test/parser/ts/
Dtest_decorator3.ts19 @dec set baz(a) { };
20 @dec get baz() { };
/arkcompiler/ets_runtime/test/deopttest/
DBUILD.gn21 "dec",
39 "dec",
/arkcompiler/ets_runtime/test/aottest/unaryop_special_value/
Dunaryop_special_value.ts45 // dec op
46 print("====== dec ======");
/arkcompiler/runtime_core/static_core/verification/util/tests/
Denvironment.cpp65 …static const auto DEC = BOOL.OfCharset("0123456789"); // NOLINT(readability-static-accessed-throu… in EnvOptions() local
66 …static const auto HEX = DEC.OfString("0x") >> DEC; // NOLINT(readability-static-accessed-throu… in EnvOptions()
76 static const auto NUM = HEX | DEC |= NUM_HANDLER; in EnvOptions()
/arkcompiler/ets_runtime/ecmascript/
Ddump.cpp485 os << " <TaggedArray[" << std::dec << len << "]>\n"; in DumpArrayClass()
500 os << " <MutantTaggedArray[" << std::dec << len << "]>\n"; in DumpMutantTaggedArray()
513 os << " <COWMutantTaggedArray[" << std::dec << len << "]>\n"; in DumpCOWMutantTaggedArray()
526 os << " <ConstantPool[" << std::dec << len << "]>\n"; in DumpConstantPoolClass()
591 os << " Order: " << std::dec << attr.GetOffset(); in DumpAttr()
592 os << " SortedIndex: " << std::dec << attr.GetSortedIndex(); in DumpAttr()
594 os << " Order: " << std::dec << attr.GetDictionaryOrder(); in DumpAttr()
659 os << "| NumberOfProps :" << std::dec << jshclass->NumberOfProps(); in DumpHClass()
660 os << "| InlinedProperties :" << std::dec << jshclass->GetInlinedProperties(); in DumpHClass()
1327 …ft << std::setw(DUMP_TYPE_OFFSET) << "[Int] : " << std::hex << "0x" << GetInt() << std::dec << " (" in DumpTaggedValue()
[all …]
/arkcompiler/runtime_core/libabckit/tests/ut/ir_core/phi/
Dphi.cpp81 AbckitInst *dec = nullptr; in TransformIR() local
83 dec = g_dynG->iCreateSub2(graph, param1, param0); in TransformIR()
85 dec = g_statG->iCreateSub(graph, param0, param1); in TransformIR()
87 g_implG->bbAddInstBack(trueBB, dec); in TransformIR()
103 AbckitInst *phi = g_implG->bbCreatePhi(retBB, 2, dec, inc); in TransformIR()
/arkcompiler/runtime_core/static_core/runtime/mem/
Dtlab.cpp31 …CATOR(DEBUG) << "Construct a new TLAB at addr " << std::hex << address << " with size " << std::dec in TLAB()
42 …OR(DEBUG) << "Fill a TLAB with buffer at addr " << std::hex << address << " with size " << std::dec in Fill()
48 …OR(DEBUG) << "Destroy a TLAB at addr " << std::hex << memoryStartAddr_ << " with size " << std::dec in ~TLAB()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/03.object_literal_of_record_type/
Dre_n.params.yaml136 "10": "Dec",
143 "10": "Dec",
151 "10": "Dec",
/arkcompiler/ets_runtime/test/aottest/dec/
DBUILD.gn16 host_aot_test_action("dec") {
/arkcompiler/ets_runtime/test/deopttest/dec/
DBUILD.gn16 host_aot_test_action("dec") {
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/
Dtest_decorator5.ts18 /* @@ label */@dec constructor() { };
Dtest_decorator1.ts17 function foo(/* @@ label */@dec a) { };

12345678