/arkcompiler/runtime_core/assembler/tests/ |
D | assembler_parser_test.cpp | 42 Parser p; variable 64 Parser p; variable 87 Parser p; variable 104 Parser p; variable 121 Parser p; variable 141 Parser p; variable 161 Parser p; variable 178 Parser p; variable 204 panda::pandasm::Parser p; variable 226 Parser p; variable [all …]
|
D | parser_test.cpp | 28 Parser p; in TEST() local 45 Parser p; in TEST() local 62 Parser p; in TEST() local 73 Parser p; in TEST() local 84 Parser p; in TEST() local 100 Parser p; in TEST() local 116 Parser p; in TEST() local 127 Parser p; in TEST() local 138 Parser p; in TEST() local 158 Parser p; in TEST() local [all …]
|
D | emitter_test.cpp | 52 Parser p; in TEST() local 190 Parser p; in TEST() local 275 Parser p; in TEST() local 354 Parser p; in TEST() local 370 Parser p; in TEST() local 384 Parser p; in TEST() local 398 Parser p; in TEST() local 412 Parser p; in TEST() local 430 Parser p; in TEST() local 457 Parser p; in TEST() local [all …]
|
D | assembler_emitter_test.cpp | 63 Parser p; variable 96 Parser p; variable 221 Parser p; variable 310 Parser p; variable 416 Parser p; variable 432 Parser p; variable 446 Parser p; variable 460 Parser p; variable 474 Parser p; variable 497 Parser p; variable [all …]
|
/arkcompiler/runtime_core/static_core/assembler/tests/ |
D | parser_test.cpp | 29 Parser p; in TEST() local 46 Parser p; in TEST() local 63 Parser p; in TEST() local 74 Parser p; in TEST() local 85 Parser p; in TEST() local 101 Parser p; in TEST() local 117 Parser p; in TEST() local 128 Parser p; in TEST() local 139 Parser p; in TEST() local 159 Parser p; in TEST() local [all …]
|
D | emitter_test.cpp | 54 Parser p; in TEST() local 192 Parser p; in TEST() local 277 Parser p; in TEST() local 358 Parser p; in TEST() local 374 Parser p; in TEST() local 388 Parser p; in TEST() local 402 Parser p; in TEST() local 416 Parser p; in TEST() local 434 Parser p; in TEST() local 461 Parser p; in TEST() local [all …]
|
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/projects/ts_import_type_project_5/ |
D | test-ts-export.ts | 17 export interface I1 { p: string } property 18 export interface I2 { p: string } property 19 export interface I3 { p: string } property 26 interface I4 { p: string } property 27 interface I5 { p: string } property 28 interface II6 { p: string } property
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/ |
D | pme_mir_extension.h | 30 explicit PreMeMIRExtension(BaseNode *p) : parent(p), meexpr(nullptr) {} in PreMeMIRExtension() 31 PreMeMIRExtension(BaseNode *p, MeExpr *expr) : parent(p), meexpr(expr) {} in PreMeMIRExtension() 32 PreMeMIRExtension(BaseNode *p, MeStmt *stmt) : parent(p), mestmt(stmt) {} in PreMeMIRExtension() 46 void SetParent(BaseNode *p) in SetParent()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/pgo_test_case/ |
D | array_test.js | 22 function foo(p) { argument 26 function foo1(p) { argument 30 function foo2(p) { argument
|
D | sample_test.js | 29 function foo1(p) { return p.x; }; argument 30 function foo2(p) { return p.y; }; argument 31 function foo3(p) { return p.z; }; argument
|
/arkcompiler/runtime_core/assembler/utils/ |
D | number-utils.h | 31 inline bool ValidateInteger(std::string_view p) in ValidateInteger() 94 inline int64_t IntegerNumber(std::string_view p) in IntegerNumber() 124 inline bool ValidateFloat(std::string_view p) in ValidateFloat() 163 inline double FloatNumber(std::string_view p, bool is_64bit) in FloatNumber() 178 inline size_t ToNumber(std::string_view p) in ToNumber()
|
/arkcompiler/runtime_core/static_core/assembler/utils/ |
D | number-utils.h | 31 inline bool ValidateInteger(std::string_view p) in ValidateInteger() 94 inline int64_t IntegerNumber(std::string_view p) in IntegerNumber() 128 inline bool ValidateFloat(std::string_view p) in ValidateFloat() 167 inline double FloatNumber(std::string_view p, bool is64bit) in FloatNumber() 181 inline size_t ToNumber(std::string_view p) in ToNumber()
|
/arkcompiler/runtime_core/static_core/verification/util/tests/ |
D | obj_pool_test.cpp | 50 auto p = pool.New(); in TEST() local 79 auto p = pool.New(); in TEST() local 90 auto p = pool.New(); in TEST() local 121 auto p = pool.New(); in TEST() local 185 auto p = pool.New(); in TEST() local
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | caddress_allocator.h | 79 void deallocate(pointer p, [[maybe_unused]] size_type n) in deallocate() 85 void construct(U *p, Args &&... args) // NOLINT(readability-identifier-naming) in construct() 93 void destroy(U *p) // NOLINT(readability-identifier-naming) in destroy() 119 auto p = reinterpret_cast<void *>(Allocate(sizeof(S))); in New() local
|
D | chunk_allocator.h | 91 void deallocate([[maybe_unused]] pointer p, [[maybe_unused]] size_type n) {} in deallocate() 94 void construct(U *p, Args &&... args) // NOLINT(readability-identifier-naming) in construct() 99 void destroy(U *p) // NOLINT(readability-identifier-naming) in destroy()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
D | internal_allocator_test.cpp | 165 auto *p = allocator_->AllocArray<S>(1); in TEST_F() local 171 auto *p = allocator_->New<S>(); in TEST_F() local 178 auto *p = allocator_->New<S[]>(1); in TEST_F() local 207 auto *p = allocator_->AllocArrayLocal<S>(1); in TEST_F() local 213 auto *p = allocator_->AllocArrayLocal<S>(1); in TEST_F() local 219 auto *p = allocator_->NewLocal<S>(); in TEST_F() local 226 auto *p = allocator_->NewLocal<S[]>(1); in TEST_F() local
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
D | internal_allocator-inl.h | 47 void *p = Alloc(sizeof(T), GetAlignment<T>()); in New() local 61 void *p = Alloc(SIZE_BEFORE_DATA_OFFSET + sizeof(ElementType) * size, GetAlignment<T>()); in New() local 86 void *p = ToVoidPtr(ToUintPtr(data) - SIZE_BEFORE_DATA_OFFSET); in DeleteArray() local
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/promise/ |
D | return_pending_promise_to_js_test.js | 39 async function doAwait(p) { argument 46 function doThen(p) { argument
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/mac/ |
D | os.cpp | 26 size_t MallocUsableSize(void *p) in MallocUsableSize() 50 int PrctlSetVMA([[maybe_unused]] const void *p, [[maybe_unused]] const size_t size, [[maybe_unused]… in PrctlSetVMA()
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/ |
D | os.cpp | 33 size_t MallocUsableSize(void *p) in MallocUsableSize() 50 int PrctlSetVMA(const void *p, const size_t size, const char *tag) in PrctlSetVMA()
|
/arkcompiler/ets_runtime/test/moduletest/symbol/ |
D | symbol.js | 23 const p = Symbol.prototype; constant
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-class-definition30.ts | 18 abstract accessor p: any; property in C
|
D | test_satisfies2.ts | 19 const p = { constant
|
/arkcompiler/ets_runtime/test/aottest/ts_inline_accessor_same_name/ |
D | ts_inline_accessor_same_name.ts | 35 let p = new Person("xiaoming"); variable
|
/arkcompiler/ets_runtime/test/aottest/ts_inline_accessor/ |
D | ts_inline_accessor.ts | 49 let p = new Person("xiaoming", 18); variable
|