/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/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/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;
|
D | D3D12Info.h | 24 class Adapter; variable 38 ResultOrError<D3D12DeviceInfo> GatherDeviceInfo(const Adapter& adapter);
|
/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-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/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/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()
|
D | DeviceNull.h | 41 class Adapter; variable 59 using AdapterType = Adapter; 89 static ResultOrError<Device*> Create(Adapter* adapter, 169 class Adapter : public AdapterBase { 171 Adapter(InstanceBase* instance); 172 ~Adapter() override;
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | typeFromPropertyAssignmentWithExport.ts | 7 export const Adapter = {}; constant 9 Adapter.prop = {}; 12 Adapter.asyncMethod = function() {}
|
/third_party/vixl/src/aarch64/ |
D | decoder-aarch64.cc | 63 auto msg = String("Can't find decode node ", GetAllocator().Adapter()) + name.data() + ".\n"; in GetDecodeNode() 81 auto root_node{String("Root", GetAllocator().Adapter())}; in ConstructDecodeGraph() 477 CompileNodeForBits(decoder, String(doesnt_match_handler, GetAllocator().Adapter()), 0); in TryCompileOptimisedDecodeTable() 480 CompileNodeForBits(decoder, String(pattern_table_[0].handler, GetAllocator().Adapter()), 1); in TryCompileOptimisedDecodeTable() 495 String otherwise("Visit_Unallocated", GetAllocator().Adapter()); in Compile() 499 Vector<MaskValuePair> matches(GetAllocator().Adapter()); in Compile() 505 otherwise = String(pattern_table_[i].handler, GetAllocator().Adapter()); in Compile() 528 … CompileNodeForBits(decoder, String(pattern_table_[i].handler, GetAllocator().Adapter()), bits); in Compile() 537 CompileNodeForBits(decoder, String(otherwise, GetAllocator().Adapter()), bits); in Compile() 575 String temp(32, '_', GetAllocator().Adapter()); in GenerateOrderedPattern() [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()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | FeatureTests.cpp | 42 dawn_native::null::Adapter mAdapterBase; 56 dawn_native::Adapter adapterWithoutFeature(&mAdapterBase); in TEST_F() 68 dawn_native::Adapter adapter(&mAdapterBase); in TEST_F()
|
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
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/fuzzers/ |
D | DawnWireServerAndFrontendFuzzer.cpp | 29 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 32 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
D | DawnWireServerAndD3D12BackendFuzzer.cpp | 28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
D | DawnWireServerAndVulkanBackendFuzzer.cpp | 28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput() 31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | GPUAdapter.h | 29 GPUAdapter(dawn_native::Adapter a, const Flags& flags); 41 dawn_native::Adapter adapter_;
|