Home
last modified time | relevance | path

Searched defs:c1 (Results 1 – 25 of 39) sorted by relevance

12

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DliteralTypeWidening.ts24 const c1 = "hello"; // Widening type "hello" constant
58 const c1 = cond ? "foo" : "bar"; // widening "foo" | widening "bar" constant
69 const c3 = cond ? c1 : c2; // "foo" | "bar" constant
109 const c1 = 123; // Widening type 123 constant
143 const c1 = cond ? 123 : 456; // widening 123 | widening 456 constant
154 const c3 = cond ? c1 : c2; // 123 | 456 constant
194 const c1 = "foo"; constant
DliteralTypes2.ts103 const c1 = 1; constant
194 const c1 = cond ? 1 : 2; constant
297 readonly c1 = 1; property in C1
308 const c1 = { a: 1, b: "foo" }; constant
346 const c1 = [1, "foo"]; constant
384 const { c1 = true, c2 = 0, c3 = "foo" } = { c1: false, c2: 1, c3: "bar" }; constant
DcollisionCodeGenModuleWithModuleReopening.ts31 export class c1 { class
42 export class c1 { class
DtypeGuardOfFormInstanceOfOnInterface.ts50 let c1: C1; variable
128 let r2: D1 | C2 = c2Ord1 instanceof c1 && c2Ord1; // C2 | D1 variable
DprivacyImport.ts73 export class c1 { class
85 export class c1 { class
122 export class c1 { class
134 export class c1 { class
DsignaturesUseJSDocForOptionalParameters.ts50 let c1 = pInst.optionalParam('hello') variable
DtypeGuardsInProperties.ts76 let c1: C1; variable
DconstDeclarations2.ts24 export const c1 = false; constant
DdeclFilePrivateMethodOverloads.ts25 class c1 { class
DrecursiveTypeInGenericConstraint.ts33 let c1 = new Foo<D<string>>(); // ok, circularity in assignment compat check causes success variable
DintersectionTypeInference3.ts35 const c1 = Array.from(a).concat(Array.from(b)); constant
DnewOperatorConformance.ts63 let c1 = new T; variable
68 let c1: T<{}>; variable
DgenericClassWithObjectTypeArgsAndConstraints.ts48 let c1 = new X<C>(); variable
73 let c1 = new X<C>(); variable
Dinterfacedecl.ts64 class c1 implements a { class
DreadonlyInDeclarationFile.ts46 private get c1() { method in C
51 private set c1(value) { } method in C
DconstEnumToStringNoComments.ts85 let c1 = Foo["C"].toString(); variable
DconstEnumToStringWithComments.ts85 let c1 = Foo["C"].toString(); variable
DgenericCallWithObjectTypeArgsAndConstraints.ts45 let c1 = new X<C>(); variable
Dmoduledecl.ts47 class c1 { class
76 export class c1 { class
204 public get c1() { method in C3_public
DconstraintSatisfactionWithAny.ts80 let c1 = new C(a); variable
DtypeGuardOfFormIsTypeOnInterfaces.ts60 let c1: C1; variable
/arkcompiler/ets_runtime/test/deopttest/restore_vregs/
Drestore_vregs.ts33 let c1 = new C(); variable
/arkcompiler/ets_runtime/test/aottest/ic/
Dic.ts25 let c1 = new C(); variable
/arkcompiler/ets_frontend/es2panda/test/type_extractor/testcases/
Dtest-class-generic-type.ts25 let c1 = new C<number>(1); variable
/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_executor.h349 uint32_t c1 = GetChar(&refCptr, captureEnd); in HandleOpBackReference() local
376 uint32_t c1 = GetPrevChar(&refCptr, captureStart); in HandleOpBackReference() local
429 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr)); in GetChar() local
453 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr)); in PeekChar() local
473 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr)); in AdvancePtr() local
495 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr)); in PeekPrevChar() local
519 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr)); in GetPrevChar() local
542 … uint16_t c1 = *(const uint16_t *)cptr; // NOLINTNEXTLINE(cppcoreguidelines-pro-type-cstyle-cast) in PrevPtr() local

12