HomeSort by relevance Sort by last modified time
    Searched defs:getSystemService (Results 1 - 6 of 6) sorted by null

  /cts/tests/tests/view/src/android/view/cts/
ContextThemeWrapperTest.java 110 assertEquals(mContext.getSystemService(Context.ACTIVITY_SERVICE),
111 contextThemeWrapper.getSystemService(Context.ACTIVITY_SERVICE));
112 assertNotSame(mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE),
113 contextThemeWrapper.getSystemService(Context.LAYOUT_INFLATER_SERVICE));
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContextImpl.java 59 protected Object getSystemService(String name) {
67 "getSystemService",
78 * Makes {@link #getSystemService(String)} return {@code null} for the given system service name,
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockContext.java 339 public Object getSystemService(String s) {
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
MultiDisplaySystemDecorationTests.java 471 final InputMethodManager imm = activity.getSystemService(InputMethodManager.class);
557 mTargetContext.getSystemService(WindowManager.class)
622 * ApplicationContext except for {@link #getSystemService(String)}.</p>
634 * Emulates the behavior of {@link ContextWrapper#getSystemService(String)} of certain
641 public Object getSystemService(String name) {
642 return mOriginalContext.getSystemService(name);
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
Helper.java     [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 365 assertNull(mContext.getSystemService("invalid"));
368 assertNotNull(mContext.getSystemService(Context.WINDOW_SERVICE));
373 assertNull(mContext.getSystemService(Object.class));
376 assertNotNull(mContext.getSystemService(WindowManager.class));
377 assertEquals(mContext.getSystemService(Context.WINDOW_SERVICE),
378 mContext.getSystemService(WindowManager.class));
    [all...]

Completed in 408 milliseconds