Home
last modified time | relevance | path

Searched refs:Q (Results 1 – 25 of 31) sorted by relevance

12

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/namespacesWithTypeAliasOnlyExportsMerge/
DconstAndNS.ts22 declare const Q: number;
23 AssertType(Q, "number");
25 declare namespace Q {
28 declare const try1: Q.A;
30 AssertType(Q, "any");
33 export { Q }
35 declare const try2: Q2.Q.A;
38 AssertType(Q, "any");
48 export { Q as default };
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DjsDeclarationsExportAssignedClassExpressionShadowing.ts22 member = new Q();
24 class Q { class
27 module.exports = class Q { class
28 AssertType(module.exports = class Q { constructor() { this.x = new A(); }}, "typeof im…
30 AssertType(class Q { constructor() { this.x = new A(); }}, "typeof import("tests/cases…
31 AssertType(Q, "typeof import("tests/cases/conformance/jsdoc/declarations/index")");
42 module.exports.Another = Q;
43 AssertType(module.exports.Another = Q, "typeof Q");
45 AssertType(Q, "typeof Q");
DexportDeclarationsInAmbientNamespaces.ts21 declare namespace Q {
26 Q.try(() => { });
27 AssertType(Q.try(() => { }), "any");
28 AssertType(Q.try, "(Function, ...any[]) => any");
DmodFunctionCrash.ts21 declare module Q {
26 Q.f(function() {this;});
27 AssertType(Q.f(function() {this;}), "any");
28 AssertType(Q.f, "(() => void) => any");
DdeclarationEmitExpressionInExtends.ts24 new<T>(s: any): Q;
28 class Q { class
DprivacyCheckAnonymousFunctionParameter2.ts27 module Q {
34 module Q {
DanyIsAssignableToObject.ts26 interface Q extends P { // Check assignability here. Any is assignable to {} interface
DanyIsAssignableToVoid.ts26 interface Q extends P { // check assignability here. any is assignable to void. interface
DsourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.ts21 module Q {
DdeclareDottedModuleName.ts23 module P.Q { } // This shouldnt be emitted
DkeyofObjectWithGlobalSymbolIncluded.ts32 type Q = keyof typeof obj; alias
DcallOfConditionalTypeWithConcreteBranches.ts21 type Q<T> = number extends T ? (n: number) => void : never;
22 function fn<T>(arg: Q<T>) {
DsubstitutionTypesCompareCorrectlyInRestrictiveInstances.ts25 type Q = UnionKeys<{ a : any } | { b: any }> // should be "a" | "b"
DconstEnums.ts44 Q = -D, enumerator
225 case Enum1.Q:
226 AssertType(Enum1.Q, "Enum1.Q");
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2084.pa39 .record Q {}
40 .function void Q.ctor(Q a0) {
58 Q fQ
59 Q[] fQArray
Dbug_2088.pa41 .record Q {}
42 .function void Q.ctor(Q a0) {
60 Q fQ
61 Q[] fQArray
Dbug_2085.pa41 .record Q {}
42 .function void Q.ctor(Q a0) {
60 Q fQ
61 Q[] fQArray
Dbug_3197.pa16 .record Q {}
17 .function void Q.ctor(Q a0) {
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_generic.ts57 class X extends Q<number> implements S<<R>(a:number, b:string) => [number]>, A {
69 type P<K, Q = [number, number, string] | any[]> = {a:K, b:Q};
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/crashInResolveInterface/
Dfile1.ts21 interface Q<T> {
24 let q1: Q<{ a: number; }>;
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/declarationEmitNameConflicts/
DdeclarationEmit_nameConflicts_0.ts52 export module M.Q {
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.cpp185 case Q: in Ldp()
231 case Q: in Stp()
264 case Scale::Q: in GetOpcFromScale()
284 …uint32_t instructionCode = ((regX && (scale == Scale::Q)) << 30) | op | LoadAndStoreImm(imm, isSig… in Ldr()
296 uint32_t instructionCode = ((regX && (scale == Scale::Q)) << 30) | op | Rm(rm.GetId()) | in Ldr()
304 Ldr(rt, operand, Scale::Q); in Ldr()
1142 } else if (scale == Scale::Q) { in GetImmOfLdr()
1163 } else if (scale == Scale::Q) { in GetOpcodeOfLdr()
1176 } else if (scale == Scale::Q) { in GetOpcodeOfLdr()
1189 } else if (scale == Scale::Q) { in GetOpcodeOfLdr()
[all …]
Dassembler_aarch64_constants.h71 Q = 4, enumerator
/arkcompiler/runtime_core/libpandafile/templates/
Dtype.h.erb142 return "Q";
180 case 'Q':
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Drun.bat50 hdc shell "hilog -Q pidoff"

12