Home | History | Annotate | Download | only in cts

Lines Matching defs:getSystemService

747         assertNull(mContextWrapper.getSystemService("invalid"));
750 assertNotNull(mContextWrapper.getSystemService(Context.WINDOW_SERVICE));
755 assertNull(mContextWrapper.getSystemService(Object.class));
758 assertNotNull(mContextWrapper.getSystemService(WindowManager.class));
759 assertEquals(mContextWrapper.getSystemService(Context.WINDOW_SERVICE),
760 mContextWrapper.getSystemService(WindowManager.class));