/third_party/typescript/tests/baselines/reference/ |
D | nonNullReferenceMatching.types | 27 props!: ComponentProps; 28 >props : ComponentProps 32 …props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref); ty… 36 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref… 37 >typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref… 38 >typeof this.props.thumbYProps!.elementRef === 'function' : boolean 39 >typeof this.props.thumbYProps!.elementRef : "string" | "number" | "bigint" | "boolean" | "symbol" … 40 >this.props.thumbYProps!.elementRef : ElementRef | undefined 41 >this.props.thumbYProps! : ThumbProps 42 >this.props.thumbYProps : ThumbProps | undefined [all …]
|
D | inlineJsxFactoryDeclarationsLocalTypes.js | 11 props: { 18 interface ElementAttributesProperty { props: any; } 31 props: { 38 interface ElementAttributesProperty { props: any; } 47 …nst MySFC = (props: {x: number, y: number, children?: predom.JSX.Element[]}) => <p>{props.x} + {pr… 51 constructor(public props: {x: number, y: number, children?: predom.JSX.Element[]}) {} argument 54 {this.props.x} + {this.props.y} = {this.props.x + this.props.y} 55 {...this.props.children} 70 const DOMSFC = (props: {x: number, y: number, children?: dom.JSX.Element[]}) => <p>{props.x} + {pro… 74 constructor(public props: {x: number, y: number, children?: dom.JSX.Element[]}) {} argument [all …]
|
D | nonNullReferenceMatching.js | 14 props!: ComponentProps; field in Component 16 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref… 18 …typeof (this.props.thumbYProps!.elementRef) === 'function' && this.props.thumbYProps!.elementRef(r… 20 …typeof ((this.props).thumbYProps!.elementRef)! === 'function' && this.props.thumbYProps!.elementRe… 22 … typeof this.props.thumbXProps.elementRef === 'function' && this.props.thumbXProps.elementRef(ref); 24 …typeof this.props.thumbXProps.elementRef === 'function' && (this.props).thumbXProps.elementRef(ref… 26 …typeof this.props.thumbXProps.elementRef === 'function' && (this.props.thumbXProps).elementRef(ref… 28 …typeof this.props.thumbXProps.elementRef === 'function' && ((this.props)!.thumbXProps)!.elementRef… 30 …typeof (this.props.thumbXProps).elementRef === 'function' && ((this.props)!.thumbXProps)!.elementR… 32 …typeof this.props!.thumbXProps!.elementRef === 'function' && ((this.props)!.thumbXProps)!.elementR… [all …]
|
D | nonNullReferenceMatching.symbols | 30 props!: ComponentProps; 31 >props : Symbol(Component.props, Decl(nonNullReferenceMatching.ts, 11, 17)) 39 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref… 40 >this.props.thumbYProps!.elementRef : Symbol(elementRef, Decl(nonNullReferenceMatching.ts, 2, 19)) 41 >this.props.thumbYProps : Symbol(thumbYProps, Decl(nonNullReferenceMatching.ts, 6, 23)) 42 >this.props : Symbol(Component.props, Decl(nonNullReferenceMatching.ts, 11, 17)) 44 >props : Symbol(Component.props, Decl(nonNullReferenceMatching.ts, 11, 17)) 47 >this.props.thumbYProps!.elementRef : Symbol(elementRef, Decl(nonNullReferenceMatching.ts, 2, 19)) 48 >this.props.thumbYProps : Symbol(thumbYProps, Decl(nonNullReferenceMatching.ts, 6, 23)) 49 >this.props : Symbol(Component.props, Decl(nonNullReferenceMatching.ts, 11, 17)) [all …]
|
D | jsxSpreadOverwritesAttributeStrict.types | 20 const props: Props = { a: 1, b: 1 }; 21 >props : Props 28 const Foo = (props: Props) => <div>{ props.a }</div>; 29 >Foo : (props: Props) => JSX.Element 30 >(props: Props) => <div>{ props.a }</div> : (props: Props) => JSX.Element 31 >props : Props 32 ><div>{ props.a }</div> : JSX.Element 34 >props.a : number 35 >props : Props 40 const a1 = <Foo {...props}></Foo>; [all …]
|
D | inlineJsxFactoryDeclarationsLocalTypes.types | 12 props: { 13 >props : { children?: Element[]; } 24 interface ElementAttributesProperty { props: any; } 25 >props : any 47 props: { 48 >props : { children?: Element[]; } 59 interface ElementAttributesProperty { props: any; } 60 >props : any 76 …nst MySFC = (props: {x: number, y: number, children?: predom.JSX.Element[]}) => <p>{props.x} + {pr… 77 >MySFC : (props: { x: number; y: number; children?: predom.JSX.Element[];}) => predom.JSX.… [all …]
|
D | tsxGenericAttributesType8.types | 5 declare function Component<T>(props: T) : JSX.Element; 6 >Component : <T>(props: T) => JSX.Element 7 >props : T 10 const decorator = function <U>(props: U) { 11 >decorator : <U>(props: U) => JSX.Element 12 >function <U>(props: U) { return <Component {...props} />;} : <U>(props: U) => JSX.Element 13 >props : U 15 return <Component {...props} />; 16 ><Component {...props} /> : JSX.Element 17 >Component : <T>(props: T) => JSX.Element [all …]
|
D | tsxGenericAttributesType7.types | 5 declare function Component<T>(props: T) : JSX.Element; 6 >Component : <T>(props: T) => JSX.Element 7 >props : T 10 const decorator = function <U>(props: U) { 11 >decorator : <U>(props: U) => JSX.Element 12 >function <U>(props: U) { return <Component {...props} />;} : <U>(props: U) => JSX.Element 13 >props : U 15 return <Component {...props} />; 16 ><Component {...props} /> : JSX.Element 17 >Component : <T>(props: T) => JSX.Element [all …]
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.types | 3 (props: P & { children?: number }, context?: any): null; 4 >props : P & { children?: number; } 10 const TestComponent: StatelessComponent<TestProps> = (props) => { 12 >(props) => { return null;} : (props: TestProps & { children?: number; }) => any 13 >props : TestProps & { children?: number; } 25 props: TProps; 26 >props : TProps 34 TestComponent({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }}); 35 >TestComponent({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }}) : null 37 >{icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }} : { icon: { props: { IN… [all …]
|
D | inlineJsxFactoryDeclarationsLocalTypes.symbols | 20 props: { 21 >props : Symbol(Element.props, Decl(renderer.d.ts, 6, 29)) 37 interface ElementAttributesProperty { props: any; } 39 >props : Symbol(ElementAttributesProperty.props, Decl(renderer.d.ts, 14, 45)) 71 props: { 72 >props : Symbol(Element.props, Decl(renderer2.d.ts, 6, 32)) 88 interface ElementAttributesProperty { props: any; } 90 >props : Symbol(ElementAttributesProperty.props, Decl(renderer2.d.ts, 14, 45)) 108 …nst MySFC = (props: {x: number, y: number, children?: predom.JSX.Element[]}) => <p>{props.x} + {pr… 110 >props : Symbol(props, Decl(component.tsx, 3, 22)) [all …]
|
D | jsxSpreadOverwritesAttributeStrict.js | 12 const props: Props = { a: 1, b: 1 }; variable 13 const Foo = (props: Props) => <div>{ props.a }</div>; 16 const a1 = <Foo {...props}></Foo>; 17 const a2 = <Foo d={1} {...props}></Foo>; 20 const b1 = <Foo a={1} {...props}></Foo>; 21 const b2 = <Foo a={1} b={2} {...props}></Foo>; 22 const b3 = <Foo a={1} d={1} {...props} {...{ d: 1 }}></Foo>; 23 const b4 = <Foo a={1} d={1} {...props} {...{ a: 1, d: 1 }}></Foo>; 30 var props = { a: 1, b: 1 }; variable 31 var Foo = function (props) { return <div>{props.a}</div>; }; argument [all …]
|
D | tsxGenericAttributesType1.types | 7 …elessComponent<T>): React.StatelessComponent<T> { return (props) => <Component {...props}></Com… 12 return (props) => <Component {...props}></Component> 13 >(props) => <Component {...props}></Component> : (props: T & { children?: React.ReactNode; }) => JS… 14 >props : T & { children?: React.ReactNode; } 15 ><Component {...props}></Component> : JSX.Element 17 >props : T & { children?: React.ReactNode; } 24 …elessComponent<T>): React.StatelessComponent<T> { return (props) => <Component {...props} x={2}… 30 return (props) => <Component {...props} x={2} ></Component> 31 >(props) => <Component {...props} x={2} ></Component> : (props: T & { children?: React.ReactNode; }… 32 >props : T & { children?: React.ReactNode; } [all …]
|
D | smartSelection_emptyRanges.baseline | 3 if (this.props.username) { 14 if (this.props.username) { 22 if (this.props.username) { 30 if (this.props.username) { 40 if (this.props.username/**/) { 50 this.props.username 53 if (this.props.username) { 59 ••••if (this.props.username) { 66 if (this.props.username) { 74 if (this.props.username) { [all …]
|
/third_party/libsoup/libsoup/ |
D | soup-socket-properties.c | 24 SoupSocketProperties *props; in soup_socket_properties_new() local 26 props = g_slice_new (SoupSocketProperties); in soup_socket_properties_new() 27 props->ref_count = 1; in soup_socket_properties_new() 29 props->async_context = async_context ? g_main_context_ref (async_context) : NULL; in soup_socket_properties_new() 30 props->use_thread_context = use_thread_context; in soup_socket_properties_new() 32 props->proxy_resolver = proxy_resolver ? g_object_ref (proxy_resolver) : NULL; in soup_socket_properties_new() 33 props->local_addr = local_addr ? g_object_ref (local_addr) : NULL; in soup_socket_properties_new() 35 props->tlsdb = tlsdb ? g_object_ref (tlsdb) : NULL; in soup_socket_properties_new() 36 props->tls_interaction = tls_interaction ? g_object_ref (tls_interaction) : NULL; in soup_socket_properties_new() 37 props->ssl_strict = ssl_strict; in soup_socket_properties_new() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | codec_desc.c | 41 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, 48 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, 56 .props = AV_CODEC_PROP_LOSSY, 63 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, 70 .props = AV_CODEC_PROP_LOSSY, 77 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER, 84 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, 93 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, 100 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, 107 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY, [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | object-get-own-property-symbols.js | 23 var props = Object.getOwnPropertySymbols (arr); 25 assert (props.indexOf ('0') === -1); 26 assert (props.indexOf ('1') === -1); 27 assert (props.indexOf ('2') === -1); 28 assert (props.indexOf ('length') === -1); 29 assert (props.length === 0); 37 props = Object.getOwnPropertySymbols (obj); 39 assert (props.indexOf(a) !== -1); 40 assert (props.indexOf(b) !== -1); 41 assert (props.indexOf(c) !== -1); [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | object-keys.js | 17 var props = Object.keys(arr); 19 assert (props.indexOf("0") !== -1); 20 assert (props.indexOf("1") !== -1); 21 assert (props.indexOf("2") !== -1); 22 assert (props.length === 3); 26 props = Object.keys(obj); 28 assert (props.indexOf("key1") !== -1); 29 assert (props.indexOf("key2") !== -1); 30 assert (props.indexOf("key3") !== -1); 31 assert (props.indexOf("key4") !== -1); [all …]
|
D | object-get-own-property-names.js | 17 var props = Object.getOwnPropertyNames(arr); 19 assert (props.indexOf("0") !== -1); 20 assert (props.indexOf("1") !== -1); 21 assert (props.indexOf("2") !== -1); 22 assert (props.indexOf("length") !== -1); 23 assert (props.length === 4); 27 props = Object.getOwnPropertyNames(obj); 29 assert (props.indexOf("key1") !== -1); 30 assert (props.indexOf("key2") !== -1); 31 assert (props.indexOf("key3") !== -1); [all …]
|
/third_party/icu/icu4c/source/common/ |
D | uchar.cpp | 50 uint32_t props; in u_charType() local 51 GET_PROPS(c, props); in u_charType() 52 return (int8_t)GET_CATEGORY(props); in u_charType() 91 uint32_t props; in u_islower() local 92 GET_PROPS(c, props); in u_islower() 93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 99 uint32_t props; in u_isupper() local 100 GET_PROPS(c, props); in u_isupper() 101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 107 uint32_t props; in u_istitle() local [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | uchar.cpp | 50 uint32_t props; in u_charType() local 51 GET_PROPS(c, props); in u_charType() 52 return (int8_t)GET_CATEGORY(props); in u_charType() 91 uint32_t props; in u_islower() local 92 GET_PROPS(c, props); in u_islower() 93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 99 uint32_t props; in u_isupper() local 100 GET_PROPS(c, props); in u_isupper() 101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 107 uint32_t props; in u_istitle() local [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | uchar.cpp | 50 uint32_t props; in u_charType() local 51 GET_PROPS(c, props); in u_charType() 52 return (int8_t)GET_CATEGORY(props); in u_charType() 91 uint32_t props; in u_islower() local 92 GET_PROPS(c, props); in u_islower() 93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 99 uint32_t props; in u_isupper() local 100 GET_PROPS(c, props); in u_isupper() 101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 107 uint32_t props; in u_istitle() local [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | uchar.cpp | 50 uint32_t props; in u_charType() local 51 GET_PROPS(c, props); in u_charType() 52 return (int8_t)GET_CATEGORY(props); in u_charType() 91 uint32_t props; in u_islower() local 92 GET_PROPS(c, props); in u_islower() 93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower() 99 uint32_t props; in u_isupper() local 100 GET_PROPS(c, props); in u_isupper() 101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper() 107 uint32_t props; in u_istitle() local [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | nonNullReferenceMatching.ts | 14 props!: ComponentProps; 16 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref… 18 …typeof (this.props.thumbYProps!.elementRef) === 'function' && this.props.thumbYProps!.elementRef(r… 20 …typeof ((this.props).thumbYProps!.elementRef)! === 'function' && this.props.thumbYProps!.elementRe… 22 … typeof this.props.thumbXProps.elementRef === 'function' && this.props.thumbXProps.elementRef(ref); 24 …typeof this.props.thumbXProps.elementRef === 'function' && (this.props).thumbXProps.elementRef(ref… 26 …typeof this.props.thumbXProps.elementRef === 'function' && (this.props.thumbXProps).elementRef(ref… 28 …typeof this.props.thumbXProps.elementRef === 'function' && ((this.props)!.thumbXProps)!.elementRef… 30 …typeof (this.props.thumbXProps).elementRef === 'function' && ((this.props)!.thumbXProps)!.elementR… 32 …typeof this.props!.thumbXProps!.elementRef === 'function' && ((this.props)!.thumbXProps)!.elementR…
|
/third_party/node/deps/npm/docs/src/components/home/ |
D | Terminal.js | 9 background-color: ${(props) => props.theme.colors.purpleBlack}; 10 border: 2px solid ${(props) => props.theme.colors.purpleBlack}; 11 color: ${(props) => props.theme.colors.white}; 18 top: ${(props) => props.top}; 19 left: ${(props) => props.left}; 25 background-color: ${(props) => props.theme.colors.white}; 36 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) { 45 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) { 65 color: ${(props) => props.theme.colors.red}; 87 @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
|
/third_party/typescript/tests/cases/conformance/jsx/inline/ |
D | inlineJsxFactoryDeclarationsLocalTypes.tsx | 10 props: { 17 interface ElementAttributesProperty { props: any; } 30 props: { 37 interface ElementAttributesProperty { props: any; } 46 …nst MySFC = (props: {x: number, y: number, children?: predom.JSX.Element[]}) => <p>{props.x} + {pr… 50 constructor(public props: {x: number, y: number, children?: predom.JSX.Element[]}) {} 53 {this.props.x} + {this.props.y} = {this.props.x + this.props.y} 54 {...this.props.children} 69 const DOMSFC = (props: {x: number, y: number, children?: dom.JSX.Element[]}) => <p>{props.x} + {pro… 73 constructor(public props: {x: number, y: number, children?: dom.JSX.Element[]}) {} [all …]
|