/third_party/boost/libs/asio/include/boost/asio/impl/ |
D | execution_context.hpp | 29 template <typename Service> 30 inline Service& use_service(execution_context& e) in use_service() 33 (void)static_cast<execution_context::service*>(static_cast<Service*>(0)); in use_service() 35 return e.service_registry_->template use_service<Service>(); in use_service() 40 template <typename Service, typename... Args> 41 Service& make_service(execution_context& e, BOOST_ASIO_MOVE_ARG(Args)... args) in make_service() 43 detail::scoped_ptr<Service> svc( in make_service() 44 new Service(e, BOOST_ASIO_MOVE_CAST(Args)(args)...)); in make_service() 45 e.service_registry_->template add_service<Service>(svc.get()); in make_service() 46 Service& result = *svc; in make_service() [all …]
|
/third_party/boost/boost/asio/impl/ |
D | execution_context.hpp | 29 template <typename Service> 30 inline Service& use_service(execution_context& e) in use_service() 33 (void)static_cast<execution_context::service*>(static_cast<Service*>(0)); in use_service() 35 return e.service_registry_->template use_service<Service>(); in use_service() 40 template <typename Service, typename... Args> 41 Service& make_service(execution_context& e, BOOST_ASIO_MOVE_ARG(Args)... args) in make_service() 43 detail::scoped_ptr<Service> svc( in make_service() 44 new Service(e, BOOST_ASIO_MOVE_CAST(Args)(args)...)); in make_service() 45 e.service_registry_->template add_service<Service>(svc.get()); in make_service() 46 Service& result = *svc; in make_service() [all …]
|
/third_party/boost/boost/asio/detail/impl/ |
D | service_registry.hpp | 24 template <typename Service> 25 Service& service_registry::use_service() in use_service() 28 init_key<Service>(key, 0); in use_service() 29 factory_type factory = &service_registry::create<Service, execution_context>; in use_service() 30 return *static_cast<Service*>(do_use_service(key, factory, &owner_)); in use_service() 33 template <typename Service> 34 Service& service_registry::use_service(io_context& owner) in use_service() 37 init_key<Service>(key, 0); in use_service() 38 factory_type factory = &service_registry::create<Service, io_context>; in use_service() 39 return *static_cast<Service*>(do_use_service(key, factory, &owner)); in use_service() [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | service_registry.hpp | 24 template <typename Service> 25 Service& service_registry::use_service() in use_service() 28 init_key<Service>(key, 0); in use_service() 29 factory_type factory = &service_registry::create<Service, execution_context>; in use_service() 30 return *static_cast<Service*>(do_use_service(key, factory, &owner_)); in use_service() 33 template <typename Service> 34 Service& service_registry::use_service(io_context& owner) in use_service() 37 init_key<Service>(key, 0); in use_service() 38 factory_type factory = &service_registry::create<Service, io_context>; in use_service() 39 return *static_cast<Service*>(do_use_service(key, factory, &owner)); in use_service() [all …]
|
/third_party/boost/boost/asio/ |
D | execution_context.hpp | 34 template <typename Service> Service& use_service(execution_context&); 35 template <typename Service> Service& use_service(io_context&); 36 template <typename Service> void add_service(execution_context&, Service*); 37 template <typename Service> bool has_service(execution_context&); 208 template <typename Service> 209 friend Service& use_service(execution_context& e); 225 template <typename Service> 226 friend Service& use_service(io_context& ioc); 242 template <typename Service, typename... Args> 243 friend Service& make_service(execution_context& e, Args&&... args); [all …]
|
/third_party/boost/libs/asio/include/boost/asio/ |
D | execution_context.hpp | 34 template <typename Service> Service& use_service(execution_context&); 35 template <typename Service> Service& use_service(io_context&); 36 template <typename Service> void add_service(execution_context&, Service*); 37 template <typename Service> bool has_service(execution_context&); 208 template <typename Service> 209 friend Service& use_service(execution_context& e); 225 template <typename Service> 226 friend Service& use_service(io_context& ioc); 242 template <typename Service, typename... Args> 243 friend Service& make_service(execution_context& e, Args&&... args); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | decoratorMetadataWithTypeOnlyImport.js | 4 export class Service { class 7 import type { Service } from "./service"; 13 constructor(public Service: Service) { argument 24 exports.Service = void 0; 25 var Service = /** @class */ (function () { 26 function Service() { class in Service 28 return Service; 30 exports.Service = Service; 44 function MyComponent(Service) { argument 45 this.Service = Service;
|
D | decoratorMetadata.symbols | 2 export default class Service { 3 >Service : Symbol(Service, Decl(service.ts, 0, 0)) 6 import Service from "./service"; 7 >Service : Symbol(Service, Decl(component.ts, 0, 6)) 18 constructor(public Service: Service) { 19 >Service : Symbol(MyComponent.Service, Decl(component.ts, 6, 16)) 20 >Service : Symbol(Service, Decl(component.ts, 0, 6))
|
D | decoratorMetadataWithTypeOnlyImport.symbols | 2 export class Service { 3 >Service : Symbol(Service, Decl(service.ts, 0, 0)) 6 import type { Service } from "./service"; 7 >Service : Symbol(Service, Decl(component.ts, 0, 13)) 18 constructor(public Service: Service) { 19 >Service : Symbol(MyComponent.Service, Decl(component.ts, 6, 16)) 20 >Service : Symbol(Service, Decl(component.ts, 0, 13))
|
D | cloduleGenericOnSelfMember.symbols | 10 class Service extends ServiceBase<typeof Service.Base> { 11 >Service : Symbol(Service, Decl(cloduleGenericOnSelfMember.ts, 2, 1), Decl(cloduleGenericOnSelfMemb… 13 >Service.Base : Symbol(Service.Base, Decl(cloduleGenericOnSelfMember.ts, 6, 16)) 14 >Service : Symbol(Service, Decl(cloduleGenericOnSelfMember.ts, 2, 1), Decl(cloduleGenericOnSelfMemb… 15 >Base : Symbol(Service.Base, Decl(cloduleGenericOnSelfMember.ts, 6, 16)) 17 namespace Service { 18 >Service : Symbol(Service, Decl(cloduleGenericOnSelfMember.ts, 2, 1), Decl(cloduleGenericOnSelfMemb…
|
D | decoratorMetadataWithTypeOnlyImport.types | 2 export class Service { 3 >Service : Service 6 import type { Service } from "./service"; 7 >Service : Service 18 constructor(public Service: Service) { 19 >Service : Service
|
D | cloduleGenericOnSelfMember.js | 5 class Service extends ServiceBase<typeof Service.Base> { class 7 namespace Service { 35 var Service = /** @class */ (function (_super) { 36 __extends(Service, _super); 37 function Service() { class in Service 40 return Service; 42 (function (Service) { argument 43 Service.Base = { 47 })(Service || (Service = {}));
|
D | decoratorMetadata.types | 2 export default class Service { 3 >Service : Service 6 import Service from "./service"; 7 >Service : typeof Service 18 constructor(public Service: Service) { 19 >Service : Service
|
D | cloduleGenericOnSelfMember.types | 8 class Service extends ServiceBase<typeof Service.Base> { 9 >Service : Service 11 >Service.Base : { name: string; value: number; } 12 >Service : typeof Service 15 namespace Service { 16 >Service : typeof Service
|
D | decoratorMetadata.js | 4 export default class Service { class 7 import Service from "./service"; 13 constructor(public Service: Service) { argument 24 var Service = /** @class */ (function () { 25 function Service() { class in Service 27 return Service; 29 exports.default = Service; 44 function MyComponent(Service) { argument 45 this.Service = Service;
|
D | genericIndexedAccessMethodIntersectionCanBeAccessed.types | 15 type Service<T> = { 16 >Service : Service<T> 24 >createService : <T>(ServiceCtr: ExtendedService<T> & Service<T>) => void 25 …Service<T>) => { Object.keys(ServiceCtr).forEach(key => { const method = (ServiceCtr)[ke… 27 ServiceCtr: ExtendedService<T> & Service<T> 28 >ServiceCtr : ExtendedService<T> & Service<T> 38 >ServiceCtr : ExtendedService<T> & Service<T> 44 >method : (ExtendedService<T> & Service<T>)[keyof T] 45 >(ServiceCtr)[key as keyof T] : (ExtendedService<T> & Service<T>)[keyof T] 46 >(ServiceCtr) : ExtendedService<T> & Service<T> [all …]
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | service_registry.hpp | 59 template <typename Service> 60 Service& use_service(); 67 template <typename Service> 68 Service& use_service(io_context& owner); 72 template <typename Service> 73 void add_service(Service* new_service); 76 template <typename Service> 81 template <typename Service> 86 template <typename Service> 89 is_base_of<typename Service::key_type, Service>::value>::type*); [all …]
|
/third_party/boost/boost/asio/detail/ |
D | service_registry.hpp | 59 template <typename Service> 60 Service& use_service(); 67 template <typename Service> 68 Service& use_service(io_context& owner); 72 template <typename Service> 73 void add_service(Service* new_service); 76 template <typename Service> 81 template <typename Service> 86 template <typename Service> 89 is_base_of<typename Service::key_type, Service>::value>::type*); [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/external_memory/ |
D | MemoryServiceNull.cpp | 20 Service::Service(Device* device) : mDevice(device) { in Service() function in dawn_native::vulkan::external_memory::Service 25 Service::~Service() = default; 28 bool Service::CheckSupport(const VulkanDeviceInfo& deviceInfo) { in CheckSupport() 32 bool Service::SupportsImportMemory(VkFormat format, in SupportsImportMemory() 40 bool Service::SupportsCreateImage(const ExternalImageDescriptor* descriptor, in SupportsCreateImage() 46 ResultOrError<MemoryImportParams> Service::GetMemoryImportParams( in GetMemoryImportParams() 52 ResultOrError<VkDeviceMemory> Service::ImportMemory(ExternalMemoryHandle handle, in ImportMemory() 58 ResultOrError<VkImage> Service::CreateImage(const ExternalImageDescriptor* descriptor, in CreateImage()
|
D | MemoryServiceZirconHandle.cpp | 25 Service::Service(Device* device) in Service() function in dawn_native::vulkan::external_memory::Service 29 Service::~Service() = default; 32 bool Service::CheckSupport(const VulkanDeviceInfo& deviceInfo) { in CheckSupport() 36 bool Service::SupportsImportMemory(VkFormat format, in SupportsImportMemory() 82 bool Service::SupportsCreateImage(const ExternalImageDescriptor* descriptor, in SupportsCreateImage() 88 ResultOrError<MemoryImportParams> Service::GetMemoryImportParams( in GetMemoryImportParams() 102 ResultOrError<VkDeviceMemory> Service::ImportMemory(ExternalMemoryHandle handle, in ImportMemory() 133 ResultOrError<VkImage> Service::CreateImage(const ExternalImageDescriptor* descriptor, in CreateImage()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/external_semaphore/ |
D | SemaphoreServiceNull.cpp | 20 Service::Service(Device* device) : mDevice(device) { in Service() function in dawn_native::vulkan::external_semaphore::Service 25 Service::~Service() = default; 28 bool Service::CheckSupport(const VulkanDeviceInfo& deviceInfo, in CheckSupport() 34 bool Service::Supported() { in Supported() 38 ResultOrError<VkSemaphore> Service::ImportSemaphore(ExternalSemaphoreHandle handle) { in ImportSemaphore() 42 ResultOrError<VkSemaphore> Service::CreateExportableSemaphore() { in CreateExportableSemaphore() 46 ResultOrError<ExternalSemaphoreHandle> Service::ExportSemaphore(VkSemaphore semaphore) { in ExportSemaphore()
|
/third_party/grpc/src/ruby/pb/src/proto/grpc/testing/ |
D | test_services_pb.rb | 30 class Service class 66 Stub = Service.rpc_stub_class 71 class Service class 83 Stub = Service.rpc_stub_class 87 class Service class 99 Stub = Service.rpc_stub_class 103 class Service class 117 Stub = Service.rpc_stub_class 121 class Service class 133 Stub = Service.rpc_stub_class [all …]
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/ |
D | service.h | 25 class Service { 29 Service() : state_(STATE::kStopped) {} in Service() function 31 Service(const Service &) = delete; 33 Service &operator=(const Service &) = delete; 35 virtual ~Service() {} in ~Service()
|
/third_party/grpc/src/python/grpcio/grpc/framework/interfaces/face/ |
D | utilities.py | 53 style.Service.INLINE, behavior, None, None, 69 style.Service.INLINE, None, behavior, None, 85 style.Service.INLINE, None, None, behavior, 101 style.Service.INLINE, None, None, None, 117 style.Service.EVENT, None, None, None, None, 133 style.Service.EVENT, None, None, None, None, 150 style.Service.EVENT, None, None, None, None, 167 style.Service.EVENT, None, None, None, None,
|
/third_party/grpc/src/compiler/ |
D | python_private_generator.h | 55 const grpc_generator::Service* service, grpc_generator::Printer* out); 56 bool PrintServicer(const grpc_generator::Service* service, 59 const grpc_generator::Service* service, 63 const grpc_generator::Service* service, 65 bool PrintBetaServicer(const grpc_generator::Service* service, 68 const grpc_generator::Service* service, 70 bool PrintBetaStub(const grpc_generator::Service* service, 73 const grpc_generator::Service* service,
|