Home
last modified time | relevance | path

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

123456

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DimportAliasIdentifiers.ts29 let p: alias.Point; variable
33 let p: moduleA.Point; variable
37 let p: { x: number; y: number; }; variable
55 let p: clolias.Point; variable
59 let p: clodule.Point; variable
63 let p: { x: number; y: number; }; variable
87 let p: funlias.Point; variable
91 let p: fundule.Point; variable
95 let p: { x: number; y: number; }; variable
DcollisionCodeGenModuleWithModuleChildren.ts34 let p = x; variable
43 let p = x; variable
52 let p = x; variable
60 let p = x; variable
DforStatementsMultipleValidDecl.ts37 for (let p: Point; ;) { } variable
38 for (let p = { x: 1, y: 2 }; ;) { } variable
39 for (let p: Point = { x: 0, y: undefined }; ;) { } variable
40 for (let p = { x: 1, y: <number>undefined }; ;) { } variable
41 for (let p: { x: number; y: number; } = { x: 1, y: 2 }; ;) { } variable
42 for (let p = <{ x: number; y: number; }>{ x: 0, y: undefined }; ;) { } variable
43 for (let p: typeof p; ;) { } variable
DimportStatements.ts38 let p: a.Point; variable
39 let p = {x:0, y:0 }; variable
46 let p = new a.Point(1, 1); variable
DvalidMultipleVariableDeclarations.ts55 let p: Point; variable
58 let p = { x: 1, y: 2 }; variable
66 let p: Point = { x: 0, y: undefined }; variable
74 let p = { x: 1, y: <number>undefined }; variable
83 let p: { x: number; y: number; } = { x: 1, y: 2 }; variable
93 let p = <{ x: number; y: number; }>{ x: 0, y: undefined }; variable
104 let p: typeof p; variable
DimportInTypePosition.ts39 let p: a.Point; variable
40 let p = { x: 0, y: 0 }; variable
DaccessorsOverrideProperty5.ts27 get p() { method in C
32 set p(value) { } method in C
DjsdocAccessibilityTagsDeclarations.ts74 get p() { method in Private
82 set p(value) { this.c = value method in Private
DemitStatementsBeforeSuperCall.ts25 constructor(public p: number) { property in Sub
41 constructor(public p: number) { property in Test
DemitStatementsBeforeSuperCallWithDefineFields.ts25 constructor(public p: number) { property in Sub
41 constructor(public p: number) { property in Test
DexportImportAndClodule.ts46 let p: { x: number; y: number; variable
54 let p: M.D.Point; variable
Des6ModuleConst.ts45 const o: string = n, p = k; constant
51 const o: string = n, p = k; constant
DTwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.ts42 let p: { x: number; y: number; }; variable
47 let p: A.Point; variable
DnestedModules.ts57 let p: { x: number; y: number; variable
65 let p: M2.X.Point; variable
DdeclFileTypeAnnotationVisibilityErrorTypeAlias.ts30 export let p: W; // Should report error that W is private variable
38 export let p: W; // No error variable
DES5For-of10.ts34 let p = foo().x; variable
DES5For-of9.ts34 let p = foo().x; variable
/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 …]
/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/ets_runtime/ecmascript/pgo_profiler/tests/pgo_test_case/
Darray_test.js21 function foo(p) { argument
25 function foo1(p) { argument
/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
/arkcompiler/ets_runtime/test/moduletest/symbol/
Dsymbol.js23 const p = Symbol.prototype; constant
/arkcompiler/ets_runtime/test/aottest/ts_inline_accessor/
Dts_inline_accessor.ts49 let p = new Person("xiaoming", 18); variable
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsDeclarationsFunctionLikeClasses/
Dreferencer.js26 export function magnitude(p) { argument

123456