/third_party/typescript/tests/baselines/reference/ |
D | typeFromPropertyAssignmentWithExport.symbols | 4 export const Adapter = {}; 5 >Adapter : Symbol(Adapter, Decl(a.js, 2, 12), Decl(a.js, 2, 26), Decl(a.js, 4, 18)) 7 Adapter.prop = {}; 8 >Adapter.prop : Symbol(Adapter.prop, Decl(a.js, 2, 26)) 9 >Adapter : Symbol(Adapter, Decl(a.js, 2, 12), Decl(a.js, 2, 26), Decl(a.js, 4, 18)) 10 >prop : Symbol(Adapter.prop, Decl(a.js, 2, 26)) 13 Adapter.asyncMethod = function() {} 14 >Adapter.asyncMethod : Symbol(Adapter.asyncMethod, Decl(a.js, 4, 18)) 15 >Adapter : Symbol(Adapter, Decl(a.js, 2, 12), Decl(a.js, 2, 26), Decl(a.js, 4, 18)) 16 >asyncMethod : Symbol(Adapter.asyncMethod, Decl(a.js, 4, 18))
|
D | typeFromPropertyAssignmentWithExport.types | 4 export const Adapter = {}; 5 >Adapter : typeof Adapter 8 Adapter.prop = {}; 9 >Adapter.prop = {} : {} 10 >Adapter.prop : {} 11 >Adapter : typeof Adapter 16 Adapter.asyncMethod = function() {} 17 >Adapter.asyncMethod = function() {} : () => void 18 >Adapter.asyncMethod : () => void 19 >Adapter : typeof Adapter
|
D | typeFromPropertyAssignmentWithExport.js | 4 export const Adapter = {}; constant 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/ |
D | DawnNative.cpp | 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& other) = default; 50 Adapter& Adapter::operator=(const Adapter& other) = default; 52 void Adapter::GetProperties(wgpu::AdapterProperties* properties) const { in GetProperties() 61 BackendType Adapter::GetBackendType() const { in GetBackendType() 83 DeviceType Adapter::GetDeviceType() const { in GetDeviceType() 97 const PCIInfo& Adapter::GetPCIInfo() const { in GetPCIInfo() 101 std::vector<const char*> Adapter::GetSupportedFeatures() const { in GetSupportedFeatures() [all …]
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | DawnNative.cpp | 37 Adapter::Adapter() = default; 39 Adapter::Adapter(AdapterBase* impl) : mImpl(impl) { in Adapter() function in dawn_native::Adapter 42 Adapter::~Adapter() { in ~Adapter() 46 BackendType Adapter::GetBackendType() const { in GetBackendType() 50 DeviceType Adapter::GetDeviceType() const { in GetDeviceType() 54 const PCIInfo& Adapter::GetPCIInfo() const { in GetPCIInfo() 58 Adapter::operator bool() const { in operator bool() 62 DawnDevice Adapter::CreateDevice(const DeviceDescriptor* deviceDescriptor) { in CreateDevice() 89 std::vector<Adapter> Instance::GetAdapters() const { in GetAdapters() 91 std::vector<Adapter> adapters; in GetAdapters()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
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::GetDriverVersion() const { in GetDriverVersion() 64 MaybeError Adapter::InitializeImpl() { in InitializeImpl() 110 bool Adapter::AreTimestampQueriesSupported() const { in AreTimestampQueriesSupported() [all …]
|
D | AdapterD3D12.h | 28 class Adapter : public AdapterBase { 30 Adapter(Backend* backend, ComPtr<IDXGIAdapter3> hardwareAdapter); 31 ~Adapter() override;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | AdapterD3D12.cpp | 37 Adapter::Adapter(Backend* backend, ComPtr<IDXGIAdapter1> hardwareAdapter) in Adapter() function in dawn_native::d3d12::Adapter 43 const D3D12DeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo() 47 IDXGIAdapter1* Adapter::GetHardwareAdapter() const { in GetHardwareAdapter() 51 Backend* Adapter::GetBackend() const { in GetBackend() 55 ComPtr<ID3D12Device> Adapter::GetDevice() const { in GetDevice() 59 MaybeError Adapter::Initialize() { in Initialize() 90 ResultOrError<DeviceBase*> Adapter::CreateDeviceImpl(const DeviceDescriptor* descriptor) { in CreateDeviceImpl()
|
D | AdapterD3D12.h | 27 class Adapter : public AdapterBase { 29 Adapter(Backend* backend, ComPtr<IDXGIAdapter1> hardwareAdapter); 30 virtual ~Adapter() = default;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | AdapterVk.cpp | 22 Adapter::Adapter(Backend* backend, VkPhysicalDevice physicalDevice) in Adapter() function in dawn_native::vulkan::Adapter 28 const VulkanDeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo() 32 VkPhysicalDevice Adapter::GetPhysicalDevice() const { in GetPhysicalDevice() 36 Backend* Adapter::GetBackend() const { in GetBackend() 40 MaybeError Adapter::Initialize() { in Initialize() 65 ResultOrError<DeviceBase*> Adapter::CreateDeviceImpl(const DeviceDescriptor* descriptor) { in CreateDeviceImpl()
|
D | AdapterVk.h | 27 class Adapter : public AdapterBase { 29 Adapter(Backend* backend, VkPhysicalDevice physicalDevice); 30 virtual ~Adapter() = default;
|
D | VulkanInfo.h | 25 class Adapter; variable 95 ResultOrError<VulkanDeviceInfo> GatherDeviceInfo(const Adapter& adapter); 96 MaybeError GatherSurfaceInfo(const Adapter& adapter,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
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/ |
D | DawnNative.h | 97 class DAWN_NATIVE_EXPORT Adapter { 99 Adapter(); 100 Adapter(AdapterBase* impl); 101 ~Adapter(); 103 Adapter(const Adapter& other); 104 Adapter& operator=(const Adapter& other); 177 std::vector<Adapter> GetAdapters() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FormatCommon.h | 20 detail::format_adapter &Adapter; member 25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount, 27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter() function 36 Adapter.format(S, Options); in format() 42 Adapter.format(Stream, Options); in format()
|
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/dawn/src/dawn_native/vulkan/ |
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::SupportsExternalImages() const { in SupportsExternalImages() 335 ResultOrError<DeviceBase*> Adapter::CreateDeviceImpl(const DawnDeviceDescriptor* descriptor) { in CreateDeviceImpl()
|
D | AdapterVk.h | 28 class Adapter : public AdapterBase { 30 Adapter(InstanceBase* instance, 33 ~Adapter() override = default;
|
D | VulkanInfo.h | 27 class Adapter; variable 84 ResultOrError<VulkanDeviceInfo> GatherDeviceInfo(const Adapter& adapter); 85 ResultOrError<VulkanSurfaceInfo> GatherSurfaceInfo(const Adapter& adapter,
|
/third_party/flutter/skia/third_party/externals/dawn/src/include/dawn_native/ |
D | DawnNative.h | 72 class DAWN_NATIVE_EXPORT Adapter { 74 Adapter(); 75 Adapter(AdapterBase* impl); 76 ~Adapter(); 124 std::vector<Adapter> GetAdapters() const;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | BackendGL.cpp | 54 class Adapter : public AdapterBase { class 56 Adapter(InstanceBase* instance) : AdapterBase(instance, BackendType::OpenGL) { in Adapter() function in dawn_native::opengl::Adapter 78 ~Adapter() override = default; 116 std::unique_ptr<Adapter> adapter = std::make_unique<Adapter>(GetInstance()); in DiscoverAdapters()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/ |
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::CreateDeviceImpl(const DawnDeviceDescriptor* descriptor) { in CreateDeviceImpl() 73 std::unique_ptr<Adapter> adapter = std::make_unique<Adapter>(GetInstance()); in DiscoverDefaultAdapters() 98 ResultOrError<Device*> Device::Create(Adapter* adapter, in Create()
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | typeFromPropertyAssignmentWithExport.ts | 7 export const Adapter = {}; constant 9 Adapter.prop = {}; 12 Adapter.asyncMethod = function() {}
|
/third_party/eudev/hwdb/ |
D | 20-pci-vendor-model.hwdb | 168 ID_MODEL_FROM_DATABASE=IS64PH ISDN Adapter 171 ID_MODEL_FROM_DATABASE=IS64PH ISDN Adapter 174 ID_MODEL_FROM_DATABASE=ISDN Adapter (PCI Bus, DV, W) 177 ID_MODEL_FROM_DATABASE=ISDN Adapter (PCI Bus, D, C) 282 ID_MODEL_FROM_DATABASE=NC6136 Gigabit Server Adapter 552 ID_MODEL_FROM_DATABASE=NC7131 Gigabit Server Adapter 684 ID_MODEL_FROM_DATABASE=53c875 (DC390F/U Ultra Wide SCSI Adapter) 720 ID_MODEL_FROM_DATABASE=MegaRAID Tri-Mode SAS3516 (PERC H745 Adapter) 732 …ODEL_FROM_DATABASE=MegaRAID Tri-Mode SAS3516 (ThinkSystem RAID 930-16i 4GB Flash PCIe 12Gb Adapter) 735 …MODEL_FROM_DATABASE=MegaRAID Tri-Mode SAS3516 (ThinkSystem RAID 930-8e 4GB Flash PCIe 12Gb Adapter) [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | BackendGL.cpp | 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()
|