HomeSort by relevance Sort by last modified time
    Searched refs:MyService (Results 1 - 16 of 16) sorted by null

  /external/testng/src/test/java/test/guice/
MyServiceProvider.java 5 public class MyServiceProvider implements Provider<MyService> {
8 public MyService get() {
9 return new MyService() {
MyService.java 3 public interface MyService {
GuiceParentModule.java 19 bind(MyService.class).toProvider(MyServiceProvider.class);
GuiceParentModuleTest.java 16 MyService myService;
21 Assert.assertNotNull(myService);
23 myService.serve(mySession);
  /cts/hostsidetests/devicepolicy/app/DeviceAdminService/src/com/android/cts/deviceadminservice/
MyService.java 20 public class MyService extends DeviceAdminService {
ComponentController.java 35 enableComponent(new ComponentName(getContext(), MyService.class), true);
39 enableComponent(new ComponentName(getContext(), MyService.class), false);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ServiceTest.java 27 MyService service = new MyService();
34 MyService service = new MyService();
36 MyService service2 = new MyService();
44 MyService service = new MyService();
51 MyService service = new MyService();
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccessibilityServiceTest.java 16 private MyService service ;
21 service = Robolectric.setupService(MyService.class);
35 public static class MyService extends AccessibilityService {
ShadowServiceTest.java 24 private MyService service ;
33 service = Robolectric.setupService(MyService.class);
124 public static class MyService extends Service {
  /cts/tests/tests/appcomponentfactory/src/android/app/componentfactory/cts/
MyService.java 21 public class MyService extends Service {
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
IntentServiceControllerTest.java 24 private final ComponentName componentName = new ComponentName("org.robolectric", MyService.class.getName());
25 private final IntentServiceController<MyService> controller = Robolectric.buildIntentService(MyService.class, new Intent());
34 MyService myService = controller.create().bind().get();
35 assertThat(myService.boundIntent).isNotNull();
36 assertThat(myService.boundIntent.getComponent()).isEqualTo(componentName);
41 MyService myService = controller.create().startCommand(3, 4).get();
42 assertThat(myService.startIntent).isNotNull()
    [all...]
ServiceControllerTest.java 24 private final ComponentName componentName = new ComponentName("org.robolectric", MyService.class.getName());
25 private final ServiceController<MyService> controller = Robolectric.buildService(MyService.class);
34 MyService myService = controller.create().bind().get();
35 assertThat(myService.boundIntent).isNotNull();
36 assertThat(myService.boundIntent.getComponent()).isEqualTo(componentName);
41 MyService myService = controller.create().startCommand(3, 4).get();
42 assertThat(myService.startIntent).isNotNull()
    [all...]
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 64 class MyService(unittest_pb2.TestService):
74 srvc = MyService()
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyService.java 40 public class MyService extends Service {
41 private static final String NOTIFICATION_CHANNEL_ID = "MyService";
MyBroadcastReceiver.java 202 final Intent serviceIntent = new Intent(context, MyService.class);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 238 class MyService extends Provider.Service {
240 public MyService(Provider provider, String type, String algorithm,

Completed in 376 milliseconds