/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/ |
D | IntentServiceControllerTest.java | 24 …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() 48 …MyService 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
|
D | ServiceControllerTest.java | 24 …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() 50 …MyService 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/ |
D | MyServiceProvider.java | 5 public class MyServiceProvider implements Provider<MyService> { 8 public MyService get() { in get() 9 return new MyService() { in get()
|
D | MyService.java | 3 public interface MyService { interface
|
D | GuiceParentModule.java | 19 bind(MyService.class).toProvider(MyServiceProvider.class); in configure()
|
D | GuiceParentModuleTest.java | 16 MyService myService;
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowAccessibilityServiceTest.java | 16 private MyService service ; 21 service = Robolectric.setupService(MyService.class); in setup() 35 public static class MyService extends AccessibilityService { class in ShadowAccessibilityServiceTest
|
D | ShadowAccessibilityButtonControllerTest.java | 26 private MyService service; 30 service = new MyService(); in setUp() 54 public static class MyService extends AccessibilityService { class in ShadowAccessibilityButtonControllerTest
|
D | ShadowServiceTest.java | 27 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/ |
D | service_config.md | 43 // { '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/ |
D | service_reflection_test.py | 64 class MyService(unittest_pb2.TestService): class 74 srvc = MyService()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Rpc.pbtxt | 72 service MyService { 82 method = "MyService/MyMethod"
|
D | api_def_TryRpc.pbtxt | 85 service MyService { 95 method = "MyService/MyMethod"
|
/external/grpc-grpc/src/ruby/end2end/protos/package_with_underscore/ |
D | service.proto | 21 service MyService { service
|
/external/flatbuffers/grpc/tests/ |
D | JavaGrpcTest.java | 52 static class MyService extends MonsterStorageGrpc.MonsterStorageImplBase { class in JavaGrpcTest 139 server = ServerBuilder.forPort(0).addService(new MyService()).build().start();
|