/third_party/rust/crates/nix/src/sys/socket/ |
D | sockopt.rs | 177 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, bool) => { 179 $name, Both, $level, $flag, bool, GetBool, SetBool); 182 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, u8) => { 184 $name, Both, $level, $flag, u8, GetU8, SetU8); 187 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, usize) => { 189 $name, Both, $level, $flag, usize, GetUsize, SetUsize); 192 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, 196 $name, Both, $level, $flag, OsString, GetOsString<$array>, 236 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, $ty:ty, 247 ($(#[$attr:meta])* $name:ident, Both, $level:expr, $flag:path, $ty:ty) => { [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | typedefCrossModule.types | 10 /** @typedef {A | B} Both */ 33 /** @typedef {A | B} Both */ 50 /** @typedef {A | B} Both */ 68 /** @type {import('./mod1').Both} */ 70 >both1 : import("tests/cases/conformance/jsdoc/mod1").Both 77 /** @type {import('./mod2').Both} */ 79 >both2 : import("tests/cases/conformance/jsdoc/mod2").Both 82 /** @type {import('./mod3').Both} */ 84 >both3 : import("tests/cases/conformance/jsdoc/mod3").Both
|
D | typeofStripsFreshness.types | 33 type Both = Another | All; 34 >Both : Both 36 const result2: Collection<Both> = new Collection(); 37 >result2 : Collection<Both> 38 >new Collection() : Collection<Both>
|
D | flowControlTypeGuardThenSwitch.types | 35 type Both = A | B; 36 >Both : Both 38 function isBoth(x: Base): x is Both { 39 >isBoth : (x: Base) => x is Both 52 >isBoth : (x: Base) => x is Both 57 >foo : Both
|
D | unionTypeWithIndexSignature.types | 109 type Both = { s: number, '0': number, [sym]: boolean } | { [n: number]: number, [s: string]: string… 110 >Both : Both 118 declare var both: Both 119 >both : Both 124 >both : Both 131 >both : Both 138 >both : Both 145 >both : Both 152 >both : Both
|
D | unionTypeWithIndexSignature.errors.txt | 4 …ent implicitly has an 'any' type because expression of type '1' can't be used to index type 'Both'. 5 Property '1' does not exist on type 'Both'. 7 …ly has an 'any' type because expression of type 'unique symbol' can't be used to index type 'Both'. 8 Property '[sym]' does not exist on type 'Both'. 36 …type Both = { s: number, '0': number, [sym]: boolean } | { [n: number]: number, [s: string]: strin… 37 declare var both: Both 42 …ent implicitly has an 'any' type because expression of type '1' can't be used to index type 'Both'. 43 !!! error TS7053: Property '1' does not exist on type 'Both'. 49 …ly has an 'any' type because expression of type 'unique symbol' can't be used to index type 'Both'. 50 !!! error TS7053: Property '[sym]' does not exist on type 'Both'.
|
D | typeofStripsFreshness.symbols | 42 type Both = Another | All; 43 >Both : Symbol(Both, Decl(typeofStripsFreshness.ts, 14, 30)) 47 const result2: Collection<Both> = new Collection(); 50 >Both : Symbol(Both, Decl(typeofStripsFreshness.ts, 14, 30))
|
D | typedefCrossModule.symbols | 10 /** @typedef {A | B} Both */ 30 /** @typedef {A | B} Both */ 45 /** @typedef {A | B} Both */ 59 /** @type {import('./mod1').Both} */ 65 /** @type {import('./mod2').Both} */ 70 /** @type {import('./mod3').Both} */
|
D | declFileTypeAnnotationVisibilityErrorAccessors.types | 46 // Both - getter without annotation, setter with annotation 59 // Both - with annotation 92 // Both - getter without annotation, setter with annotation 105 // Both - with annotation 142 // Both - getter without annotation, setter with annotation 158 // Both - with annotation
|
D | flowControlTypeGuardThenSwitch.symbols | 46 type Both = A | B; 47 >Both : Symbol(Both, Decl(flowControlTypeGuardThenSwitch.ts, 17, 1)) 51 function isBoth(x: Base): x is Both { 56 >Both : Symbol(Both, Decl(flowControlTypeGuardThenSwitch.ts, 17, 1))
|
D | unionTypeWithIndexSignature.symbols | 92 type Both = { s: number, '0': number, [sym]: boolean } | { [n: number]: number, [s: string]: string… 93 >Both : Symbol(Both, Decl(unionTypeWithIndexSignature.ts, 18, 20)) 101 declare var both: Both 103 >Both : Symbol(Both, Decl(unionTypeWithIndexSignature.ts, 18, 20))
|
D | declFileTypeAnnotationVisibilityErrorAccessors.symbols | 47 // Both - getter without annotation, setter with annotation 60 // Both - with annotation 96 // Both - getter without annotation, setter with annotation 109 // Both - with annotation 149 // Both - getter without annotation, setter with annotation 165 // Both - with annotation
|
D | typeofStripsFreshness.js | 18 type Both = Another | All; 20 const result2: Collection<Both> = new Collection();
|
D | flowControlTypeGuardThenSwitch.js | 21 type Both = A | B; 22 function isBoth(x: Base): x is Both {
|
D | unionTypeWithIndexSignature.js | 21 type Both = { s: number, '0': number, [sym]: boolean } | { [n: number]: number, [s: string]: string… 22 declare var both: Both
|
/third_party/rust/crates/rust-std-candidates/zip_longest/ |
D | lib.rs | 44 (Some(a), Some(b)) => Some(EitherOrBoth::Both(a, b)), in next() 72 (Some(a), Some(b)) => Some(EitherOrBoth::Both(a, b)), in next_back() 95 Both(A, B), enumerator 124 assert_eq!(it.next(), Some(EitherOrBoth::Both(1, 1))); in test_double_ended() 125 assert_eq!(it.next(), Some(EitherOrBoth::Both(2, 2))); in test_double_ended() 128 assert_eq!(it.next_back(), Some(EitherOrBoth::Both(4, 7))); in test_double_ended() 129 assert_eq!(it.next(), Some(EitherOrBoth::Both(3, 3))); in test_double_ended()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | IntermRebuild.cpp | 339 return {originalNode, VisitBits::Both}; in traversePre() 865 return {node, VisitBits::Both}; in visitSymbolPre() 870 return {node, VisitBits::Both}; in visitConstantUnionPre() 875 return {node, VisitBits::Both}; in visitFunctionPrototypePre() 880 return {node, VisitBits::Both}; in visitPreprocessorDirectivePre() 885 return {node, VisitBits::Both}; in visitUnaryPre() 890 return {node, VisitBits::Both}; in visitBinaryPre() 895 return {node, VisitBits::Both}; in visitTernaryPre() 900 return {node, VisitBits::Both}; in visitSwizzlePre() 905 return {node, VisitBits::Both}; in visitIfElsePre() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | typeofStripsFreshness.ts | 17 type Both = Another | All; alias 19 const result2: Collection<Both> = new Collection();
|
D | flowControlTypeGuardThenSwitch.ts | 20 type Both = A | B; alias 21 function isBoth(x: Base): x is Both {
|
/third_party/typescript/tests/cases/conformance/types/union/ |
D | unionTypeWithIndexSignature.ts | 22 type Both = { s: number, '0': number, [sym]: boolean } | { [n: number]: number, [s: string]: string… alias 23 declare var both: Both
|
/third_party/rust/crates/nix/test/ |
D | test_sendfile.rs | 96 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_freebsd() 145 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_dragonfly() 194 wr.shutdown(Shutdown::Both).unwrap(); in test_sendfile_darwin()
|
/third_party/elfutils/libdw/ |
D | libdw.map | 206 # Replaced ELFUTILS_0.122 versions. Both versions point to the 304 # Replaced ELFUTILS_0.144 version. Both versions point to the 358 # Replaced ELFUTILS_0.175 versions. Both versions point to the
|
/third_party/PyYAML/tests/data/ |
D | spec-09-18.data | 8 - >-1 # Both indicators
|
/third_party/ffmpeg/tests/ref/fate/ |
D | sub-textenc | 39 Both lines 192 Both line should be strikethrough, 211 Both line should be strikethrough but
|
D | sub-webvttenc | 35 <u>Both lines 160 Both line should be strikethrough, 176 Both line should be strikethrough but
|