Searched refs:IMPL (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/support/v4/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java55 static final DrawableImpl IMPL; field in class:DrawableCompat
59 IMPL = new HoneycombDrawableImpl();
61 IMPL = new BaseDrawableImpl();
71 IMPL.jumpToCurrentState(drawable);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewConfigurationCompat.java56 static final ViewConfigurationVersionImpl IMPL; field in class:ViewConfigurationCompat
59 IMPL = new FroyoViewConfigurationVersionImpl();
61 IMPL = new BaseViewConfigurationVersionImpl();
73 return IMPL.getScaledPagingTouchSlop(config);
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 DViewGroupCompat.java63 static final ViewGroupCompatImpl IMPL; field in class:ViewGroupCompat
67 IMPL = new ViewGroupCompatIcsImpl();
69 IMPL = new ViewGroupCompatHCImpl();
71 IMPL = new ViewGroupCompatStubImpl();
99 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
119 IMPL.setMotionEventSplittingEnabled(group, split);
H A DKeyEventCompat.java164 static final KeyEventVersionImpl IMPL; field in class:KeyEventCompat
167 IMPL = new HoneycombKeyEventVersionImpl();
169 IMPL = new BaseKeyEventVersionImpl();
176 return IMPL.normalizeMetaState(metaState);
180 return IMPL.metaStateHasModifiers(metaState, modifiers);
184 return IMPL.metaStateHasNoModifiers(metaState);
188 return IMPL.metaStateHasModifiers(event.getMetaState(), modifiers);
192 return IMPL.metaStateHasNoModifiers(event.getMetaState());
196 IMPL.startTracking(event);
200 return IMPL
[all...]
H A DViewCompat.java395 static final ViewCompatImpl IMPL; field in class:ViewCompat
399 IMPL = new JbMr1ViewCompatImpl();
401 IMPL = new JBViewCompatImpl();
403 IMPL = new ICSViewCompatImpl();
405 IMPL = new HCViewCompatImpl();
407 IMPL = new GBViewCompatImpl();
409 IMPL = new BaseViewCompatImpl();
421 return IMPL.canScrollHorizontally(v, direction);
432 return IMPL.canScrollVertically(v, direction);
445 return 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 DMenuItemCompat.java242 static final MenuVersionImpl IMPL; field in class:MenuItemCompat
246 IMPL = new IcsMenuVersionImpl();
248 IMPL = new HoneycombMenuVersionImpl();
250 IMPL = new BaseMenuVersionImpl();
267 return IMPL.setShowAsAction(item, actionEnum);
285 return IMPL.setActionView(item, view);
307 return IMPL.setActionView(item, resId);
320 return IMPL.getActionView(item);
381 return IMPL.expandActionView(item);
400 return IMPL
[all...]
H A DAccessibilityDelegateCompat.java291 private static final AccessibilityDelegateImpl IMPL; field in class:AccessibilityDelegateCompat
296 IMPL = new AccessibilityDelegateJellyBeanImpl();
298 IMPL = new AccessibilityDelegateIcsImpl();
300 IMPL = new AccessibilityDelegateStubImpl();
302 DEFAULT_DELEGATE = IMPL.newAccessiblityDelegateDefaultImpl();
311 mBridge = IMPL.newAccessiblityDelegateBridge(this);
336 IMPL.sendAccessibilityEvent(DEFAULT_DELEGATE, host, eventType);
358 IMPL.sendAccessibilityEventUnchecked(DEFAULT_DELEGATE, host, event);
379 return IMPL.dispatchPopulateAccessibilityEvent(DEFAULT_DELEGATE, host, event);
399 IMPL
[all...]
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);
/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/widget/
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...]
H A DSearchViewCompat.java252 private static final SearchViewCompatImpl IMPL; field in class:SearchViewCompat
256 IMPL = new SearchViewCompatIcsImpl();
258 IMPL = new SearchViewCompatHoneycombImpl();
260 IMPL = new SearchViewCompatStubImpl();
276 return IMPL.newSearchView(context);
290 IMPL.setSearchableInfo(searchView, searchableComponent);
303 IMPL.setImeOptions(searchView, imeOptions);
316 IMPL.setInputType(searchView, inputType);
327 IMPL.setOnQueryTextListener(searchView, listener.mListener);
337 mListener = IMPL
[all...]
H A DScrollerCompat.java238 static final ScrollerCompatImpl IMPL; field in class:ScrollerCompat
242 IMPL = new ScrollerCompatImplIcs();
244 IMPL = new ScrollerCompatImplGingerbread();
246 IMPL = new ScrollerCompatImplBase();
259 mScroller = IMPL.createScroller(context, interpolator);
268 return IMPL.isFinished(mScroller);
277 return IMPL.getCurrX(mScroller);
286 return IMPL.getCurrY(mScroller);
293 return IMPL.getFinalX(mScroller);
300 return IMPL
[all...]
/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/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/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 DAccessibilityRecordCompat.java507 IMPL = new AccessibilityRecordJellyBeanImpl();
509 IMPL = new AccessibilityRecordIcsMr1Impl();
511 IMPL = new AccessibilityRecordIcsImpl();
513 IMPL = new AccessibilityRecordStubImpl();
517 private static final AccessibilityRecordImpl IMPL; field in class:AccessibilityRecordCompat
550 return new AccessibilityRecordCompat(IMPL.obtain(record.mRecord));
560 return new AccessibilityRecordCompat(IMPL.obtain());
571 IMPL.setSource(mRecord, source);
589 IMPL.setSource(mRecord, root, virtualDescendantId);
605 return IMPL
[all...]
H A DAccessibilityEventCompat.java70 private final static AccessibilityEventVersionImpl IMPL; field in class:AccessibilityEventCompat
74 IMPL = new AccessibilityEventIcsImpl();
76 IMPL = new AccessibilityEventStubImpl();
194 return IMPL.getRecordCount(event);
206 IMPL.appendRecord(event, record.getImpl());
216 return new AccessibilityRecordCompat(IMPL.getRecord(event, index));
H A DAccessibilityNodeInfoCompat.java732 IMPL = new AccessibilityNodeInfoJellybeanMr2Impl();
734 IMPL = new AccessibilityNodeInfoJellybeanImpl();
736 IMPL = new AccessibilityNodeInfoIcsImpl();
738 IMPL = new AccessibilityNodeInfoStubImpl();
742 private static final AccessibilityNodeInfoImpl IMPL; field in class:AccessibilityNodeInfoCompat
1072 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain(source));
1087 IMPL.obtain(root, virtualDescendantId));
1096 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain());
1107 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain(info.mInfo));
1116 IMPL
[all...]
H A DAccessibilityNodeProviderCompat.java84 private static final AccessibilityNodeProviderImpl IMPL; field in class:AccessibilityNodeProviderCompat
90 IMPL = new AccessibilityNodeProviderJellyBeanImpl();
92 IMPL = new AccessibilityNodeProviderStubImpl();
100 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
292 return IMPL.getId(info);
304 return IMPL.getResolveInfo(info);
317 return IMPL.getSettingsActivityName(info);
330 return IMPL.getCanRetrieveWindowContent(info);
343 return IMPL.getDescription(info);
425 return IMPL
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java132 private static final NavUtilsImpl IMPL; field in class:NavUtils
137 IMPL = new NavUtilsImplJB();
139 IMPL = new NavUtilsImplBase();
158 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent);
201 IMPL.navigateUpTo(sourceActivity, upIntent);
215 return IMPL.getParentActivityIntent(sourceActivity);
299 String parentActivity = IMPL.getParentActivityName(context, info);

Completed in 8056 milliseconds

12