| /third_party/typescript/tests/baselines/reference/ |
| D | nullishCoalescingOperator_not_strict.types | 41 const aa1 = a1 ?? 'whatever' 42 >aa1 : "literal" | "whatever" 43 >a1 ?? 'whatever' : "literal" | "whatever" 45 >'whatever' : "whatever" 47 const aa2 = a2 ?? 'whatever' 48 >aa2 : "" | "whatever" 49 >a2 ?? 'whatever' : "" | "whatever" 51 >'whatever' : "whatever" 53 const aa3 = a3 ?? 'whatever' 54 >aa3 : 1 | "whatever" [all …]
|
| D | nullishCoalescingOperator2.types | 41 const aa1 = a1 ?? 'whatever' 42 >aa1 : "literal" | "whatever" 43 >a1 ?? 'whatever' : "literal" | "whatever" 45 >'whatever' : "whatever" 47 const aa2 = a2 ?? 'whatever' 48 >aa2 : "" | "whatever" 49 >a2 ?? 'whatever' : "" | "whatever" 51 >'whatever' : "whatever" 53 const aa3 = a3 ?? 'whatever' 54 >aa3 : 1 | "whatever" [all …]
|
| D | nullishCoalescingOperator_es2020.types | 41 const aa1 = a1 ?? 'whatever' 42 >aa1 : "literal" | "whatever" 43 >a1 ?? 'whatever' : "literal" | "whatever" 45 >'whatever' : "whatever" 47 const aa2 = a2 ?? 'whatever' 48 >aa2 : "" | "whatever" 49 >a2 ?? 'whatever' : "" | "whatever" 51 >'whatever' : "whatever" 53 const aa3 = a3 ?? 'whatever' 54 >aa3 : 1 | "whatever" [all …]
|
| D | nullishCoalescingOperator2.js | 13 const aa1 = a1 ?? 'whatever' 14 const aa2 = a2 ?? 'whatever' 15 const aa3 = a3 ?? 'whatever' 16 const aa4 = a4 ?? 'whatever' 17 const aa5 = a5 ?? 'whatever' 18 const aa6 = a6 ?? 'whatever' 19 const aa7 = a7 ?? 'whatever' 20 const aa8 = a8 ?? 'whatever' 21 const aa9 = a9 ?? 'whatever' 25 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; [all …]
|
| D | nullishCoalescingOperator_not_strict.js | 13 const aa1 = a1 ?? 'whatever' 14 const aa2 = a2 ?? 'whatever' 15 const aa3 = a3 ?? 'whatever' 16 const aa4 = a4 ?? 'whatever' 17 const aa5 = a5 ?? 'whatever' 18 const aa6 = a6 ?? 'whatever' 19 const aa7 = a7 ?? 'whatever' 20 const aa8 = a8 ?? 'whatever' 21 const aa9 = a9 ?? 'whatever' 24 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; [all …]
|
| D | namespaceMergedWithFunctionWithOverloadsUsage.types | 3 >X : { (opts?: X.Whatever): void; (cb: Function, opts?: X.Whatever): void; } 7 >X : { (opts?: X.Whatever): void; (cb: Function, opts?: X.Whatever): void; } 12 interface Whatever { 18 declare function Foo(opts?: Foo.Whatever): void; 19 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; } 20 >opts : Foo.Whatever 23 declare function Foo(cb: Function, opts?: Foo.Whatever): void; 24 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; } 26 >opts : Foo.Whatever 30 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; }
|
| D | nullishCoalescingOperator_es2020.js | 13 const aa1 = a1 ?? 'whatever' 14 const aa2 = a2 ?? 'whatever' 15 const aa3 = a3 ?? 'whatever' 16 const aa4 = a4 ?? 'whatever' 17 const aa5 = a5 ?? 'whatever' 18 const aa6 = a6 ?? 'whatever' 19 const aa7 = a7 ?? 'whatever' 20 const aa8 = a8 ?? 'whatever' 21 const aa9 = a9 ?? 'whatever' 43 const aa1 = a1 ?? 'whatever'; [all …]
|
| D | nullishCoalescingOperator1.types | 69 const aa1 = a1 ?? 'whatever'; 71 >a1 ?? 'whatever' : string 73 >'whatever' : "whatever" 75 const aa2 = a2 ?? 'whatever'; 77 >a2 ?? 'whatever' : string 79 >'whatever' : "whatever" 81 const aa3 = a3 ?? 'whatever'; 83 >a3 ?? 'whatever' : string 85 >'whatever' : "whatever" 87 const aa4 = a4 ?? 'whatever'; [all …]
|
| D | namespaceMergedWithFunctionWithOverloadsUsage.errors.txt | 2 Overload 1 of 2, '(opts?: Whatever): void', gave the following error. 3 Argument of type 'number' is not assignable to parameter of type 'Whatever'. 4 Overload 2 of 2, '(cb: Function, opts?: Whatever): void', gave the following error. 14 !!! error TS2769: Overload 1 of 2, '(opts?: Whatever): void', gave the following error. 15 !!! error TS2769: Argument of type 'number' is not assignable to parameter of type 'Whatever'. 16 !!! error TS2769: Overload 2 of 2, '(cb: Function, opts?: Whatever): void', gave the following er… 20 interface Whatever { 25 declare function Foo(opts?: Foo.Whatever): void; 26 declare function Foo(cb: Function, opts?: Foo.Whatever): void;
|
| D | namespaceMergedWithFunctionWithOverloadsUsage.symbols | 12 interface Whatever { 13 >Whatever : Symbol(Whatever, Decl(file.d.ts, 0, 23)) 16 >prop : Symbol(Whatever.prop, Decl(file.d.ts, 1, 24)) 20 declare function Foo(opts?: Foo.Whatever): void; 24 >Whatever : Symbol(Foo.Whatever, Decl(file.d.ts, 0, 23)) 26 declare function Foo(cb: Function, opts?: Foo.Whatever): void; 32 >Whatever : Symbol(Foo.Whatever, Decl(file.d.ts, 0, 23))
|
| D | jsDeclarationsTypedefAndImportTypes.js | 5 * @typedef {string | number} Whatever 27 /** @type {import("./conn").Whatever} */ 39 * @typedef {string | number} Whatever 59 /** @type {import("./conn").Whatever} */ 72 * @typedef {string | number} Whatever 79 export { Whatever }; 81 type Whatever = string | number; 93 /** @type {import("./conn").Whatever} */ 94 another: import("./conn").Whatever; field in Wrap
|
| D | nullishCoalescingOperator_not_strict.symbols | 30 const aa1 = a1 ?? 'whatever' 34 const aa2 = a2 ?? 'whatever' 38 const aa3 = a3 ?? 'whatever' 42 const aa4 = a4 ?? 'whatever' 46 const aa5 = a5 ?? 'whatever' 50 const aa6 = a6 ?? 'whatever' 54 const aa7 = a7 ?? 'whatever' 58 const aa8 = a8 ?? 'whatever' 62 const aa9 = a9 ?? 'whatever'
|
| D | nullishCoalescingOperator2.symbols | 30 const aa1 = a1 ?? 'whatever' 34 const aa2 = a2 ?? 'whatever' 38 const aa3 = a3 ?? 'whatever' 42 const aa4 = a4 ?? 'whatever' 46 const aa5 = a5 ?? 'whatever' 50 const aa6 = a6 ?? 'whatever' 54 const aa7 = a7 ?? 'whatever' 58 const aa8 = a8 ?? 'whatever' 62 const aa9 = a9 ?? 'whatever'
|
| D | nullishCoalescingOperator1.js | 23 const aa1 = a1 ?? 'whatever'; 24 const aa2 = a2 ?? 'whatever'; 25 const aa3 = a3 ?? 'whatever'; 26 const aa4 = a4 ?? 'whatever'; 70 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; 71 var aa2 = a2 !== null && a2 !== void 0 ? a2 : 'whatever'; 72 var aa3 = a3 !== null && a3 !== void 0 ? a3 : 'whatever'; 73 var aa4 = a4 !== null && a4 !== void 0 ? a4 : 'whatever';
|
| D | nullishCoalescingOperator3.types | 29 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' 30 >aa1 : boolean | "" | 0 | "literal" | 1 | "whatever" 31 >a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' : boolean | "" | 0 | "literal" | 1 | "whatever" 43 >'whatever' : "whatever"
|
| /third_party/openssl/Configurations/ |
| D | INTERNALS.Configure | 44 | ... whatever ... | | this line is processed | 46 | ... whatever ... | | this line is processed | 48 | ... whatever ... | | this line is skipped over | 50 | ... whatever ... | | this line is skipped over | 52 | ... whatever ... | | this line is processed | 54 | ... whatever ... | | this line is skipped over | 56 | ... whatever ... | | this line is skipped over | 58 | ... whatever ... | | this line is skipped over | 60 | ... whatever ... | | this line is skipped over | 62 | ... whatever ... | | this line is skipped over | [all …]
|
| /third_party/python/Lib/unittest/test/testmock/ |
| D | testsentinel.py | 10 self.assertEqual(sentinel.whatever, sentinel.whatever, 12 self.assertNotEqual(sentinel.whatever, sentinel.whateverelse, 17 self.assertEqual(str(sentinel.whatever), 'sentinel.whatever', 31 pickled = pickle.dumps(sentinel.whatever, proto) 33 self.assertIs(unpickled, sentinel.whatever) 36 self.assertIs(copy.copy(sentinel.whatever), sentinel.whatever) 37 self.assertIs(copy.deepcopy(sentinel.whatever), sentinel.whatever)
|
| /third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
| D | nullishCoalescingOperator_not_strict.ts | 14 const aa1 = a1 ?? 'whatever' 15 const aa2 = a2 ?? 'whatever' 16 const aa3 = a3 ?? 'whatever' 17 const aa4 = a4 ?? 'whatever' 18 const aa5 = a5 ?? 'whatever' 19 const aa6 = a6 ?? 'whatever' 20 const aa7 = a7 ?? 'whatever' 21 const aa8 = a8 ?? 'whatever' 22 const aa9 = a9 ?? 'whatever'
|
| D | nullishCoalescingOperator2.ts | 14 const aa1 = a1 ?? 'whatever' 15 const aa2 = a2 ?? 'whatever' 16 const aa3 = a3 ?? 'whatever' 17 const aa4 = a4 ?? 'whatever' 18 const aa5 = a5 ?? 'whatever' 19 const aa6 = a6 ?? 'whatever' 20 const aa7 = a7 ?? 'whatever' 21 const aa8 = a8 ?? 'whatever' 22 const aa9 = a9 ?? 'whatever'
|
| D | nullishCoalescingOperator_es2020.ts | 15 const aa1 = a1 ?? 'whatever' 16 const aa2 = a2 ?? 'whatever' 17 const aa3 = a3 ?? 'whatever' 18 const aa4 = a4 ?? 'whatever' 19 const aa5 = a5 ?? 'whatever' 20 const aa6 = a6 ?? 'whatever' 21 const aa7 = a7 ?? 'whatever' 22 const aa8 = a8 ?? 'whatever' 23 const aa9 = a9 ?? 'whatever'
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
| D | class_use_as.rs | 8 /// <div rustbindgen="true" replaces="whatever"></div> 11 pub struct whatever { struct 16 const UNINIT: ::std::mem::MaybeUninit<whatever> = in bindgen_test_layout_whatever() argument 20 ::std::mem::size_of::<whatever>(), in bindgen_test_layout_whatever() 22 concat!("Size of: ", stringify!(whatever)) in bindgen_test_layout_whatever() 25 ::std::mem::align_of::<whatever>(), in bindgen_test_layout_whatever() 27 concat!("Alignment of ", stringify!(whatever)) in bindgen_test_layout_whatever() 36 stringify!(whatever), in bindgen_test_layout_whatever() 45 pub c: whatever,
|
| D | class_no_members.rs | 10 pub struct whatever { struct 16 ::std::mem::size_of::<whatever>(), in bindgen_test_layout_whatever() argument 18 concat!("Size of: ", stringify!(whatever)) in bindgen_test_layout_whatever() 21 ::std::mem::align_of::<whatever>(), in bindgen_test_layout_whatever() 23 concat!("Alignment of ", stringify!(whatever)) in bindgen_test_layout_whatever()
|
| /third_party/unity/test/tests/ |
| D | test_unity_memory.c | 38 const char *testString = "whatever"; in testEqualMemory() 41 TEST_ASSERT_EQUAL_MEMORY("whatever", "whatever", 8); in testEqualMemory() 42 TEST_ASSERT_EQUAL_MEMORY("whatever", testString, 8); in testEqualMemory() 43 TEST_ASSERT_EQUAL_MEMORY(testString, "whatever", 8); in testEqualMemory() 44 TEST_ASSERT_EQUAL_MEMORY(testString, "whatever", 2); in testEqualMemory()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
| D | class_no_members.hpp | 4 class whatever { class 7 class whatever_child: public whatever { 10 class whatever_child_with_member: public whatever { 15 static_assert(sizeof(whatever) == 1, "Testing!");
|
| /third_party/openssl/util/perl/OpenSSL/ |
| D | config.pm | 64 # Strip off whatever prefix egcs prepends the number with. 93 [ 'Linux:[2-9]\..*', '${MACHINE}-whatever-linux2' ], 94 [ 'Linux:1\..*', '${MACHINE}-whatever-linux1' ], 98 [ 'BSD\/OS:4\..*', 'i486-whatever-bsdi4' ], 103 return "i586-whatever-bsdi" if $BSDVAR =~ m@Pentium@; 104 return "i386-whatever-bsdi"; 107 [ 'BSD\/386:.*|BSD\/OS:.*', '${MACHINE}-whatever-bsdi' ], 119 my $ARCH = 'whatever'; 124 [ 'DragonFly:.*', '${MACHINE}-whatever-dragonfly' ], 125 [ 'FreeBSD:.*', '${MACHINE}-whatever-freebsd' ], [all …]
|