/third_party/typescript/tests/baselines/reference/ |
D | typeGuardFunctionGenerics.types | 24 declare function isB(p1): p1 is B; 25 >isB : (p1: any) => p1 is B 26 >p1 : any 28 declare function isC(p1): p1 is C; 29 >isC : (p1: any) => p1 is C 30 >p1 : any 36 declare function funA<T>(p1: (p1) => T): T; 37 >funA : <T>(p1: (p1: any) => T) => T 38 >p1 : (p1: any) => T 39 >p1 : any [all …]
|
D | typeGuardFunction.types | 24 declare function isA(p1: any): p1 is A; 25 >isA : (p1: any) => p1 is A 26 >p1 : any 28 declare function isB(p1: any): p1 is B; 29 >isB : (p1: any) => p1 is B 30 >p1 : any 32 declare function isC(p1: any): p1 is C; 33 >isC : (p1: any) => p1 is C 34 >p1 : any 48 >isC : (p1: any) => p1 is C [all …]
|
D | typeGuardFunctionErrors.types | 102 declare function isB(p1): p1 is B; 103 >isB : (p1: any) => p1 is B 104 >p1 : any 106 declare function isC(p1): p1 is C; 107 >isC : (p1: any) => p1 is C 108 >p1 : any 110 declare function funA(p1: any, p2: any): p1 is B; 111 >funA : (p1: any, p2: any) => p1 is B 112 >p1 : any 122 >isB : (p1: any) => p1 is B [all …]
|
D | classUpdateTests.js | 6 public p1 = 0; field in A 12 public p1 = 0; field in B 20 constructor(public p1=0, private p2=0, p3=0) {} argument 31 public p1 = 0; field in E 39 public p1 = 0; field in G 52 constructor(public p1:number) { 58 constructor(public p1:number) { // ERROR 65 constructor(private p1:number) { 71 constructor(private p1:number) { // ERROR 81 public p1 = 0; field in N [all …]
|
D | typeGuardFunctionErrors.js | 53 declare function isB(p1): p1 is B; 54 declare function isC(p1): p1 is C; 55 declare function funA(p1: any, p2: any): p1 is B; 74 declare function acceptingDifferentSignatureTypeGuardFunction(p1: (p1) => p1 is B); 78 var assign1: (p1, p2) => p1 is A; 79 assign1 = function(p1, p2): boolean { 84 var assign2: (p1, p2) => p1 is A; 85 assign2 = function(p1, p2): p2 is A { 90 var assign3: (p1, p2) => p1 is A; 91 assign3 = function(p1, p2, p3): p1 is A { [all …]
|
D | typeGuardFunction.symbols | 24 declare function isA(p1: any): p1 is A; 26 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 12, 21)) 27 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 12, 21)) 30 declare function isB(p1: any): p1 is B; 32 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 13, 21)) 33 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 13, 21)) 36 declare function isC(p1: any): p1 is C; 38 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 14, 21)) 39 >p1 : Symbol(p1, Decl(typeGuardFunction.ts, 14, 21)) 100 (p1: A): p1 is C; [all …]
|
D | typeGuardFunctionGenerics.symbols | 24 declare function isB(p1): p1 is B; 26 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 12, 21)) 27 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 12, 21)) 30 declare function isC(p1): p1 is C; 32 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 13, 21)) 33 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 13, 21)) 41 declare function funA<T>(p1: (p1) => T): T; 44 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 16, 25)) 45 >p1 : Symbol(p1, Decl(typeGuardFunctionGenerics.ts, 16, 30)) 49 declare function funB<T>(p1: (p1) => T, p2: any): p2 is T; [all …]
|
D | overrideParameterProperty.symbols | 5 p1!: string; 6 >p1 : Symbol(Base.p1, Decl(overrideParameterProperty.ts, 0, 12)) 13 constructor(public override p1: "hello") { 14 >p1 : Symbol(C1.p1, Decl(overrideParameterProperty.ts, 5, 14)) 19 this.p1; 20 >this.p1 : Symbol(C1.p1, Decl(overrideParameterProperty.ts, 5, 14)) 22 >p1 : Symbol(C1.p1, Decl(overrideParameterProperty.ts, 5, 14)) 30 constructor(override p1: "hello") { 31 >p1 : Symbol(C2.p1, Decl(overrideParameterProperty.ts, 12, 14)) 36 this.p1; [all …]
|
D | classUpdateTests.symbols | 8 public p1 = 0; 9 >p1 : Symbol(A.p1, Decl(classUpdateTests.ts, 3, 9)) 21 public p1 = 0; 22 >p1 : Symbol(B.p1, Decl(classUpdateTests.ts, 9, 9)) 36 constructor(public p1=0, private p2=0, p3=0) {} 37 >p1 : Symbol(C.p1, Decl(classUpdateTests.ts, 18, 13)) 54 public p1 = 0; 55 >p1 : Symbol(E.p1, Decl(classUpdateTests.ts, 28, 19)) 69 public p1 = 0; 70 >p1 : Symbol(G.p1, Decl(classUpdateTests.ts, 36, 19)) [all …]
|
D | classUpdateTests.types | 8 public p1 = 0; 9 >p1 : number 23 public p1 = 0; 24 >p1 : number 40 constructor(public p1=0, private p2=0, p3=0) {} 41 >p1 : number 61 public p1 = 0; 62 >p1 : number 77 public p1 = 0; 78 >p1 : number [all …]
|
D | overrideParameterProperty.types | 5 p1!: string; 6 >p1 : string 13 constructor(public override p1: "hello") { 14 >p1 : "hello" 20 this.p1; 21 >this.p1 : "hello" 23 >p1 : "hello" 31 constructor(override p1: "hello") { 32 >p1 : "hello" 38 this.p1; [all …]
|
D | assignParameterPropertyToPropertyDeclarationESNext.js | 33 p2 = this.p1 35 p1 = 0 field in F 39 p2 = this.p1 41 constructor(public p1: number) {} 44 constructor(public p1: C) {} 47 return this.p1.foo; 50 public p3 = () => this.p1.foo; 89 p2 = this.p1; 91 p1 = 0; field in F 94 p1; field in G [all …]
|
D | typeGuardFunction.js | 14 declare function isA(p1: any): p1 is A; 15 declare function isB(p1: any): p1 is B; 16 declare function isC(p1: any): p1 is C; 42 (p1: A): p1 is C; 47 declare function isC_multipleParams(p1, p2): p1 is C; 54 func1(p1: A): p1 is C; 57 method1(p1: A): p1 is C { field in D 63 let f1 = (p1: A): p1 is C => false; 66 declare function f2(p1: (p1: A) => p1 is C); 69 f2(function(p1: A): p1 is C { [all …]
|
D | overrideParameterProperty.js | 3 p1!: string; field in Base 7 constructor(public override p1: "hello") { 9 this.p1; 14 constructor(override p1: "hello") { 16 this.p1; 21 constructor(override public p1: "hello") { 23 this.p1; 26 m(override p1: "hello") {} 58 function C1(p1) { argument 60 _this.p1 = p1; [all …]
|
/third_party/icu/icu4c/source/test/perf/collperf2/ |
D | CollPerf2_r.pl | 54 my $p1, $p2; 57 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/collperf2/$WindowsPlatform/Release/collperf… 60 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/lib:".$ICUPrevious."/tools/ctestfw ".$ICUPrevious."/test/p… 65 "ucol_strcoll/len", ["$p1,TestStrcoll", "$p2,TestStrcoll"], 66 "ucol_strcoll/null", ["$p1,TestStrcollNull", "$p2,TestStrcollNull"], 67 "ucol_strcoll/len/similar", ["$p1,TestStrcollSimilar", "$p2,TestStrcollSimilar"], 69 "ucol_strcollUTF8/len", ["$p1,TestStrcollUTF8", "$p2,TestStrcollUTF8"], 70 "ucol_strcollUTF8/null", ["$p1,TestStrcollUTF8Null", "$p2,TestStrcollUTF8Null"], 71 "ucol_strcollUTF8/len/similar", ["$p1,TestStrcollUTF8Similar", "$p2,TestStrcollUTF8Similar"], 73 "ucol_getSortKey/len", ["$p1,TestGetSortKey", "$p2,TestGetSortKey"], [all …]
|
/third_party/unity/test/tests/ |
D | test_unity_integers.c | 203 int *p0, *p1; in testEqualInts() local 208 p1 = &v1; in testEqualInts() 216 TEST_ASSERT_EQUAL_INT(*p0, *p1); in testEqualInts() 223 UNITY_INT8 *p0, *p1; in testEqualInt8s() local 228 p1 = &v1; in testEqualInt8s() 235 TEST_ASSERT_EQUAL_INT8(*p0, *p1); in testEqualInt8s() 248 char *p0, *p1; in testEqualChars() local 253 p1 = &v1; in testEqualChars() 260 TEST_ASSERT_EQUAL_CHAR(*p0, *p1); in testEqualChars() 274 UNITY_INT16 *p0, *p1; in testEqualInt16s() local [all …]
|
D | testunity.c | 444 int *p0, *p1; in testEqualInts() local 449 p1 = &v1; in testEqualInts() 457 TEST_ASSERT_EQUAL_INT(*p0, *p1); in testEqualInts() 464 UNITY_INT8 *p0, *p1; in testEqualInt8s() local 469 p1 = &v1; in testEqualInt8s() 476 TEST_ASSERT_EQUAL_INT8(*p0, *p1); in testEqualInt8s() 489 char *p0, *p1; in testEqualChars() local 494 p1 = &v1; in testEqualChars() 501 TEST_ASSERT_EQUAL_CHAR(*p0, *p1); in testEqualChars() 515 UNITY_INT16 *p0, *p1; in testEqualInt16s() local [all …]
|
/third_party/alsa-lib/src/alisp/ |
D | alisp_snd.c | 149 struct alisp_object * p1, * p2; in add_cons() local 156 p1 = lexpr->value.c.cdr = new_object(instance, ALISP_OBJ_CONS); in add_cons() 158 p1 = lexpr->value.c.car = new_object(instance, ALISP_OBJ_CONS); in add_cons() 160 lexpr = p1; in add_cons() 161 if (p1 == NULL) { in add_cons() 165 p1->value.c.car = new_object(instance, ALISP_OBJ_CONS); in add_cons() 166 if ((p2 = p1->value.c.car) == NULL) in add_cons() 175 delete_tree(instance, p1); in add_cons() 187 struct alisp_object * p1; in add_cons2() local 194 p1 = lexpr->value.c.cdr = new_object(instance, ALISP_OBJ_CONS); in add_cons2() [all …]
|
D | alisp.c | 1111 struct alisp_object *p1 = car(args), *p2; in F_car() local 1114 p1 = eval(instance, p1); in F_car() 1115 delete_tree(instance, cdr(p1)); in F_car() 1116 p2 = car(p1); in F_car() 1117 delete_object(instance, p1); in F_car() 1126 struct alisp_object *p1 = car(args), *p2; in F_cdr() local 1129 p1 = eval(instance, p1); in F_cdr() 1130 delete_tree(instance, car(p1)); in F_cdr() 1131 p2 = cdr(p1); in F_cdr() 1132 delete_object(instance, p1); in F_cdr() [all …]
|
/third_party/cJSON/tests/unity/test/tests/ |
D | testunity.c | 400 int *p0, *p1; in testEqualInts() local 405 p1 = &v1; in testEqualInts() 413 TEST_ASSERT_EQUAL_INT(*p0, *p1); in testEqualInts() 420 UNITY_INT8 *p0, *p1; in testEqualInt8s() local 425 p1 = &v1; in testEqualInt8s() 432 TEST_ASSERT_EQUAL_INT8(*p0, *p1); in testEqualInt8s() 445 UNITY_INT16 *p0, *p1; in testEqualInt16s() local 450 p1 = &v1; in testEqualInt16s() 457 TEST_ASSERT_EQUAL_INT16(*p0, *p1); in testEqualInt16s() 464 UNITY_INT16 *p0, *p1; in testEqualInt16sNegatives() local [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/ |
D | typeGuardFunctionErrors.ts | 53 declare function isB(p1): p1 is B; 54 declare function isC(p1): p1 is C; 55 declare function funA(p1: any, p2: any): p1 is B; 74 declare function acceptingDifferentSignatureTypeGuardFunction(p1: (p1) => p1 is B); 78 var assign1: (p1, p2) => p1 is A; 79 assign1 = function(p1, p2): boolean { 84 var assign2: (p1, p2) => p1 is A; 85 assign2 = function(p1, p2): p2 is A { 90 var assign3: (p1, p2) => p1 is A; 91 assign3 = function(p1, p2, p3): p1 is A { [all …]
|
D | typeGuardFunction.ts | 14 declare function isA(p1: any): p1 is A; 15 declare function isB(p1: any): p1 is B; 16 declare function isC(p1: any): p1 is C; 42 (p1: A): p1 is C; 47 declare function isC_multipleParams(p1, p2): p1 is C; 54 func1(p1: A): p1 is C; 57 method1(p1: A): p1 is C { 63 let f1 = (p1: A): p1 is C => false; 66 declare function f2(p1: (p1: A) => p1 is C); 69 f2(function(p1: A): p1 is C { [all …]
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 205 #define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) \ argument 206 , typename p0##_type, typename p1##_type 207 #define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) \ argument 208 , typename p0##_type, typename p1##_type, typename p2##_type 209 #define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) \ argument 210 , typename p0##_type, typename p1##_type, typename p2##_type, \ 212 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) \ argument 213 , typename p0##_type, typename p1##_type, typename p2##_type, \ 215 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) \ argument 216 , typename p0##_type, typename p1##_type, typename p2##_type, \ [all …]
|
/third_party/icu/icu4c/source/test/perf/collperf/ |
D | CollPerf_r.pl | 33 my $p1, $p2; 36 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/collperf/$WindowsPlatform/Release/collperf.… 39 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/source/lib:".$ICUPrevious."/source/tools/ctestfw ".$ICUPat… 45 "Key Gen ICU null", ["$p1,TestIcu_KeyGen_null", "$p2,TestIcu_KeyGen_null"], 46 "Key Gen ICU len", ["$p1,TestIcu_KeyGen_len", "$p2,TestIcu_KeyGen_len"], 47 "Iteration icu forward null", ["$p1,TestIcu_ForwardIter_null", "$p2,TestIcu_ForwardIter_null"], 48 "Iteration icu forward len", ["$p1,TestIcu_ForwardIter_len", "$p2,TestIcu_ForwardIter_len"], 49 …"Iteration icu backward null", ["$p1,TestIcu_BackwardIter_null", "$p2,TestIcu_BackwardIter_null"], 50 "Iteration icu backward len", ["$p1,TestIcu_BackwardIter_len", "$p2,TestIcu_BackwardIter_len"], 51 …"Iteration/all icu forward null", ["$p1,TestIcu_ForwardIter_all_null", "$p2,TestIcu_ForwardIter_a… [all …]
|
/third_party/icu/icu4c/source/test/perf/normperf/ |
D | NormPerf_r.pl | 34 my $p1; # Previous 38 …$p1 = "cd ".$ICUPrevious."/bin && ".$ICUPathPrevious."/normperf/$WindowsPlatform/Release/normperf.… 41 …$p1 = "LD_LIBRARY_PATH=".$ICUPrevious."/source/lib:".$ICUPrevious."/source/tools/ctestfw ".$ICUPat… 67 "NFC_NFD_Text", ["$p1,TestICU_NFC_NFD_Text" , "$p2,TestICU_NFC_NFD_Text" ], 68 "NFC_NFC_Text", ["$p1,TestICU_NFC_NFC_Text" , "$p2,TestICU_NFC_NFC_Text" ], 69 "NFC_Orig_Text", ["$p1,TestICU_NFC_Orig_Text" , "$p2,TestICU_NFC_Orig_Text"], 70 "NFD_NFD_Text", ["$p1,TestICU_NFD_NFD_Text" , "$p2,TestICU_NFD_NFD_Text" ], 71 "NFD_NFC_Text", ["$p1,TestICU_NFD_NFC_Text" , "$p2,TestICU_NFD_NFC_Text" ], 72 "NFD_Orig_Text", ["$p1,TestICU_NFD_Orig_Text" , "$p2,TestICU_NFD_Orig_Text"], 74 "QC_NFC_NFD_Text", ["$p1,TestQC_NFC_NFD_Text" , "$p2,TestQC_NFC_NFD_Text" ], [all …]
|