/third_party/mesa3d/src/vulkan/util/ |
D | vk_physical_device.c | 120 VkPhysicalDeviceProperties2 props2; in vk_common_GetPhysicalDeviceProperties() local 121 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in vk_common_GetPhysicalDeviceProperties() 122 props2.pNext = NULL; in vk_common_GetPhysicalDeviceProperties() 125 &props2); in vk_common_GetPhysicalDeviceProperties() 126 *pProperties = props2.properties; in vk_common_GetPhysicalDeviceProperties() 136 VkPhysicalDeviceMemoryProperties2 props2; in vk_common_GetPhysicalDeviceMemoryProperties() local 137 props2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2; in vk_common_GetPhysicalDeviceMemoryProperties() 138 props2.pNext = NULL; in vk_common_GetPhysicalDeviceMemoryProperties() 141 &props2); in vk_common_GetPhysicalDeviceMemoryProperties() 146 pMemoryProperties->memoryHeapCount = props2.memoryProperties.memoryHeapCount; in vk_common_GetPhysicalDeviceMemoryProperties() [all …]
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_legacy.c | 24 VkQueueFamilyProperties2 props2[*count]; in tu_GetPhysicalDeviceQueueFamilyProperties() local 26 props2[i].sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2; in tu_GetPhysicalDeviceQueueFamilyProperties() 27 props2[i].pNext = NULL; in tu_GetPhysicalDeviceQueueFamilyProperties() 29 tu_GetPhysicalDeviceQueueFamilyProperties2(pdev, count, props2); in tu_GetPhysicalDeviceQueueFamilyProperties() 31 props[i] = props2[i].queueFamilyProperties; in tu_GetPhysicalDeviceQueueFamilyProperties() 56 VkSparseImageFormatProperties2 props2[*count]; in tu_GetPhysicalDeviceSparseImageFormatProperties() local 58 props2[i].sType = VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2; in tu_GetPhysicalDeviceSparseImageFormatProperties() 59 props2[i].pNext = NULL; in tu_GetPhysicalDeviceSparseImageFormatProperties() 61 tu_GetPhysicalDeviceSparseImageFormatProperties2(pdev, &info, count, props2); in tu_GetPhysicalDeviceSparseImageFormatProperties() 63 props[i] = props2[i].properties; in tu_GetPhysicalDeviceSparseImageFormatProperties()
|
/third_party/typescript/tests/baselines/reference/ |
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).types | 5 const props2 = { answer: 42 } 6 >props2 : { answer: number; } 11 const a2 = <div key="foo" {...props2}>text</div>; 13 ><div key="foo" {...props2}>text</div> : JSX.Element 16 >props2 : { answer: number; } 19 const b2 = <div {...props2} key="bar">text</div>; 21 ><div {...props2} key="bar">text</div> : JSX.Element 23 >props2 : { answer: number; }
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).types | 5 const props2 = { answer: 42 } 6 >props2 : { answer: number; } 11 const a2 = <div key="foo" {...props2}>text</div>; 13 ><div key="foo" {...props2}>text</div> : JSX.Element 16 >props2 : { answer: number; } 19 const b2 = <div {...props2} key="bar">text</div>; 21 ><div {...props2} key="bar">text</div> : JSX.Element 23 >props2 : { answer: number; }
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).symbols | 5 const props2 = { answer: 42 } 6 >props2 : Symbol(props2, Decl(react.tsx, 3, 5)) 9 const a2 = <div key="foo" {...props2}>text</div>; 13 >props2 : Symbol(props2, Decl(react.tsx, 3, 5)) 16 const b2 = <div {...props2} key="bar">text</div>; 19 >props2 : Symbol(props2, Decl(react.tsx, 3, 5))
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).symbols | 5 const props2 = { answer: 42 } 6 >props2 : Symbol(props2, Decl(react.tsx, 3, 5)) 9 const a2 = <div key="foo" {...props2}>text</div>; 13 >props2 : Symbol(props2, Decl(react.tsx, 3, 5)) 16 const b2 = <div {...props2} key="bar">text</div>; 19 >props2 : Symbol(props2, Decl(react.tsx, 3, 5))
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).js | 16 const props2 = { answer: 42 } variable 17 const a2 = <div key="foo" {...props2}>text</div>; 18 const b2 = <div {...props2} key="bar">text</div>; 63 var props2 = { answer: 42 }; variable 64 var a2 = jsx_runtime_1.jsx("div", __assign({}, props2, { children: "text" }), "foo"); 65 var b2 = react_1.createElement("div", __assign({}, props2, { key: "bar" }), "text");
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).js | 16 const props2 = { answer: 42 } variable 17 const a2 = <div key="foo" {...props2}>text</div>; 18 const b2 = <div {...props2} key="bar">text</div>; 65 var props2 = { answer: 42 }; variable 66 var a2 = jsx_dev_runtime_1.jsxDEV("div", __assign({}, props2, { children: "text" }), "foo", false, … 67 var b2 = react_1.createElement("div", __assign({}, props2, { key: "bar" }), "text");
|
D | tsxUnionSpread.js | 22 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 23 var component2 = <AnimalComponent {...props2} /> 37 var props2 = { type: 'Cat', subType: 'Large' }; variable 38 var component2 = <AnimalComponent {...props2}/>;
|
D | tsxUnionSpread.types | 51 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 52 >props2 : AnimalInfo 59 var component2 = <AnimalComponent {...props2} /> 61 ><AnimalComponent {...props2} /> : error 63 >props2 : CatInfo
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.types | 47 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => { 48 >TestComponent2 : StatelessComponent<TestProps | { props2: { x: number;}; }> 49 >props2 : { x: number; } 51 >(props) => { return null;} : (props: (TestProps | { props2: { x: number;}; }) & { children?: n… 52 >props : (TestProps | { props2: { x: number; }; }) & { children?: number; } 60 >TestComponent2 : StatelessComponent<TestProps | { props2: { x: number; }; }>
|
D | tsxUnionSpread.symbols | 54 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 55 >props2 : Symbol(props2, Decl(index.tsx, 20, 3)) 60 var component2 = <AnimalComponent {...props2} /> 63 >props2 : Symbol(props2, Decl(index.tsx, 20, 3))
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsxdev).errors.txt | 8 const props2 = { answer: 42 } 9 const a2 = <div key="foo" {...props2}>text</div>; 10 const b2 = <div {...props2} key="bar">text</div>;
|
D | jsxJsxsCjsTransformKeyPropCustomImportPragma(jsx=react-jsx).errors.txt | 8 const props2 = { answer: 42 } 9 const a2 = <div key="foo" {...props2}>text</div>; 10 const b2 = <div {...props2} key="bar">text</div>;
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.symbols | 54 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => { 58 >props2 : Symbol(props2, Decl(deepExcessPropertyCheckingWhenTargetIsIntersection.ts, 22, 54))
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.js | 24 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => {
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.errors.txt | 34 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => {
|
/third_party/typescript/tests/cases/conformance/jsx/jsxs/ |
D | jsxJsxsCjsTransformKeyPropCustomImportPragma.tsx | 17 const props2 = { answer: 42 } 18 const a2 = <div key="foo" {...props2}>text</div>; 19 const b2 = <div {...props2} key="bar">text</div>;
|
/third_party/typescript/tests/cases/compiler/ |
D | tsxUnionSpread.tsx | 23 var props2:AnimalInfo = { type: 'Cat', subType: 'Large' }; 24 var component2 = <AnimalComponent {...props2} />
|
D | deepExcessPropertyCheckingWhenTargetIsIntersection.ts | 23 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => {
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
D | es31cProgramInterfaceQueryTests.cpp | 428 GLenum props2[] = { GL_NAME_LENGTH, in Run() local 436 VerifyGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, 0, 7, props2, 7, expected2, error); in Run() 1413 GLenum props2[] = { GL_NAME_LENGTH, in Run() local 1425 VerifyGetProgramResourceiv(program, GL_UNIFORM, indicesU["a"], 11, props2, 11, expected5, error); in Run() 1853 GLenum props2[] = { GL_BUFFER_BINDING, GL_BUFFER_DATA_SIZE, GL_NUM_ACTIVE_VARIABLES }; in Run() local 1856 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected2, error); in Run() 1858 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected2, error); in Run() 1862 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected3, error); in Run() 1864 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected3, error); in Run() 2417 GLenum props2[] = { GL_NAME_LENGTH, GL_BUFFER_BINDING, GL_REFERENCED_BY_COMPUTE_SHADER, in Run() local [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cProgramInterfaceQueryTests.cpp | 522 GLenum props2[] = { GL_NAME_LENGTH, in Run() local 535 VerifyGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, 0, 12, props2, 12, expected2, error); in Run() 1698 GLenum props2[] = { GL_NAME_LENGTH, in Run() local 1715 VerifyGetProgramResourceiv(program, GL_UNIFORM, indicesU["a"], 14, props2, 14, expected5, error); in Run() 1987 GLenum props2[] = { GL_BUFFER_BINDING, GL_BUFFER_DATA_SIZE, GL_NUM_ACTIVE_VARIABLES }; in Run() local 1990 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected2, error); in Run() 1992 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected2, error); in Run() 1996 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected3, error); in Run() 1998 …VerifyGetProgramResourceiv(program, GL_ATOMIC_COUNTER_BUFFER, res, 3, props2, 3, expected3, error); in Run() 3086 GLenum props2[] = { GL_NAME_LENGTH, in Run() local [all …]
|
/third_party/icu/tools/unicode/c/genprops/ |
D | Makefile.in | 40 OBJECTS = genprops.o props2.o store.o
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/ |
D | vktExternalMemoryUtil.cpp | 1624 vk::VkPhysicalDeviceProperties2 props2; in getPhysicalDeviceExternalMemoryHostProperties() local 1625 deMemset(&props2, 0, sizeof(props2)); in getPhysicalDeviceExternalMemoryHostProperties() 1626 props2.sType = vk::VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in getPhysicalDeviceExternalMemoryHostProperties() 1627 props2.pNext = &externalProps; in getPhysicalDeviceExternalMemoryHostProperties() 1629 vki.getPhysicalDeviceProperties2(physicalDevice, &props2); in getPhysicalDeviceExternalMemoryHostProperties()
|
/third_party/mesa3d/src/vulkan/wsi/ |
D | wsi_common_display.c | 439 VkDisplayProperties2KHR *props2 = in wsi_GetPhysicalDeviceDisplayPropertiesKHR() local 440 vk_zalloc(wsi->alloc, sizeof(*props2) * *pPropertyCount, 8, in wsi_GetPhysicalDeviceDisplayPropertiesKHR() 442 if (props2 == NULL) in wsi_GetPhysicalDeviceDisplayPropertiesKHR() 446 props2[i].sType = VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR; in wsi_GetPhysicalDeviceDisplayPropertiesKHR() 450 pPropertyCount, props2); in wsi_GetPhysicalDeviceDisplayPropertiesKHR() 454 pProperties[i] = props2[i].displayProperties; in wsi_GetPhysicalDeviceDisplayPropertiesKHR() 457 vk_free(wsi->alloc, props2); in wsi_GetPhysicalDeviceDisplayPropertiesKHR()
|