/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
D | AccessibilityRecordCompat.java | 506 IMPL = new AccessibilityRecordJellyBeanImpl(); 508 IMPL = new AccessibilityRecordIcsMr1Impl(); 510 IMPL = new AccessibilityRecordIcsImpl(); 512 IMPL = new AccessibilityRecordStubImpl(); 516 private static final AccessibilityRecordImpl IMPL; field in AccessibilityRecordCompat 542 return new AccessibilityRecordCompat(IMPL.obtain(record.mRecord)); in obtain() 552 return new AccessibilityRecordCompat(IMPL.obtain()); in obtain() 563 IMPL.setSource(mRecord, source); in setSource() 581 IMPL.setSource(mRecord, root, virtualDescendantId); in setSource() 597 return IMPL.getSource(mRecord); in getSource() [all …]
|
D | AccessibilityNodeInfoCompat.java | 705 IMPL = new AccessibilityNodeInfoJellybeanImpl(); 707 IMPL = new AccessibilityNodeInfoIcsImpl(); 709 IMPL = new AccessibilityNodeInfoStubImpl(); 713 private static final AccessibilityNodeInfoImpl IMPL; field in AccessibilityNodeInfoCompat 949 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain(source)); in obtain() 964 IMPL.obtain(root, virtualDescendantId)); in obtain() 973 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain()); in obtain() 984 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.obtain(info.mInfo)); in obtain() 993 IMPL.setSource(mInfo, source); in setSource() 1016 IMPL.setSource(mInfo, root, virtualDescendantId); in setSource() [all …]
|
D | AccessibilityManagerCompat.java | 126 IMPL = new AccessibilityManagerIcsImpl(); 128 IMPL = new AccessibilityManagerStubImpl(); 132 private static final AccessibilityManagerVersionImpl IMPL; 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);
|
D | AccessibilityEventCompat.java | 70 private final static AccessibilityEventVersionImpl IMPL; field in AccessibilityEventCompat 74 IMPL = new AccessibilityEventIcsImpl(); 76 IMPL = new AccessibilityEventStubImpl(); 194 return IMPL.getRecordCount(event); in getRecordCount() 206 IMPL.appendRecord(event, record.getImpl()); in appendRecord() 216 return new AccessibilityRecordCompat(IMPL.getRecord(event, index)); in getRecord()
|
D | AccessibilityNodeProviderCompat.java | 84 private static final AccessibilityNodeProviderImpl IMPL; 90 IMPL = new AccessibilityNodeProviderJellyBeanImpl(); 92 IMPL = new AccessibilityNodeProviderStubImpl(); 100 mProvider = IMPL.newAccessibilityNodeProviderBridge(this);
|
/frameworks/support/v4/java/android/support/v4/view/ |
D | ViewCompat.java | 321 static final ViewCompatImpl IMPL; field in ViewCompat 325 IMPL = new JbMr1ViewCompatImpl(); 327 IMPL = new JBViewCompatImpl(); 329 IMPL = new ICSViewCompatImpl(); 331 IMPL = new HCViewCompatImpl(); 333 IMPL = new GBViewCompatImpl(); 335 IMPL = new BaseViewCompatImpl(); 347 return IMPL.canScrollHorizontally(v, direction); in canScrollHorizontally() 358 return IMPL.canScrollVertically(v, direction); in canScrollVertically() 371 return IMPL.getOverScrollMode(v); in getOverScrollMode() [all …]
|
D | MotionEventCompat.java | 106 static final MotionEventVersionImpl IMPL; field in MotionEventCompat 109 IMPL = new EclairMotionEventVersionImpl(); 111 IMPL = new BaseMotionEventVersionImpl(); 201 return IMPL.findPointerIndex(event, pointerId); in findPointerIndex() 210 return IMPL.getPointerId(event, pointerIndex); in getPointerId() 219 return IMPL.getX(event, pointerIndex); in getX() 228 return IMPL.getY(event, pointerIndex); in getY() 236 return IMPL.getPointerCount(event); in getPointerCount()
|
D | KeyEventCompat.java | 115 static final KeyEventVersionImpl IMPL; field in KeyEventCompat 118 IMPL = new HoneycombKeyEventVersionImpl(); 120 IMPL = new BaseKeyEventVersionImpl(); 127 return IMPL.normalizeMetaState(metaState); in normalizeMetaState() 131 return IMPL.metaStateHasModifiers(metaState, modifiers); in metaStateHasModifiers() 135 return IMPL.metaStateHasNoModifiers(metaState); in metaStateHasNoModifiers() 139 return IMPL.metaStateHasModifiers(event.getMetaState(), modifiers); in hasModifiers() 143 return IMPL.metaStateHasNoModifiers(event.getMetaState()); in hasNoModifiers()
|
D | AccessibilityDelegateCompat.java | 291 private static final AccessibilityDelegateImpl IMPL; 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.onPopulateAccessibilityEvent(DEFAULT_DELEGATE, host, event); [all …]
|
D | VelocityTrackerCompat.java | 65 static final VelocityTrackerVersionImpl IMPL; field in VelocityTrackerCompat 68 IMPL = new HoneycombVelocityTrackerVersionImpl(); 70 IMPL = new BaseVelocityTrackerVersionImpl(); 82 return IMPL.getXVelocity(tracker, pointerId); in getXVelocity() 91 return IMPL.getYVelocity(tracker, pointerId); in getYVelocity()
|
D | MenuItemCompat.java | 102 static final MenuVersionImpl IMPL; field in MenuItemCompat 105 IMPL = new HoneycombMenuVersionImpl(); 107 IMPL = new BaseMenuVersionImpl(); 119 return IMPL.setShowAsAction(item, actionEnum); in setShowAsAction() 133 return IMPL.setActionView(item, view); in setActionView()
|
D | ViewConfigurationCompat.java | 56 static final ViewConfigurationVersionImpl IMPL; field in ViewConfigurationCompat 59 IMPL = new FroyoViewConfigurationVersionImpl(); 61 IMPL = new BaseViewConfigurationVersionImpl(); 73 return IMPL.getScaledPagingTouchSlop(config); in getScaledPagingTouchSlop()
|
D | MenuCompat.java | 58 static final MenuVersionImpl IMPL; field in MenuCompat 61 IMPL = new HoneycombMenuVersionImpl(); 63 IMPL = new BaseMenuVersionImpl(); 79 return IMPL.setShowAsAction(item, actionEnum); in setShowAsAction()
|
D | ViewGroupCompat.java | 50 static final ViewGroupCompatImpl IMPL; field in ViewGroupCompat 53 IMPL = new ViewGroupCompatIcsImpl(); 55 IMPL = new ViewGroupCompatStubImpl(); 83 return IMPL.onRequestSendAccessibilityEvent(group, child, event); in onRequestSendAccessibilityEvent()
|
/frameworks/support/v4/java/android/support/v4/widget/ |
D | SearchViewCompat.java | 252 private static final SearchViewCompatImpl IMPL; 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.newOnQueryTextListener(this); [all …]
|
D | EdgeEffectCompat.java | 34 private static final EdgeEffectImpl IMPL; field in EdgeEffectCompat 38 IMPL = new EdgeEffectIcsImpl(); 40 IMPL = new BaseEdgeEffectImpl(); 133 mEdgeEffect = IMPL.newEdgeEffect(context); in EdgeEffectCompat() 143 IMPL.setSize(mEdgeEffect, width, height); in setSize() 154 return IMPL.isFinished(mEdgeEffect); in isFinished() 162 IMPL.finish(mEdgeEffect); in finish() 177 return IMPL.onPull(mEdgeEffect, deltaDistance); in onPull() 189 return IMPL.onRelease(mEdgeEffect); in onRelease() 204 return IMPL.onAbsorb(mEdgeEffect, velocity); in onAbsorb() [all …]
|
/frameworks/support/v4/java/android/support/v4/net/ |
D | TrafficStatsCompat.java | 121 private static final TrafficStatsCompatImpl IMPL; field in TrafficStatsCompat 125 IMPL = new IcsTrafficStatsCompatImpl(); 127 IMPL = new BaseTrafficStatsCompatImpl(); 136 IMPL.clearThreadStatsTag(); in clearThreadStatsTag() 145 return IMPL.getThreadStatsTag(); in getThreadStatsTag() 156 IMPL.incrementOperationCount(operationCount); in incrementOperationCount() 167 IMPL.incrementOperationCount(tag, operationCount); in incrementOperationCount() 182 IMPL.setThreadStatsTag(tag); in setThreadStatsTag() 194 IMPL.tagSocket(socket); in tagSocket() 201 IMPL.untagSocket(socket); in untagSocket()
|
D | ConnectivityManagerCompat.java | 81 private static final ConnectivityManagerCompatImpl IMPL; field in ConnectivityManagerCompat 85 IMPL = new JellyBeanConnectivityManagerCompatImpl(); 87 IMPL = new HoneycombMR2ConnectivityManagerCompatImpl(); 89 IMPL = new GingerbreadConnectivityManagerCompatImpl(); 91 IMPL = new BaseConnectivityManagerCompatImpl(); 103 return IMPL.isActiveNetworkMetered(cm); in isActiveNetworkMetered()
|
/frameworks/support/v13/java/android/support/v13/app/ |
D | FragmentCompat.java | 52 static final FragmentCompatImpl IMPL; field in FragmentCompat 55 IMPL = new ICSMR1FragmentCompatImpl(); 57 IMPL = new ICSFragmentCompatImpl(); 59 IMPL = new BaseFragmentCompatImpl(); 68 IMPL.setMenuVisibility(f, visible); in setMenuVisibility() 76 IMPL.setUserVisibleHint(f, deferStart); in setUserVisibleHint()
|
/frameworks/support/v4/java/android/support/v4/accessibilityservice/ |
D | AccessibilityServiceInfoCompat.java | 91 IMPL = new AccessibilityServiceInfoIcsImpl(); 93 IMPL = new AccessibilityServiceInfoStubImpl(); 97 private static final AccessibilityServiceInfoVersionImpl IMPL; field in AccessibilityServiceInfoCompat 126 return IMPL.getId(info); in getId() 138 return IMPL.getResolveInfo(info); in getResolveInfo() 151 return IMPL.getSettingsActivityName(info); in getSettingsActivityName() 164 return IMPL.getCanRetrieveWindowContent(info); in getCanRetrieveWindowContent() 177 return IMPL.getDescription(info); in getDescription()
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | IntentCompat.java | 83 private static final IntentCompatImpl IMPL; field in IntentCompat 87 IMPL = new IntentCompatImplIcsMr1(); 89 IMPL = new IntentCompatImplHC(); 91 IMPL = new IntentCompatImplBase(); 221 return IMPL.makeMainActivity(mainActivity); in makeMainActivity() 249 return IMPL.makeMainSelectorActivity(selectorAction, selectorCategory); in makeMainSelectorActivity() 266 return IMPL.makeRestartActivityTask(mainActivity); in makeRestartActivityTask()
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | NavUtils.java | 132 private static final NavUtilsImpl IMPL; field in NavUtils 137 IMPL = new NavUtilsImplJB(); 139 IMPL = new NavUtilsImplBase(); 158 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent); in shouldUpRecreateTask() 201 IMPL.navigateUpTo(sourceActivity, upIntent); in navigateUpTo() 215 return IMPL.getParentActivityIntent(sourceActivity); in getParentActivityIntent() 299 String parentActivity = IMPL.getParentActivityName(context, info); in getParentActivityName()
|
D | NotificationCompat.java | 79 private static final NotificationCompatImpl IMPL; field in NotificationCompat 152 IMPL = new NotificationCompatImplJellybean(); 154 IMPL = new NotificationCompatImplIceCreamSandwich(); 156 IMPL = new NotificationCompatImplHoneycomb(); 158 IMPL = new NotificationCompatImplBase(); 585 return (Notification) IMPL.build(this); in getNotification() 593 return (Notification) IMPL.build(this); in build()
|
D | TaskStackBuilder.java | 108 private static final TaskStackBuilderImpl IMPL; field in TaskStackBuilder 112 IMPL = new TaskStackBuilderImplHoneycomb(); 114 IMPL = new TaskStackBuilderImplBase(); 360 return IMPL.getPendingIntent(mSourceContext, intents, requestCode, flags, options); in getPendingIntent()
|
/frameworks/compile/linkloader/include/ |
D | ELFTypes.h | 68 #define ELF_TYPE_WRAPPER(TYPE, IMPL) \ argument 70 IMPL value; \ 73 TYPE(IMPL val) : value(val) { } \ 76 TYPE &operator=(IMPL val) { value = val; return *this; } \ 78 operator IMPL() const { return value; } \
|