Searched defs:IMPL (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/os/
H A DLocaleListCompat.java34 static final LocaleListInterface IMPL; field in class:LocaleListCompat
171 IMPL = new LocaleListCompatApi24Impl();
173 IMPL = new LocaleListCompatBaseImpl();
199 return IMPL.getLocaleList();
218 return IMPL.get(index);
228 return IMPL.isEmpty();
236 return IMPL.size();
249 return IMPL.indexOf(locale);
257 return IMPL.toLanguageTags();
268 return IMPL
[all...]
/frameworks/support/legacy/v13/src/main/java/androidx/legacy/app/
H A DFragmentCompat.java160 static final FragmentCompatImpl IMPL; field in class:FragmentCompat
163 IMPL = new FragmentCompatApi24Impl();
165 IMPL = new FragmentCompatApi23Impl();
167 IMPL = new FragmentCompatApi15Impl();
169 IMPL = new FragmentCompatBaseImpl();
253 IMPL.setUserVisibleHint(f, deferStart);
318 IMPL.requestPermissions(fragment, permissions, requestCode);
348 return IMPL.shouldShowRequestPermissionRationale(fragment, permission);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DViewUtils.java37 private static final ViewUtilsBase IMPL; field in class:ViewUtils
46 IMPL = new ViewUtilsApi22();
48 IMPL = new ViewUtilsApi21();
50 IMPL = new ViewUtilsApi19();
52 IMPL = new ViewUtilsBase();
110 IMPL.setTransitionAlpha(view, alpha);
114 return IMPL.getTransitionAlpha(view);
122 IMPL.saveNonTransitionAlpha(view);
131 IMPL.clearNonTransitionAlpha(view);
172 IMPL
[all...]
/frameworks/support/cardview/src/main/java/androidx/cardview/widget/
H A DCardView.java82 private static final CardViewImpl IMPL; field in class:CardView
86 IMPL = new CardViewApi21Impl();
88 IMPL = new CardViewApi17Impl();
90 IMPL = new CardViewBaseImpl();
92 IMPL.initStatic();
162 IMPL.initialize(mCardViewDelegate, context, backgroundColor, radius,
205 IMPL.onCompatPaddingChanged(mCardViewDelegate);
227 IMPL.updatePadding(mCardViewDelegate);
232 if (!(IMPL instanceof CardViewApi21Impl)) {
237 final int minWidth = (int) Math.ceil(IMPL
[all...]

Completed in 360 milliseconds