Home
last modified time | relevance | path

Searched refs:void (Results 1 – 25 of 12272) sorted by relevance

12345678910>>...491

/third_party/typescript/tests/baselines/reference/
DparserAstSpans1.types9 i1_f1(): void;
10 >i1_f1 : () => void
13 i1_l1: () => void;
14 >i1_l1 : () => void
19 i1_nc_f1(): void;
20 >i1_nc_f1 : () => void
22 i1_nc_l1: () => void;
23 >i1_nc_l1 : () => void
28 f1(): void;
29 >f1 : () => void
[all …]
DcallWithMissingVoid.types17 declare const x: X<void>;
18 >x : X<void>
20 x.f() // no error because f expects void
21 >x.f() : { a: void; }
22 >x.f : (t: void) => { a: void; }
23 >x : X<void>
24 >f : (t: void) => { a: void; }
26 declare const xUnion: X<void | number>;
27 >xUnion : X<number | void>
30 >xUnion.f(42) : { a: number | void; }
[all …]
DunionTypeReduction2.types2 function f1(x: { f(): void }, y: { f(x?: string): void }) {
3 >f1 : (x: { f(): void;}, y: { f(x?: string): void; }) => void
4 >x : { f(): void; }
5 >f : () => void
6 >y : { f(x?: string): void; }
7 >f : (x?: string) => void
10 let z = !!true ? x : y; // { f(x?: string): void }
11 >z : { f(x?: string | undefined): void; }
12 >!!true ? x : y : { f(x?: string | undefined): void; }
16 >x : { f(): void; }
[all …]
DasyncMethodWithSuper_es6.types6 >x : () => void
9 >y : () => void
19 >simple : () => Promise<void>
23 >super.x() : void
24 >super.x : () => void
26 >x : () => void
30 >super.y() : void
31 >super.y : () => void
33 >y : () => void
37 >super["x"]() : void
[all …]
DprotectedMembersThisParameter.types5 protected secret(): void {}
6 >secret : () => void
17 >wrap : <T>() => void
26 >f : (this: T) => void
27 >function(this: T) { m.secret(); // should error } : (this: T) => void
31 >m.secret() : void
32 >m.secret : () => void
34 >secret : () => void
43 >a : () => void
50 >b : () => void
[all …]
DcallWithMissingVoidUndefinedUnknownAnyInJs(strict=true).types2 declare function f1(p: void): void;
3 >f1 : (p: void) => void
4 >p : void
6 declare function f2(p: undefined): void;
7 >f2 : (p: undefined) => void
10 declare function f3(p: unknown): void;
11 >f3 : (p: unknown) => void
14 declare function f4(p: any): void;
15 >f4 : (p: any) => void
18 interface I<T> { m(p: T): void; }
[all …]
DcallWithMissingVoidUndefinedUnknownAnyInJs(strict=false).types2 declare function f1(p: void): void;
3 >f1 : (p: void) => void
4 >p : void
6 declare function f2(p: undefined): void;
7 >f2 : (p: undefined) => void
10 declare function f3(p: unknown): void;
11 >f3 : (p: unknown) => void
14 declare function f4(p: any): void;
15 >f4 : (p: any) => void
18 interface I<T> { m(p: T): void; }
[all …]
Des2017basicAsync.types2 async (): Promise<void> => {
3 >async (): Promise<void> => { await 0;} : () => Promise<void>
11 >asyncFunc : () => Promise<void>
18 const asyncArrowFunc = async (): Promise<void> => {
19 >asyncArrowFunc : () => Promise<void>
20 >async (): Promise<void> => { await 0;} : () => Promise<void>
28 >asyncIIFE : () => Promise<void>
34 await (async function(): Promise<void> {
35 >await (async function(): Promise<void> { await 1; })() : void
36 >(async function(): Promise<void> { await 1; })() : Promise<void>
[all …]
DtemplateLiteralTypesPatterns.types19 >download : (hostSpec: Protocol<"http" | "https" | "ftp", string>) => void
24 >download("http://example.com/protocol") : void
25 >download : (hostSpec: `http://${string}` | `https://${string}` | `ftp://${string}`) => void
30 >download("example.com/noprotocol") : void
31 >download : (hostSpec: `http://${string}` | `https://${string}` | `ftp://${string}`) => void
36 >download("gopher://example.com/protocol") : void
37 >download : (hostSpec: `http://${string}` | `https://${string}` | `ftp://${string}`) => void
46 declare function bools(x: `${boolean}`): void;
47 >bools : (x: `${boolean}`) => void
52 >bools("true") : void
[all …]
DmappedTypes1.types39 type T30 = { [P in keyof any]: void };
40 >T30 : { [x: string]: void; }
42 type T31 = { [P in keyof string]: void };
43void; toString: void; charAt: void; charCodeAt: void; concat: void; indexOf: void; lastIndexOf: vo…
45 type T32 = { [P in keyof number]: void };
46 >T32 : { toString: void; toFixed: void; toExponential: void; toPrecision: void; valueOf: void; toLo…
48 type T33 = { [P in keyof boolean]: void };
49 >T33 : { valueOf: void; }
51 type T34 = { [P in keyof undefined]: void };
54 type T35 = { [P in keyof null]: void };
[all …]
DnodeModulesForbidenSyntax(module=node16).types3 const x = <T>() => <T><any>(void 0);
5 ><T>() => <T><any>(void 0) : <T>() => T
6 ><T><any>(void 0) : T
7 ><any>(void 0) : any
8 >(void 0) : undefined
9 >void 0 : undefined
17 const x = <T>() => <T><any>(void 0);
19 ><T>() => <T><any>(void 0) : <T>() => T
20 ><T><any>(void 0) : T
21 ><any>(void 0) : any
[all …]
DnodeModulesForbidenSyntax(module=nodenext).types3 const x = <T>() => <T><any>(void 0);
5 ><T>() => <T><any>(void 0) : <T>() => T
6 ><T><any>(void 0) : T
7 ><any>(void 0) : any
8 >(void 0) : undefined
9 >void 0 : undefined
17 const x = <T>() => <T><any>(void 0);
19 ><T>() => <T><any>(void 0) : <T>() => T
20 ><T><any>(void 0) : T
21 ><any>(void 0) : any
[all …]
DmoduleExportAlias.types6 >b.func1 : () => void
8 >func1 : () => void
11 >b.func2 : () => void
13 >func2 : () => void
16 >b.func3 : () => void
18 >func3 : () => void
21 >b.func4 : () => void
23 >func4 : () => void
26 >b.func5 : () => void
28 >func5 : () => void
[all …]
DcomparisonOperatorWithSubtypeObjectOnCallSignature.types17 var a1: { fn(): void };
18 >a1 : { fn(): void; }
19 >fn : () => void
21 var b1: { fn(): void };
22 >b1 : { fn(): void; }
23 >fn : () => void
25 var a2: { fn(a: number, b: string): void };
26 >a2 : { fn(a: number, b: string): void; }
27 >fn : (a: number, b: string) => void
31 var b2: { fn(a: number, b: string): void };
[all …]
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkGetStructureTypeImpl.inl6 template<> VkStructureType getStructureType<VkApplicationInfo> (void) argument
11 template<> VkStructureType getStructureType<VkDeviceQueueCreateInfo> (void) argument
16 template<> VkStructureType getStructureType<VkDeviceCreateInfo> (void) argument
21 template<> VkStructureType getStructureType<VkInstanceCreateInfo> (void) argument
26 template<> VkStructureType getStructureType<VkMemoryAllocateInfo> (void) argument
31 template<> VkStructureType getStructureType<VkMappedMemoryRange> (void) argument
36 template<> VkStructureType getStructureType<VkWriteDescriptorSet> (void) argument
41 template<> VkStructureType getStructureType<VkCopyDescriptorSet> (void) argument
46 template<> VkStructureType getStructureType<VkBufferCreateInfo> (void) argument
51 template<> VkStructureType getStructureType<VkBufferViewCreateInfo> (void) argument
[all …]
DvkDeviceFeaturesForContextDecl.inl6 …PhysicalDeviceTransformFeedbackFeaturesEXT& getTransformFeedbackFeaturesEXT (void) const;
7 const vk::VkPhysicalDeviceDynamicRenderingFeatures& getDynamicRenderingFeatures (void) …
8 …VkPhysicalDeviceCornerSampledImageFeaturesNV& getCornerSampledImageFeatures (void) const;
9 const vk::VkPhysicalDeviceMultiviewFeatures& getMultiviewFeatures (void) const;
10 …alDeviceTextureCompressionASTCHDRFeatures& getTextureCompressionASTCHDRFeatures (void) const;
11 const vk::VkPhysicalDeviceASTCDecodeFeaturesEXT& getASTCDecodeFeaturesEXT (void) const;
12 …PhysicalDevicePipelineRobustnessFeaturesEXT& getPipelineRobustnessFeaturesEXT (void) const;
13 …icalDeviceConditionalRenderingFeaturesEXT& getConditionalRenderingFeaturesEXT (void) const;
14 const vk::VkPhysicalDeviceShaderFloat16Int8Features& getShaderFloat16Int8Features (void) …
15 const vk::VkPhysicalDevice16BitStorageFeatures& get16BitStorageFeatures (void) const;
[all …]
DvkDeviceFeaturesForDefaultDeviceDefs.inl6 const VkPhysicalDeviceTransformFeedbackFeaturesEXT& getTransformFeedbackFeaturesEXT (void
7 const VkPhysicalDeviceDynamicRenderingFeatures& getDynamicRenderingFeatures (void) cons…
8 const VkPhysicalDeviceCornerSampledImageFeaturesNV& getCornerSampledImageFeatures (void) …
9 const VkPhysicalDeviceMultiviewFeatures& getMultiviewFeatures (void) const { return m…
10 …reCompressionASTCHDRFeatures& getTextureCompressionASTCHDRFeatures (void) const { return m_d…
11 const VkPhysicalDeviceASTCDecodeFeaturesEXT& getASTCDecodeFeaturesEXT (void) const { re…
12 const VkPhysicalDevicePipelineRobustnessFeaturesEXT& getPipelineRobustnessFeaturesEXT (void
13 …ditionalRenderingFeaturesEXT& getConditionalRenderingFeaturesEXT (void) const { return m_d…
14 const VkPhysicalDeviceShaderFloat16Int8Features& getShaderFloat16Int8Features (void) cons…
15 const VkPhysicalDevice16BitStorageFeatures& get16BitStorageFeatures (void) const { re…
[all …]
DvkDevicePropertiesForContextDecl.inl6 …VkPhysicalDeviceTransformFeedbackPropertiesEXT& getTransformFeedbackPropertiesEXT (void) const;
7 const vk::VkPhysicalDeviceMultiviewProperties& getMultiviewProperties (void) const;
8 …PhysicalDevicePipelineRobustnessPropertiesEXT& getPipelineRobustnessPropertiesEXT (void) const;
9 const vk::VkPhysicalDeviceIDProperties& getIDProperties (void) const;
10 const vk::VkPhysicalDevicePushDescriptorPropertiesKHR& getPushDescriptorProperties (void) co…
11 …viceMultiviewPerViewAttributesPropertiesNVX& getMultiviewPerViewAttributesPropertiesX (void) const;
12 const vk::VkPhysicalDeviceDiscardRectanglePropertiesEXT& getDiscardRectanglePropertiesEXT (void
13 …viceConservativeRasterizationPropertiesEXT& getConservativeRasterizationPropertiesEXT (void) const;
14 const vk::VkPhysicalDevicePerformanceQueryPropertiesKHR& getPerformanceQueryProperties (void) …
15 const vk::VkPhysicalDevicePointClippingProperties& getPointClippingProperties (void) const;
[all …]
/third_party/skia/tests/sksl/runtime_errors/
DProgramTooLarge_StackDepth.skvm5 void f1()
6 void f2()
7 void f3()
8 void f4()
9 void f5()
10 void f6()
11 void f7()
12 void f8()
13 void f9()
14 void f10()
[all …]
/third_party/skia/resources/sksl/errors/
DMismatchedNumbers.sksl6 void f_eq_int_literal_ok() { f = 1; }
7 void f_plus_int_literal_ok() { f + 1; }
8 void f_minus_int_literal_ok() { f - 1; }
9 void f_mul_int_literal_ok() { f * 1; }
10 void f_div_int_literal_ok() { f / 1; }
11 void int_literal_plus_f_ok() { 1 + f; }
12 void int_literal_minus_f_ok() { 1 - f; }
13 void int_literal_mul_f_ok() { 1 * f; }
14 void int_literal_div_f_ok() { 1 / f; }
17 void u_eq_int_literal_ok() { u = 1; }
[all …]
/third_party/skia/resources/sksl/runtime_errors/
DProgramTooLarge_StackDepth.rts2 void f1();
9 void f52() { color = half4(1); }
10 void f51() { f52(); }
11 void f50() { f51(); }
12 void f49() { f50(); }
13 void f48() { f49(); }
14 void f47() { f48(); }
15 void f46() { f47(); }
16 void f45() { f46(); }
17 void f44() { f45(); }
[all …]
/third_party/skia/resources/sksl/runtime/
DLargeProgram_StackDepth.rts2 void f1();
9 void f49() { color = half4(1); }
10 void f48() { f49(); }
11 void f47() { f48(); }
12 void f46() { f47(); }
13 void f45() { f46(); }
14 void f44() { f45(); }
15 void f43() { f44(); }
16 void f42() { f43(); }
17 void f41() { f42(); }
[all …]
/third_party/vk-gl-cts/framework/opengl/wrapper/
DglwFunctionTypes.inl6 typedef GLW_APICALL void (GLW_APIENTRY* glActiveShaderProgramFunc) (GLuint pipeline, GLuin…
7 typedef GLW_APICALL void (GLW_APIENTRY* glActiveTextureFunc) (GLenum texture);
8 typedef GLW_APICALL void (GLW_APIENTRY* glAttachShaderFunc) (GLuint program, GLuint shad…
9 typedef GLW_APICALL void (GLW_APIENTRY* glBeginConditionalRenderFunc) (GLuint id, GLenum mo…
10 typedef GLW_APICALL void (GLW_APIENTRY* glBeginQueryFunc) (GLenum target, GLuint id);
11 typedef GLW_APICALL void (GLW_APIENTRY* glBeginQueryIndexedFunc) (GLenum target, GLuint i…
12 typedef GLW_APICALL void (GLW_APIENTRY* glBeginTransformFeedbackFunc) (GLenum primitiveMode…
13 typedef GLW_APICALL void (GLW_APIENTRY* glBindAttribLocationFunc) (GLuint program, GLuint …
14 typedef GLW_APICALL void (GLW_APIENTRY* glBindBufferFunc) (GLenum target, GLuint buffer);
15 typedef GLW_APICALL void (GLW_APIENTRY* glBindBufferBaseFunc) (GLenum target, GLuint inde…
[all …]
DglwApi.inl916 void glwActiveShaderProgram (GLuint pipeline, GLuint program);
917 void glwActiveTexture (GLenum texture);
918 void glwAttachShader (GLuint program, GLuint shader);
919 void glwBeginConditionalRender (GLuint id, GLenum mode);
920 void glwBeginQuery (GLenum target, GLuint id);
921 void glwBeginQueryIndexed (GLenum target, GLuint index, GLuint id);
922 void glwBeginTransformFeedback (GLenum primitiveMode);
923 void glwBindAttribLocation (GLuint program, GLuint index, const GLchar *name);
924 void glwBindBuffer (GLenum target, GLuint buffer);
925 void glwBindBufferBase (GLenum target, GLuint index, GLuint buffer);
[all …]
/third_party/glslang/Test/baseResults/
Drecurse1.vert.out4 0:3 Function Definition: main( ( global void)
6 0:9 Function Definition: self( ( global void)
9 0:11 Function Call: self( ( global void)
10 0:16 Function Definition: foo(f1; ( global void)
21 0:23 Function Call: foo(f1; ( global void)
27 0:32 Function Definition: A( ( global void)
30 0:32 Function Call: B( ( global void)
31 0:33 Function Definition: C( ( global void)
34 0:33 Function Call: D( ( global void)
35 0:34 Function Definition: B( ( global void)
[all …]

12345678910>>...491