/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | DawnNative.cpp | 38 // Adapter 40 Adapter::Adapter() = default; 42 Adapter::Adapter(AdapterBase* impl) : mImpl(impl) { in Adapter() function in dawn_native::Adapter 45 Adapter::~Adapter() { in ~Adapter() 49 Adapter::Adapter(const Adapter [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | typeFromPropertyAssignmentWithExport.js | 4 export const Adapter = {}; 6 Adapter.prop = {}; 9 Adapter.asyncMethod = function() {}
15 exports.Adapter = void 0;
16 exports.Adapter = {};
17 exports.Adapter.prop = {};
19 exports.Adapter.asyncMethod = function () { };
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | AdapterD3D12.cpp | 29 Adapter::Adapter(Backend* backend, ComPtr<IDXGIAdapter3> hardwareAdapter) in Adapter() function in dawn_native::d3d12::Adapter 35 Adapter::~Adapter() { in ~Adapter() 39 bool Adapter::SupportsExternalImages() const { in SupportsExternalImages() 44 const D3D12DeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo() 48 IDXGIAdapter3* Adapter::GetHardwareAdapter() const { in GetHardwareAdapter() 52 Backend* Adapter::GetBackend() const { in GetBackend() 56 ComPtr<ID3D12Device> Adapter::GetDevice() const { in GetDevice() 60 const gpu_info::D3DDriverVersion& Adapter [all...] |
H A D | AdapterD3D12.h | 18 #include "dawn_native/Adapter.h" 28 class Adapter : public AdapterBase { class 30 Adapter(Backend* backend, ComPtr<IDXGIAdapter3> hardwareAdapter); 31 ~Adapter() override;
|
H A D | D3D12Info.h | 24 class Adapter; 38 ResultOrError<D3D12DeviceInfo> GatherDeviceInfo(const Adapter& adapter);
|
H A D | Forward.h | 22 class Adapter; 42 using AdapterType = Adapter;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | FormatCommon.h | 20 detail::format_adapter &Adapter; member 25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount, in FmtAlign() 27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in FmtAlign() 36 Adapter.format(S, Options); in format() 42 Adapter.format(Stream, Options); in format()
|
H A D | FormatAdapters.h | 39 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local 40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format() 53 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local 55 Adapter.format(Stream, Style); in format() 68 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local 70 Adapter.format(Stream, Style); in format()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | FormatCommon.h | 21 detail::format_adapter &Adapter; member 25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount) in FmtAlign() 26 : Adapter(Adapter), Where(Where), Amount(Amount) {} in FmtAlign() 35 Adapter.format(S, Options); in format() 41 Adapter.format(Stream, Options); in format()
|
/third_party/skia/third_party/externals/dawn/src/include/dawn_native/ |
H A D | DawnNative.h | 63 // An optional parameter of Adapter::CreateDevice() to send additional information when creating 97 class DAWN_NATIVE_EXPORT Adapter { class 99 Adapter(); 100 Adapter(AdapterBase* impl); 101 ~Adapter(); 103 Adapter(const Adapter& other); 104 Adapter& operator=(const Adapter& other); 122 // Check that the Adapter i [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | AdapterVk.cpp | 25 Adapter::Adapter(InstanceBase* instance, in Adapter() function in dawn_native::vulkan::Adapter 33 const VulkanDeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo() 37 VkPhysicalDevice Adapter::GetPhysicalDevice() const { in GetPhysicalDevice() 41 VulkanInstance* Adapter::GetVulkanInstance() const { in GetVulkanInstance() 45 bool Adapter::IsDepthStencilFormatSupported(VkFormat format) { in IsDepthStencilFormatSupported() 55 MaybeError Adapter::InitializeImpl() { in InitializeImpl() 90 MaybeError Adapter::InitializeSupportedFeaturesImpl() { in InitializeSupportedFeaturesImpl() 157 MaybeError Adapter::InitializeSupportedLimitsImpl(CombinedLimits* limits) { in InitializeSupportedLimitsImpl() 328 bool Adapter [all...] |
H A D | AdapterVk.h | 18 #include "dawn_native/Adapter.h" 28 class Adapter : public AdapterBase { class 30 Adapter(InstanceBase* instance, 33 ~Adapter() override = default;
|
H A D | VulkanInfo.h | 27 class Adapter; 84 ResultOrError<VulkanDeviceInfo> GatherDeviceInfo(const Adapter& adapter); 85 ResultOrError<VulkanSurfaceInfo> GatherSurfaceInfo(const Adapter& adapter,
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/ |
H A D | DeviceNull.cpp | 27 Adapter::Adapter(InstanceBase* instance) : AdapterBase(instance, wgpu::BackendType::Null) { in Adapter() function in dawn_native::null::Adapter 34 Adapter::~Adapter() = default; 36 bool Adapter::SupportsExternalImages() const { in SupportsExternalImages() 41 void Adapter::SetSupportedFeatures(const std::vector<const char*>& requiredFeatures) { in SetSupportedFeatures() 45 MaybeError Adapter::InitializeImpl() { in InitializeImpl() 49 MaybeError Adapter::InitializeSupportedFeaturesImpl() { in InitializeSupportedFeaturesImpl() 55 MaybeError Adapter::InitializeSupportedLimitsImpl(CombinedLimits* limits) { in InitializeSupportedLimitsImpl() 60 ResultOrError<DeviceBase*> Adapter [all...] |
H A D | DeviceNull.h | 18 #include "dawn_native/Adapter.h" 41 class Adapter; 59 using AdapterType = Adapter; 89 static ResultOrError<Device*> Create(Adapter* adapter, 169 class Adapter : public AdapterBase { class 171 Adapter(InstanceBase* instance); 172 ~Adapter() override;
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
H A D | BackendGL.cpp | 118 // The OpenGL backend's Adapter. 120 class Adapter : public AdapterBase { class 122 Adapter(InstanceBase* instance, wgpu::BackendType backendType) in Adapter() function in dawn_native::opengl::Adapter 131 ~Adapter() override = default; 291 std::unique_ptr<Adapter> adapter = std::make_unique<Adapter>( in DiscoverAdapters()
|
H A D | Forward.h | 22 class Adapter; 41 using AdapterType = Adapter;
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
H A D | FeatureTests.cpp | 42 dawn_native::null::Adapter mAdapterBase; 46 // Adapter. 56 dawn_native::Adapter adapterWithoutFeature(&mAdapterBase); in TEST_F() 68 dawn_native::Adapter adapter(&mAdapterBase); in TEST_F()
|
/third_party/vixl/src/aarch64/ |
H A D | decoder-aarch64.cc | 66 auto msg = String("Can't find decode node ", GetAllocator().Adapter()) + name.data() + ".\n"; in GetDecodeNode() 93 auto root_node{String("Root", GetAllocator().Adapter())}; in ConstructDecodeGraph() 460 CompileNodeForBits(decoder, String("unallocated", GetAllocator().Adapter()), 0); in TryCompileOptimisedDecodeTable() 463 CompileNodeForBits(decoder, String(pattern_table_[0].handler, GetAllocator().Adapter()), 1); in TryCompileOptimisedDecodeTable() 478 String otherwise("unallocated", GetAllocator().Adapter()); in Compile() 482 Vector<MaskValuePair> matches(GetAllocator().Adapter()); in Compile() 505 CompileNodeForBits(decoder, String(pattern_table_[i].handler, GetAllocator().Adapter()), bits); in Compile() 514 CompileNodeForBits(decoder, String(otherwise, GetAllocator().Adapter()), bits); in Compile()
|
/third_party/vulkan-loader/tests/framework/shim/ |
H A D | windows_shim.cpp | 192 /* [in] */ UINT Adapter, in ShimEnumAdapters1_1() 195 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapters1_1() 199 *ppAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapters1_1() 205 /* [in] */ UINT Adapter, in ShimEnumAdapters1_6() 208 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapters1_6() 212 *ppAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapters1_6() 217 HRESULT __stdcall ShimEnumAdapterByGpuPreference([[maybe_unused]] IDXGIFactory6 *This, _In_ UINT Adapter, in ShimEnumAdapterByGpuPreference() argument 220 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapterByGpuPreference() 228 *ppvAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapterByGpuPreference() 191 ShimEnumAdapters1_1([[maybe_unused]] IDXGIFactory1 *This, UINT Adapter, _COM_Outptr_ IDXGIAdapter1 **ppAdapter) ShimEnumAdapters1_1() argument 204 ShimEnumAdapters1_6([[maybe_unused]] IDXGIFactory6 *This, UINT Adapter, _COM_Outptr_ IDXGIAdapter1 **ppAdapter) ShimEnumAdapters1_6() argument
|
/third_party/skia/third_party/externals/dawn/src/fuzzers/ |
H A D | DawnWireServerAndVulkanBackendFuzzer.cpp | 28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
H A D | DawnWireServerAndD3D12BackendFuzzer.cpp | 28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
H A D | DawnWireServerAndFrontendFuzzer.cpp | 29 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 32 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
H A D | Adapter.cpp | 75 Adapter *pAdaptor = (Adapter *)calloc(sizeof *pAdaptor, 1); in OpenAdapterCommon() 261 Adapter *pAdapter = CastAdapter(hAdapter); in CloseAdapter()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
H A D | GPUAdapter.h | 26 // GPUAdapter is an implementation of interop::GPUAdapter that wraps a dawn_native::Adapter. 29 GPUAdapter(dawn_native::Adapter a, const Flags& flags); 41 dawn_native::Adapter adapter_;
|