/external/deqp/android/cts/master/src/ |
D | vulkan-not-applicable.txt | 2 dEQP-VK.wsi.xlib.* 3 dEQP-VK.wsi.xcb.* 4 dEQP-VK.wsi.mir.* 5 dEQP-VK.wsi.wayland.* 6 dEQP-VK.wsi.win32.*
|
/external/deqp/external/vulkancts/modules/vulkan/wsi/ |
D | vktWsiTests.cpp | 33 namespace wsi namespace 39 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createTypeSpecificTests() 47 for (int typeNdx = 0; typeNdx < vk::wsi::TYPE_LAST; ++typeNdx) in createWsiTests() 49 const vk::wsi::Type wsiType = (vk::wsi::Type)typeNdx; in createWsiTests()
|
D | vktWsiSurfaceTests.hpp | 32 namespace wsi namespace 35 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
|
D | vktWsiSwapchainTests.hpp | 32 namespace wsi namespace 35 void createSwapchainTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
|
D | CMakeLists.txt | 20 add_library(deqp-vk-wsi STATIC ${DEQP_VK_WSI_SRCS}) 21 target_link_libraries(deqp-vk-wsi ${DEQP_VK_WSI_LIBS})
|
D | vktWsiTests.hpp | 31 namespace wsi namespace
|
/external/deqp/framework/platform/win32/ |
D | tcuWin32VulkanPlatform.cpp | 51 class VulkanWindow : public vk::wsi::Win32WindowInterface 55 : vk::wsi::Win32WindowInterface (vk::pt::Win32WindowHandle(window->getHandle())) in VulkanWindow() 69 class VulkanDisplay : public vk::wsi::Win32DisplayInterface 73 : vk::wsi::Win32DisplayInterface (vk::pt::Win32InstanceHandle(instance)) in VulkanDisplay() 77 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const in createWindow() 208 vk::wsi::Display* VulkanPlatform::createWsiDisplay (vk::wsi::Type wsiType) const in createWsiDisplay() 210 if (wsiType != vk::wsi::TYPE_WIN32) in createWsiDisplay()
|
D | tcuWin32VulkanPlatform.hpp | 42 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidPlatform.cpp | 211 class VulkanWindow : public vk::wsi::AndroidWindowInterface 215 : vk::wsi::AndroidWindowInterface (vk::pt::AndroidNativeWindowPtr(window.getNativeWindow())) in VulkanWindow() 229 class VulkanDisplay : public vk::wsi::Display 237 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const in createWindow() 337 vk::wsi::Display* Platform::createWsiDisplay (vk::wsi::Type wsiType) const in createWsiDisplay() 339 if (wsiType == vk::wsi::TYPE_ANDROID) in createWsiDisplay()
|
D | tcuAndroidPlatform.hpp | 57 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | ProcessorStripSpace.java | 70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet); in startElement() local 71 wsi.setUid(handler.nextUid()); in startElement() 73 thisSheet.setStripSpaces(wsi); in startElement()
|
D | ProcessorPreserveSpace.java | 71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet); in startElement() local 72 wsi.setUid(handler.nextUid()); in startElement() 74 thisSheet.setPreserveSpaces(wsi); in startElement()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkPlatform.hpp | 99 namespace wsi namespace 140 virtual wsi::Display* createWsiDisplay (wsi::Type wsiType) const;
|
D | vkPlatform.cpp | 67 wsi::Display* Platform::createWsiDisplay (wsi::Type) const in createWsiDisplay()
|
D | vkWsiPlatform.cpp | 28 namespace wsi namespace
|
D | vkWsiUtil.hpp | 34 namespace wsi namespace
|
D | vkWsiPlatform.hpp | 32 namespace wsi namespace
|
D | vkDefs.hpp | 106 namespace wsi namespace
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | CMakeLists.txt | 17 add_subdirectory(wsi) 35 wsi 76 deqp-vk-wsi
|
/external/vulkan-validation-layers/ |
D | vk-layer-generate.py | 181 self.wsi = sys.argv[1] 1365 if self.wsi == 'Win32': 1375 elif self.wsi == 'Android': 1384 elif self.wsi == 'Xcb' or self.wsi == 'Xlib' or self.wsi == 'Wayland' or self.wsi == 'Mir': 1666 if self.wsi == 'Win32': 1675 elif self.wsi == 'Android': 1683 elif self.wsi == 'Xcb' or self.wsi == 'Xlib' or self.wsi == 'Wayland' or self.wsi == 'Mir': 1705 wsi = { 1719 …if len(sys.argv) < 4 or sys.argv[1] not in wsi or sys.argv[2] not in subcommands or not os.path.ex…
|
D | vk-generate.py | 245 wsi = { 258 if len(sys.argv) < 3 or sys.argv[1] not in wsi or sys.argv[2] not in subcommands:
|
/external/vulkan-validation-layers/loader/ |
D | CMakeLists.txt | 21 wsi.c 22 wsi.h
|
D | vk-loader-generate.py | 457 wsi = { 474 if len(sys.argv) < 3 or sys.argv[1] not in wsi or sys.argv[2] not in subcommands: 477 print("Available wsi (displayservers) are: %s" % " ".join(wsi))
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | Stylesheet.java | 646 public void setStripSpaces(WhiteSpaceInfo wsi) in setStripSpaces() argument 654 m_whitespaceStrippingElements.addElement(wsi); in setStripSpaces() 701 public void setPreserveSpaces(WhiteSpaceInfo wsi) in setPreserveSpaces() argument 709 m_whitespacePreservingElements.addElement(wsi); in setPreserveSpaces()
|
/external/deqp/external/vulkancts/mustpass/1.0.0/src/ |
D | excluded-tests.txt | 24 dEQP-VK.wsi.*
|