Home
last modified time | relevance | path

Searched refs:MyService (Results 1 – 15 of 15) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
DIntentServiceControllerTest.java24 …private final ComponentName componentName = new ComponentName("org.robolectric", MyService.class.g…
25 …private final IntentServiceController<MyService> controller = Robolectric.buildIntentService(MySer…
34 MyService myService = controller.create().bind().get(); in onBindShouldSetIntent()
41 MyService myService = controller.create().startCommand(3, 4).get(); in onStartCommandShouldSetIntent()
48MyService myService = Robolectric.buildIntentService(MyService.class, new Intent(Intent.ACTION_VIE… in onBindShouldSetIntentComponentWithCustomIntentWithoutComponentSet()
55 IntentServiceController<MyService> intentServiceController = in shouldSetIntentForGivenServiceInstance()
56 IntentServiceController.of(new MyService(), null).bind(); in shouldSetIntentForGivenServiceInstance()
109 public static class MyService extends IntentService { class in IntentServiceControllerTest
119 public MyService() { in MyService() method in IntentServiceControllerTest.MyService
DServiceControllerTest.java24 …private final ComponentName componentName = new ComponentName("org.robolectric", MyService.class.g…
25 private final ServiceController<MyService> controller = Robolectric.buildService(MyService.class);
34 MyService myService = controller.create().bind().get(); in onBindShouldSetIntent()
41 MyService myService = controller.create().startCommand(3, 4).get(); in onStartCommandShouldSetIntentAndFlags()
50MyService myService = Robolectric.buildService(MyService.class, new Intent(Intent.ACTION_VIEW)).bi… in onBindShouldSetIntentComponentWithCustomIntentWithoutComponentSet()
57 …ServiceController<MyService> serviceController = ServiceController.of(new MyService(), null).bind(… in shouldSetIntentForGivenServiceInstance()
110 public static class MyService extends Service { class in ServiceControllerTest
/external/testng/src/test/java/test/guice/
DMyServiceProvider.java5 public class MyServiceProvider implements Provider<MyService> {
8 public MyService get() { in get()
9 return new MyService() { in get()
DMyService.java3 public interface MyService { interface
DGuiceParentModule.java19 bind(MyService.class).toProvider(MyServiceProvider.class); in configure()
DGuiceParentModuleTest.java16 MyService myService;
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAccessibilityServiceTest.java16 private MyService service ;
21 service = Robolectric.setupService(MyService.class); in setup()
35 public static class MyService extends AccessibilityService { class in ShadowAccessibilityServiceTest
DShadowAccessibilityButtonControllerTest.java26 private MyService service;
30 service = new MyService(); in setUp()
54 public static class MyService extends AccessibilityService { class in ShadowAccessibilityButtonControllerTest
DShadowServiceTest.java27 private MyService service ;
37 service = Robolectric.setupService(MyService.class); in setup()
141 public static class MyService extends Service { class in ShadowServiceTest
/external/grpc-grpc/doc/
Dservice_config.md43 // { 'name': [ { 'service': 'MyService' } ] ... },
44 // { 'name': [ { 'service': 'MyService', 'method': 'Foo' } ] ... }
47 // For a request for MyService/Foo, we will use the second entry, because
49 // For a request for MyService/Bar, we will use the first entry, because
50 // it provides the default for all methods of MyService.
/external/protobuf/python/google/protobuf/internal/
Dservice_reflection_test.py64 class MyService(unittest_pb2.TestService): class
74 srvc = MyService()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Rpc.pbtxt72 service MyService {
82 method = "MyService/MyMethod"
Dapi_def_TryRpc.pbtxt85 service MyService {
95 method = "MyService/MyMethod"
/external/grpc-grpc/src/ruby/end2end/protos/package_with_underscore/
Dservice.proto21 service MyService { service
/external/flatbuffers/grpc/tests/
DJavaGrpcTest.java52 static class MyService extends MonsterStorageGrpc.MonsterStorageImplBase { class in JavaGrpcTest
139 server = ServerBuilder.forPort(0).addService(new MyService()).build().start();