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

1 2 3 4

  /external/qemu/tcg/
tcg-opc.h 47 #define IMPL(X) (__builtin_constant_p(X) && !(X) ? TCG_OPF_NOT_PRESENT : 0)
57 DEF(movcond_i32, 1, 4, 1, IMPL(TCG_TARGET_HAS_movcond_i32))
71 DEF(div_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_div_i32))
72 DEF(divu_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_div_i32))
73 DEF(rem_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_rem_i32))
74 DEF(remu_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_rem_i32))
75 DEF(div2_i32, 2, 3, 0, IMPL(TCG_TARGET_HAS_div2_i32))
76 DEF(divu2_i32, 2, 3, 0, IMPL(TCG_TARGET_HAS_div2_i32))
84 DEF(rotl_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_rot_i32))
85 DEF(rotr_i32, 1, 2, 0, IMPL(TCG_TARGET_HAS_rot_i32)
    [all...]
  /frameworks/support/v13/java/android/support/v13/app/
FragmentCompat.java 52 static final FragmentCompatImpl IMPL;
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/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 46 this(IMPL.newAccessibilityAction(actionId, label));
59 return IMPL.getAccessibilityActionId(mAction);
69 return IMPL.getAccessibilityActionLabel(mAction);
92 return new CollectionInfoCompat(IMPL.obtainCollectionInfo(rowCount, columnCount,
101 return IMPL.getCollectionInfoColumnCount(mInfo);
105 return IMPL.getCollectionInfoRowCount(mInfo);
109 return IMPL.isCollectionInfoHierarchical(mInfo);
124 return new CollectionItemInfoCompat(IMPL.obtainCollectionItemInfo(rowIndex, rowSpan,
133 return IMPL.getCollectionItemColumnIndex(mInfo);
137 return IMPL.getCollectionItemColumnSpan(mInfo)
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
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...]
ViewPropertyAnimatorCompat.java 597 static final ViewPropertyAnimatorCompatImpl IMPL;
601 IMPL = new KitKatViewPropertyAnimatorCompatImpl();
603 IMPL = new JBMr2ViewPropertyAnimatorCompatImpl();
605 IMPL = new JBViewPropertyAnimatorCompatImpl();
607 IMPL = new ICSViewPropertyAnimatorCompatImpl();
609 IMPL = new BaseViewPropertyAnimatorCompatImpl();
627 IMPL.setDuration(this, view, value);
644 IMPL.alpha(this, view, value);
661 IMPL.alphaBy(this, view, value);
678 IMPL.translationX(this, view, value)
    [all...]
ViewCompat.java     [all...]
ViewGroupCompat.java 126 static final ViewGroupCompatImpl IMPL;
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.setLayoutMode(group, mode)
    [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);
VelocityTrackerCompat.java 65 static final VelocityTrackerVersionImpl IMPL;
68 IMPL = new HoneycombVelocityTrackerVersionImpl();
70 IMPL = new BaseVelocityTrackerVersionImpl();
82 return IMPL.getXVelocity(tracker, pointerId);
91 return IMPL.getYVelocity(tracker, pointerId);
ViewConfigurationCompat.java 84 static final ViewConfigurationVersionImpl IMPL;
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);
ViewParentCompat.java 60 static final ViewParentCompatImpl IMPL;
64 IMPL = new ViewParentCompatICSImpl();
66 IMPL = new ViewParentCompatStubImpl();
96 return IMPL.requestSendAccessibilityEvent(parent, child, event);
  /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/graphics/drawable/
DrawableCompat.java 139 static final DrawableImpl IMPL;
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.setHotspotBounds(drawable, left, top, right, bottom)
    [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/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/widget/
PopupWindowCompat.java 61 static final PopupWindowImpl IMPL;
65 IMPL = new KitKatPopupWindowImpl();
67 IMPL = new BasePopupWindowImpl();
93 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
EdgeEffectCompat.java 34 private static final EdgeEffectImpl IMPL;
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.onAbsorb(mEdgeEffect, velocity)
    [all...]
ListPopupWindowCompat.java 57 static final ListPopupWindowImpl IMPL;
61 IMPL = new KitKatListPopupWindowImpl();
63 IMPL = new BaseListPopupWindowImpl();
97 return IMPL.createDragToOpenListener(listPopupWindow, src);
PopupMenuCompat.java 56 static final PopupMenuImpl IMPL;
60 IMPL = new KitKatPopupMenuImpl();
62 IMPL = new BasePopupMenuImpl();
90 return IMPL.getDragToOpenListener(popupMenu);
  /frameworks/support/v4/java/android/support/v4/text/
ICUCompat.java 52 private static final ICUCompatImpl IMPL;
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/app/
NavUtils.java 133 private static final NavUtilsImpl IMPL;
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);
RemoteInput.java 188 return IMPL.getResultsFromIntent(intent);
204 IMPL.addResultsToIntent(remoteInputs, intent, results);
207 private static final Impl IMPL;
209 interface Impl {
215 static class ImplBase implements Impl {
228 static class ImplJellybean implements Impl {
240 static class ImplApi20 implements Impl {
254 IMPL = new ImplApi20();
256 IMPL = new ImplJellybean()
    [all...]

Completed in 360 milliseconds

1 2 3 4