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

12

/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentCompat.java52 static final FragmentCompatImpl IMPL; field in class:FragmentCompat
55 IMPL = new ICSMR1FragmentCompatImpl();
57 IMPL = new ICSFragmentCompatImpl();
59 IMPL = new BaseFragmentCompatImpl();
68 IMPL.setMenuVisibility(f, visible);
76 IMPL.setUserVisibleHint(f, deferStart);
/frameworks/support/v4/java/android/support/v4/graphics/
H A DBitmapCompat.java79 static final BitmapImpl IMPL; field in class:BitmapCompat
83 IMPL = new KitKatBitmapCompatImpl();
85 IMPL = new JbMr2BitmapCompatImpl();
87 IMPL = new HcMr1BitmapCompatImpl();
89 IMPL = new BaseBitmapImpl();
94 return IMPL.hasMipMap(bitmap);
98 IMPL.setHasMipMap(bitmap, hasMipMap);
109 return IMPL.getAllocationByteCount(bitmap);
/frameworks/support/v4/java/android/support/v4/net/
H A DConnectivityManagerCompat.java81 private static final ConnectivityManagerCompatImpl IMPL; field in class:ConnectivityManagerCompat
85 IMPL = new JellyBeanConnectivityManagerCompatImpl();
87 IMPL = new HoneycombMR2ConnectivityManagerCompatImpl();
89 IMPL = new GingerbreadConnectivityManagerCompatImpl();
91 IMPL = new BaseConnectivityManagerCompatImpl();
103 return IMPL.isActiveNetworkMetered(cm);
H A DTrafficStatsCompat.java121 private static final TrafficStatsCompatImpl IMPL; field in class:TrafficStatsCompat
125 IMPL = new IcsTrafficStatsCompatImpl();
127 IMPL = new BaseTrafficStatsCompatImpl();
136 IMPL.clearThreadStatsTag();
145 return IMPL.getThreadStatsTag();
156 IMPL.incrementOperationCount(operationCount);
167 IMPL.incrementOperationCount(tag, operationCount);
182 IMPL.setThreadStatsTag(tag);
194 IMPL.tagSocket(socket);
201 IMPL
[all...]
/frameworks/support/v4/java/android/support/v4/text/
H A DICUCompat.java52 private static final ICUCompatImpl IMPL; field in class:ICUCompat
57 IMPL = new ICUCompatImplIcs();
59 IMPL = new ICUCompatImplBase();
70 return IMPL.getScript(locale);
96 return IMPL.addLikelySubtags(locale);
/frameworks/support/v4/java/android/support/v4/view/
H A DScaleGestureDetectorCompat.java24 static final ScaleGestureDetectorImpl IMPL; field in class:ScaleGestureDetectorCompat
60 IMPL = new ScaleGestureDetectorCompatKitKatImpl();
62 IMPL = new BaseScaleGestureDetectorImpl();
75 IMPL.setQuickScaleEnabled(scaleGestureDetector, enabled);
83 return IMPL.isQuickScaleEnabled(scaleGestureDetector); // KitKat
H A DVelocityTrackerCompat.java65 static final VelocityTrackerVersionImpl IMPL; field in class:VelocityTrackerCompat
68 IMPL = new HoneycombVelocityTrackerVersionImpl();
70 IMPL = new BaseVelocityTrackerVersionImpl();
82 return IMPL.getXVelocity(tracker, pointerId);
91 return IMPL.getYVelocity(tracker, pointerId);
H A DViewConfigurationCompat.java84 static final ViewConfigurationVersionImpl IMPL; field in class:ViewConfigurationCompat
87 IMPL = new IcsViewConfigurationVersionImpl();
89 IMPL = new HoneycombViewConfigurationVersionImpl();
91 IMPL = new FroyoViewConfigurationVersionImpl();
93 IMPL = new BaseViewConfigurationVersionImpl();
105 return IMPL.getScaledPagingTouchSlop(config);
113 return IMPL.hasPermanentMenuKey(config);
H A DViewParentCompat.java60 static final ViewParentCompatImpl IMPL; field in class:ViewParentCompat
64 IMPL = new ViewParentCompatICSImpl();
66 IMPL = new ViewParentCompatStubImpl();
96 return IMPL.requestSendAccessibilityEvent(parent, child, event);
H A DGravityCompat.java87 static final GravityCompatImpl IMPL; field in class:GravityCompat
91 IMPL = new GravityCompatImplJellybeanMr1();
93 IMPL = new GravityCompatImplBase();
132 IMPL.apply(gravity, w, h, container, outRect, layoutDirection);
162 IMPL.apply(gravity, w, h, container, xAdj, yAdj, outRect, layoutDirection);
186 IMPL.applyDisplay(gravity, display, inoutObj, layoutDirection);
201 return IMPL.getAbsoluteGravity(gravity, layoutDirection);
H A DMarginLayoutParamsCompat.java125 static final MarginLayoutParamsCompatImpl IMPL; field in class:MarginLayoutParamsCompat
129 IMPL = new MarginLayoutParamsCompatImplJbMr1();
131 IMPL = new MarginLayoutParamsCompatImplBase();
147 return IMPL.getMarginStart(lp);
162 return IMPL.getMarginEnd(lp);
177 IMPL.setMarginStart(lp, marginStart);
192 IMPL.setMarginEnd(lp, marginEnd);
201 return IMPL.isMarginRelative(lp);
211 return IMPL.getLayoutDirection(lp);
222 IMPL
[all...]
H A DMotionEventCompat.java106 static final MotionEventVersionImpl IMPL; field in class:MotionEventCompat
109 IMPL = new EclairMotionEventVersionImpl();
111 IMPL = new BaseMotionEventVersionImpl();
201 return IMPL.findPointerIndex(event, pointerId);
210 return IMPL.getPointerId(event, pointerIndex);
219 return IMPL.getX(event, pointerIndex);
228 return IMPL.getY(event, pointerIndex);
236 return IMPL.getPointerCount(event);
H A DViewGroupCompat.java126 static final ViewGroupCompatImpl IMPL; field in class:ViewGroupCompat
130 IMPL = new ViewGroupCompatApi21Impl();
132 IMPL = new ViewGroupCompatJellybeanMR2Impl();
134 IMPL = new ViewGroupCompatIcsImpl();
136 IMPL = new ViewGroupCompatHCImpl();
138 IMPL = new ViewGroupCompatStubImpl();
166 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
186 IMPL.setMotionEventSplittingEnabled(group, split);
202 return IMPL.getLayoutMode(group);
215 IMPL
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DListPopupWindowCompat.java57 static final ListPopupWindowImpl IMPL; field in class:ListPopupWindowCompat
61 IMPL = new KitKatListPopupWindowImpl();
63 IMPL = new BaseListPopupWindowImpl();
97 return IMPL.createDragToOpenListener(listPopupWindow, src);
H A DPopupMenuCompat.java56 static final PopupMenuImpl IMPL; field in class:PopupMenuCompat
60 IMPL = new KitKatPopupMenuImpl();
62 IMPL = new BasePopupMenuImpl();
90 return IMPL.getDragToOpenListener(popupMenu);
H A DPopupWindowCompat.java61 static final PopupWindowImpl IMPL; field in class:PopupWindowCompat
65 IMPL = new KitKatPopupWindowImpl();
67 IMPL = new BasePopupWindowImpl();
93 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
H A DEdgeEffectCompat.java34 private static final EdgeEffectImpl IMPL; field in class:EdgeEffectCompat
38 IMPL = new EdgeEffectIcsImpl();
40 IMPL = new BaseEdgeEffectImpl();
133 mEdgeEffect = IMPL.newEdgeEffect(context);
143 IMPL.setSize(mEdgeEffect, width, height);
154 return IMPL.isFinished(mEdgeEffect);
162 IMPL.finish(mEdgeEffect);
177 return IMPL.onPull(mEdgeEffect, deltaDistance);
189 return IMPL.onRelease(mEdgeEffect);
204 return IMPL
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java133 private static final NavUtilsImpl IMPL; field in class:NavUtils
138 IMPL = new NavUtilsImplJB();
140 IMPL = new NavUtilsImplBase();
159 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent);
202 IMPL.navigateUpTo(sourceActivity, upIntent);
216 return IMPL.getParentActivityIntent(sourceActivity);
302 String parentActivity = IMPL.getParentActivityName(context, info);
H A DRemoteInput.java188 return IMPL.getResultsFromIntent(intent);
204 IMPL.addResultsToIntent(remoteInputs, intent, results);
207 private static final Impl IMPL; field in class:RemoteInput
254 IMPL = new ImplApi20();
256 IMPL = new ImplJellybean();
258 IMPL = new ImplBase();
H A DTaskStackBuilder.java112 private static final TaskStackBuilderImpl IMPL; field in class:TaskStackBuilder
116 IMPL = new TaskStackBuilderImplHoneycomb();
118 IMPL = new TaskStackBuilderImplBase();
371 return IMPL.getPendingIntent(mSourceContext, intents, requestCode, flags, options);
/frameworks/support/v4/java/android/support/v4/content/
H A DIntentCompat.java83 private static final IntentCompatImpl IMPL; field in class:IntentCompat
87 IMPL = new IntentCompatImplIcsMr1();
89 IMPL = new IntentCompatImplHC();
91 IMPL = new IntentCompatImplBase();
221 return IMPL.makeMainActivity(mainActivity);
249 return IMPL.makeMainSelectorActivity(selectorAction, selectorCategory);
266 return IMPL.makeRestartActivityTask(mainActivity);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityManagerCompat.java126 IMPL = new AccessibilityManagerIcsImpl();
128 IMPL = new AccessibilityManagerStubImpl();
132 private static final AccessibilityManagerVersionImpl IMPL; field in class:AccessibilityManagerCompat
144 return IMPL.addAccessibilityStateChangeListener(manager, listener);
156 return IMPL.removeAccessibilityStateChangeListener(manager, listener);
167 return IMPL.getInstalledAccessibilityServiceList(manager);
186 return IMPL.getEnabledAccessibilityServiceList(manager, feedbackTypeFlags);
196 return IMPL.isTouchExplorationEnabled(manager);
206 mListener = IMPL.newAccessiblityStateChangeListener(this);
H A DAccessibilityNodeProviderCompat.java134 private static final AccessibilityNodeProviderImpl IMPL; field in class:AccessibilityNodeProviderCompat
140 IMPL = new AccessibilityNodeProviderKitKatImpl();
142 IMPL = new AccessibilityNodeProviderJellyBeanImpl();
144 IMPL = new AccessibilityNodeProviderStubImpl();
152 mProvider = IMPL.newAccessibilityNodeProviderBridge(this);
/frameworks/support/v4/java/android/support/v4/accessibilityservice/
H A DAccessibilityServiceInfoCompat.java112 IMPL = new AccessibilityServiceInfoJellyBeanMr2();
114 IMPL = new AccessibilityServiceInfoIcsImpl();
116 IMPL = new AccessibilityServiceInfoStubImpl();
122 private static final AccessibilityServiceInfoVersionImpl IMPL; field in class:AccessibilityServiceInfoCompat
293 return IMPL.getId(info);
305 return IMPL.getResolveInfo(info);
318 return IMPL.getSettingsActivityName(info);
331 return IMPL.getCanRetrieveWindowContent(info);
344 return IMPL.getDescription(info);
426 return IMPL
[all...]
/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java139 static final DrawableImpl IMPL; field in class:DrawableCompat
143 IMPL = new LDrawableImpl();
145 IMPL = new KitKatDrawableImpl();
147 IMPL = new HoneycombDrawableImpl();
149 IMPL = new BaseDrawableImpl();
162 IMPL.jumpToCurrentState(drawable);
178 IMPL.setAutoMirrored(drawable, mirrored);
193 return IMPL.isAutoMirrored(drawable);
204 IMPL.setHotspot(drawable, x, y);
215 IMPL
[all...]

Completed in 197 milliseconds

12