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

  /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/
AccessibilityNodeInfoCompat.java 321 return new AccessibilityNodeInfoCompat(IMPL.getChild(info, index));
346 return new AccessibilityNodeInfoCompat(IMPL.getParent(info));
512 IMPL = new AccessibilityNodeInfoIcsImpl();
514 IMPL = new AccessibilityNodeInfoStubImpl();
518 private static final AccessibilityNodeInfoImpl IMPL;
568 return new AccessibilityNodeInfoCompat(IMPL.obtain(source));
577 return new AccessibilityNodeInfoCompat(IMPL.obtain());
588 return new AccessibilityNodeInfoCompat(IMPL.obtain(info.mInfo));
597 IMPL.setSource(mInfo, source);
606 return IMPL.getWindowId(mInfo)
    [all...]
AccessibilityRecordCompat.java 450 IMPL = new AccessibilityRecordIcsImpl();
452 IMPL = new AccessibilityRecordStubImpl();
456 private static final AccessibilityRecordImpl IMPL;
482 return new AccessibilityRecordCompat(IMPL.obtain(record.mRecord));
492 return new AccessibilityRecordCompat(IMPL.obtain());
503 IMPL.setSource(mRecord, source);
519 return new AccessibilityNodeInfoCompat(IMPL.getSource(mRecord));
528 return IMPL.getWindowId(mRecord);
537 return IMPL.isChecked(mRecord);
548 IMPL.setChecked(mRecord, isChecked)
    [all...]
AccessibilityEventCompat.java 67 private final static AccessibilityEventVersionImpl IMPL;
71 IMPL = new AccessibilityEventIcsImpl();
73 IMPL = new AccessibilityEventStubImpl();
125 return IMPL.getRecordCount(event);
137 IMPL.appendRecord(event, record.getImpl());
147 return new AccessibilityRecordCompat(IMPL.getRecord(event, index));
  /frameworks/support/v4/java/android/support/v4/view/
ViewConfigurationCompat.java 56 static final ViewConfigurationVersionImpl IMPL;
59 IMPL = new FroyoViewConfigurationVersionImpl();
61 IMPL = new BaseViewConfigurationVersionImpl();
73 return IMPL.getScaledPagingTouchSlop(config);
ViewGroupCompat.java 50 static final ViewGroupCompatImpl IMPL;
53 IMPL = new ViewGroupCompatIcsImpl();
55 IMPL = new ViewGroupCompatStubImpl();
83 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
ViewCompat.java 122 static final ViewCompatImpl IMPL;
126 IMPL = new ICSViewCompatImpl();
128 IMPL = new GBViewCompatImpl();
130 IMPL = new BaseViewCompatImpl();
142 return IMPL.canScrollHorizontally(v, direction);
153 return IMPL.canScrollVertically(v, direction);
166 return IMPL.getOverScrollMode(v);
182 IMPL.setOverScrollMode(v, overScrollMode);
219 IMPL.onPopulateAccessibilityEvent(v, event);
252 IMPL.onInitializeAccessibilityEvent(v, event)
    [all...]
MenuCompat.java 58 static final MenuVersionImpl IMPL;
61 IMPL = new HoneycombMenuVersionImpl();
63 IMPL = new BaseMenuVersionImpl();
79 return IMPL.setShowAsAction(item, actionEnum);
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);
KeyEventCompat.java 115 static final KeyEventVersionImpl IMPL;
118 IMPL = new HoneycombKeyEventVersionImpl();
120 IMPL = new BaseKeyEventVersionImpl();
127 return IMPL.normalizeMetaState(metaState);
131 return IMPL.metaStateHasModifiers(metaState, modifiers);
135 return IMPL.metaStateHasNoModifiers(metaState);
139 return IMPL.metaStateHasModifiers(event.getMetaState(), modifiers);
143 return IMPL.metaStateHasNoModifiers(event.getMetaState());
MenuItemCompat.java 102 static final MenuVersionImpl IMPL;
105 IMPL = new HoneycombMenuVersionImpl();
107 IMPL = new BaseMenuVersionImpl();
119 return IMPL.setShowAsAction(item, actionEnum);
133 return IMPL.setActionView(item, view);
MotionEventCompat.java 97 static final MotionEventVersionImpl IMPL;
100 IMPL = new EclairMotionEventVersionImpl();
102 IMPL = new BaseMotionEventVersionImpl();
166 return IMPL.findPointerIndex(event, pointerId);
175 return IMPL.getPointerId(event, pointerIndex);
184 return IMPL.getX(event, pointerIndex);
193 return IMPL.getY(event, pointerIndex);
  /frameworks/support/v4/java/android/support/v4/widget/
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...]
  /frameworks/support/v4/java/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompat.java 91 IMPL = new AccessibilityServiceInfoIcsImpl();
93 IMPL = new AccessibilityServiceInfoStubImpl();
97 private static final AccessibilityServiceInfoVersionImpl IMPL;
126 return IMPL.getId(info);
138 return IMPL.getResolveInfo(info);
151 return IMPL.getSettingsActivityName(info);
164 return IMPL.getCanRetrieveWindowContent(info);
177 return IMPL.getDescription(info);
  /frameworks/support/v4/java/android/support/v4/app/
TaskStackBuilder.java 93 private static final TaskStackBuilderImpl IMPL;
97 IMPL = new TaskStackBuilderImplHoneycomb();
99 IMPL = new TaskStackBuilderImplBase();
238 return IMPL.getPendingIntent(mSourceContext, intents, requestCode, flags);
ShareCompat.java 94 private static ShareCompatImpl IMPL;
98 IMPL = new ShareCompatImplICS();
100 IMPL = new ShareCompatImplBase();
176 IMPL.configureMenuItem(item, shareIntent);
    [all...]
NotificationCompat.java 40 private static final NotificationCompatImpl IMPL;
65 IMPL = new NotificationCompatImplHoneycomb();
67 IMPL = new NotificationCompatImplBase();
385 return (Notification) IMPL.getNotification(this);
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 543 milliseconds