HomeSort by relevance Sort by last modified time
    Searched defs:IMPL (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/view/
ViewPropertyAnimatorCompat.java 643 static final ViewPropertyAnimatorCompatImpl IMPL;
647 IMPL = new LollipopViewPropertyAnimatorCompatImpl();
649 IMPL = new KitKatViewPropertyAnimatorCompatImpl();
651 IMPL = new JBMr2ViewPropertyAnimatorCompatImpl();
653 IMPL = new JBViewPropertyAnimatorCompatImpl();
655 IMPL = new ICSViewPropertyAnimatorCompatImpl();
657 IMPL = new BaseViewPropertyAnimatorCompatImpl();
675 IMPL.setDuration(this, view, value);
692 IMPL.alpha(this, view, value);
709 IMPL.alphaBy(this, view, value)
    [all...]
ScaleGestureDetectorCompat.java 24 static final ScaleGestureDetectorImpl IMPL;
60 IMPL = new ScaleGestureDetectorCompatKitKatImpl();
62 IMPL = new BaseScaleGestureDetectorImpl();
75 IMPL.setQuickScaleEnabled(scaleGestureDetector, enabled);
83 return IMPL.isQuickScaleEnabled(scaleGestureDetector); // KitKat
MarginLayoutParamsCompat.java 125 static final MarginLayoutParamsCompatImpl IMPL;
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.setLayoutDirection(lp, layoutDirection)
    [all...]
ViewGroupCompat.java 139 static final ViewGroupCompatImpl IMPL;
143 IMPL = new ViewGroupCompatLollipopImpl();
145 IMPL = new ViewGroupCompatJellybeanMR2Impl();
147 IMPL = new ViewGroupCompatIcsImpl();
149 IMPL = new ViewGroupCompatHCImpl();
151 IMPL = new ViewGroupCompatStubImpl();
179 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
199 IMPL.setMotionEventSplittingEnabled(group, split);
215 return IMPL.getLayoutMode(group);
228 IMPL.setLayoutMode(group, mode)
    [all...]
LayoutInflaterCompat.java 53 static final LayoutInflaterCompatImpl IMPL;
57 IMPL = new LayoutInflaterCompatImplV21();
59 IMPL = new LayoutInflaterCompatImplV11();
61 IMPL = new LayoutInflaterCompatImplBase();
79 IMPL.setFactory(inflater, factory);
ViewParentCompat.java 201 static final ViewParentCompatImpl IMPL;
205 IMPL = new ViewParentCompatLollipopImpl();
207 IMPL = new ViewParentCompatKitKatImpl();
209 IMPL = new ViewParentCompatICSImpl();
211 IMPL = new ViewParentCompatStubImpl();
241 return IMPL.requestSendAccessibilityEvent(parent, child, event);
268 return IMPL.onStartNestedScroll(parent, child, target, nestedScrollAxes);
289 IMPL.onNestedScrollAccepted(parent, child, target, nestedScrollAxes);
304 IMPL.onStopNestedScroll(parent, target);
330 IMPL.onNestedScroll(parent, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed)
    [all...]
ViewCompat.java     [all...]
GravityCompat.java 87 static final GravityCompatImpl IMPL;
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/view/accessibility/
AccessibilityRecordCompat.java 507 IMPL = new AccessibilityRecordJellyBeanImpl();
509 IMPL = new AccessibilityRecordIcsMr1Impl();
511 IMPL = new AccessibilityRecordIcsImpl();
513 IMPL = new AccessibilityRecordStubImpl();
517 private static final AccessibilityRecordImpl IMPL;
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.getSource(mRecord)
    [all...]
AccessibilityNodeInfoCompat.java 345 this(IMPL.newAccessibilityAction(actionId, label));
358 return IMPL.getAccessibilityActionId(mAction);
368 return IMPL.getAccessibilityActionLabel(mAction);
391 return new CollectionInfoCompat(IMPL.obtainCollectionInfo(rowCount, columnCount,
400 return IMPL.getCollectionInfoColumnCount(mInfo);
404 return IMPL.getCollectionInfoRowCount(mInfo);
408 return IMPL.isCollectionInfoHierarchical(mInfo);
423 return new CollectionItemInfoCompat(IMPL.obtainCollectionItemInfo(rowIndex, rowSpan,
432 return IMPL.getCollectionItemColumnIndex(mInfo);
436 return IMPL.getCollectionItemColumnSpan(mInfo)
    [all...]
  /frameworks/support/v7/cardview/src/android/support/v7/widget/
CardView.java 72 private static final CardViewImpl IMPL;
76 IMPL = new CardViewApi21();
78 IMPL = new CardViewJellybeanMr1();
80 IMPL = new CardViewEclairMr1();
82 IMPL.initStatic();
150 IMPL.onCompatPaddingChanged(this);
171 IMPL.updatePadding(this);
176 if (IMPL instanceof CardViewApi21 == false) {
181 final int minWidth = (int) Math.ceil(IMPL.getMinWidth(this));
191 final int minHeight = (int) Math.ceil(IMPL.getMinHeight(this))
    [all...]
  /frameworks/support/v4/java/android/support/v4/net/
TrafficStatsCompat.java 121 private static final TrafficStatsCompatImpl IMPL;
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.untagSocket(socket)
    [all...]
ConnectivityManagerCompat.java 81 private static final ConnectivityManagerCompatImpl IMPL;
85 IMPL = new JellyBeanConnectivityManagerCompatImpl();
87 IMPL = new HoneycombMR2ConnectivityManagerCompatImpl();
89 IMPL = new GingerbreadConnectivityManagerCompatImpl();
91 IMPL = new BaseConnectivityManagerCompatImpl();
103 return IMPL.isActiveNetworkMetered(cm);
  /frameworks/support/v4/java/android/support/v4/widget/
CompoundButtonCompat.java 36 private static final CompoundButtonCompatImpl IMPL;
41 IMPL = new Api23CompoundButtonImpl();
43 IMPL = new LollipopCompoundButtonImpl();
45 IMPL = new BaseCompoundButtonCompat();
128 IMPL.setButtonTintList(button, tint);
138 return IMPL.getButtonTintList(button);
154 IMPL.setButtonTintMode(button, tintMode);
164 return IMPL.getButtonTintMode(button);
174 return IMPL.getButtonDrawable(button);
PopupWindowCompat.java 133 static final PopupWindowImpl IMPL;
137 IMPL = new Api23PopupWindowImpl();
139 IMPL = new Api21PopupWindowImpl();
141 IMPL = new KitKatPopupWindowImpl();
143 IMPL = new GingerbreadPopupWindowImpl();
145 IMPL = new BasePopupWindowImpl();
171 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
181 IMPL.setOverlapAnchor(popupWindow, overlapAnchor);
191 return IMPL.getOverlapAnchor(popupWindow);
204 IMPL.setWindowLayoutType(popupWindow, layoutType)
    [all...]
TextViewCompat.java 126 static final TextViewCompatImpl IMPL;
131 IMPL = new JbMr2TextViewCompatImpl();
133 IMPL = new JbMr1TextViewCompatImpl();
135 IMPL = new BaseTextViewCompatImpl();
157 IMPL.setCompoundDrawablesRelative(textView, start, top, end, bottom);
177 IMPL.setCompoundDrawablesRelativeWithIntrinsicBounds(textView, start, top, end, bottom);
200 IMPL.setCompoundDrawablesRelativeWithIntrinsicBounds(textView, start, top, end, bottom);
EdgeEffectCompat.java 34 private static final EdgeEffectImpl IMPL;
38 IMPL = new EdgeEffectLollipopImpl(); // Lollipop
40 IMPL = new EdgeEffectIcsImpl();
42 IMPL = new BaseEdgeEffectImpl();
150 mEdgeEffect = IMPL.newEdgeEffect(context);
160 IMPL.setSize(mEdgeEffect, width, height);
171 return IMPL.isFinished(mEdgeEffect);
179 IMPL.finish(mEdgeEffect);
195 return IMPL.onPull(mEdgeEffect, deltaDistance);
213 return IMPL.onPull(mEdgeEffect, deltaDistance, displacement)
    [all...]
  /frameworks/support/v13/java/android/support/v13/app/
FragmentCompat.java 104 static final FragmentCompatImpl IMPL;
107 IMPL = new MncFragmentCompatImpl();
109 IMPL = new ICSMR1FragmentCompatImpl();
111 IMPL = new ICSFragmentCompatImpl();
113 IMPL = new BaseFragmentCompatImpl();
145 IMPL.setMenuVisibility(f, visible);
153 IMPL.setUserVisibleHint(f, deferStart);
209 IMPL.requestPermissions(fragment, permissions, requestCode);
235 return IMPL.shouldShowRequestPermissionRationale(fragment, permission);
  /frameworks/support/v4/java/android/support/v4/animation/
AnimatorCompatHelper.java 24 static AnimatorProvider IMPL;
28 IMPL = new HoneycombMr1AnimatorCompatProvider();
30 IMPL = new DonutAnimatorCompatProvider();
35 return IMPL.emptyValueAnimator();
43 IMPL.clearInterpolator(view);
  /frameworks/support/design/src/android/support/design/widget/
ViewGroupUtils.java 44 private static final ViewGroupUtilsImpl IMPL;
49 IMPL = new ViewGroupUtilsImplHoneycomb();
51 IMPL = new ViewGroupUtilsImplBase();
65 IMPL.offsetDescendantRect(parent, descendant, rect);
ViewUtils.java 52 private static final ViewUtilsImpl IMPL;
57 IMPL = new ViewUtilsImplLollipop();
59 IMPL = new ViewUtilsImplBase();
64 IMPL.setBoundsViewOutlineProvider(view);
  /frameworks/support/v4/java/android/support/v4/graphics/
BitmapCompat.java 79 static final BitmapImpl IMPL;
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/graphics/drawable/
DrawableCompat.java 213 static final DrawableImpl IMPL;
217 IMPL = new MDrawableImpl();
219 IMPL = new LollipopMr1DrawableImpl();
221 IMPL = new LollipopDrawableImpl();
223 IMPL = new KitKatDrawableImpl();
225 IMPL = new JellybeanMr1DrawableImpl();
227 IMPL = new HoneycombDrawableImpl();
229 IMPL = new BaseDrawableImpl();
242 IMPL.jumpToCurrentState(drawable);
258 IMPL.setAutoMirrored(drawable, mirrored)
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
AppOpsManagerCompat.java 81 private static final AppOpsManagerImpl IMPL;
84 IMPL = new AppOpsManager23();
86 IMPL = new AppOpsManagerImpl();
97 return IMPL.permissionToOp(permission);
117 return IMPL.noteOp(context, op, uid, packageName);
138 return IMPL.noteProxyOp(context, op, proxiedPackageName);
  /frameworks/support/v4/java/android/support/v4/content/
ContentResolverCompat.java 74 private static final ContentResolverCompatImpl IMPL;
78 IMPL = new ContentResolverCompatImplJB();
80 IMPL = new ContentResolverCompatImplBase();
125 return IMPL.query(resolver, uri, projection, selection, selectionArgs,

Completed in 217 milliseconds

1 2 3 4