Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 232) sorted by relevance

12345678910

/arkcompiler/runtime_core/assembler/tests/
Dassembler_parser_test.cpp42 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 …]
Dparser_test.cpp28 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 …]
Demitter_test.cpp52 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 …]
Dassembler_emitter_test.cpp63 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/
Dparser_test.cpp29 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 …]
Demitter_test.cpp54 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/
Dtest-ts-export.ts17 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/
Dpme_mir_extension.h30 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/
Darray_test.js22 function foo(p) { argument
26 function foo1(p) { argument
30 function foo2(p) { argument
Dsample_test.js29 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/
Dnumber-utils.h31 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/
Dnumber-utils.h31 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/
Dobj_pool_test.cpp50 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/
Dcaddress_allocator.h79 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
Dchunk_allocator.h91 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/
Dinternal_allocator_test.cpp165 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/
Dinternal_allocator-inl.h47 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/
Dreturn_pending_promise_to_js_test.js39 async function doAwait(p) { argument
46 function doThen(p) { argument
/arkcompiler/ets_runtime/ecmascript/platform/unix/mac/
Dos.cpp26 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/
Dos.cpp33 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/
Dsymbol.js23 const p = Symbol.prototype; constant
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definition30.ts18 abstract accessor p: any; property in C
Dtest_satisfies2.ts19 const p = { constant
/arkcompiler/ets_runtime/test/aottest/ts_inline_accessor_same_name/
Dts_inline_accessor_same_name.ts35 let p = new Person("xiaoming"); variable
/arkcompiler/ets_runtime/test/aottest/ts_inline_accessor/
Dts_inline_accessor.ts49 let p = new Person("xiaoming", 18); variable

12345678910