HomeSort by relevance Sort by last modified time
    Searched refs:IMPL (Results 26 - 50 of 71) sorted by null

12 3

  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 238 static final ScrollerCompatImpl IMPL;
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.getFinalY(mScroller)
    [all...]
SlidingPaneLayout.java 189 static final SlidingPanelLayoutImpl IMPL;
194 IMPL = new SlidingPanelLayoutImplJBMR1();
196 IMPL = new SlidingPanelLayoutImplJB();
198 IMPL = new SlidingPanelLayoutImplBase();
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMAbstractView.mm 39 #define IMPL reinterpret_cast<WebCore::Frame*>(_internal)
53 return kit(IMPL->domWindow()->document());
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
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/
MenuItemCompat.java 242 static final MenuVersionImpl IMPL;
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.collapseActionView(item)
    [all...]
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...]
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);
PagerTitleStrip.java 98 private static final PagerTitleStripImpl IMPL;
101 IMPL = new PagerTitleStripImplIcs();
103 IMPL = new PagerTitleStripImplBase();
108 IMPL.setSingleLineAllCaps(text);
  /frameworks/support/v4/java/android/support/v4/app/
NavUtils.java 132 private static final NavUtilsImpl IMPL;
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);
ActionBarDrawerToggle.java 141 private static final ActionBarDrawerToggleImpl IMPL;
146 IMPL = new ActionBarDrawerToggleImplHC();
148 IMPL = new ActionBarDrawerToggleImplBase();
201 // Allow the Activity to provide an impl
360 return IMPL.getThemeUpIndicator(mActivity);
368 mSetIndicatorInfo = IMPL
377 mSetIndicatorInfo = IMPL
TaskStackBuilder.java 112 private static final TaskStackBuilderImpl IMPL;
116 IMPL = new TaskStackBuilderImplHoneycomb();
118 IMPL = new TaskStackBuilderImplBase();
371 return IMPL.getPendingIntent(mSourceContext, intents, requestCode, flags, options);
NotificationCompat.java 79 private static final NotificationCompatImpl IMPL;
154 IMPL = new NotificationCompatImplJellybean();
156 IMPL = new NotificationCompatImplIceCreamSandwich();
158 IMPL = new NotificationCompatImplHoneycomb();
160 IMPL = new NotificationCompatImplBase();
587 return (Notification) IMPL.build(this);
595 return (Notification) IMPL.build(this);
ShareCompat.java 148 private static ShareCompatImpl IMPL;
152 IMPL = new ShareCompatImplJB();
154 IMPL = new ShareCompatImplICS();
156 IMPL = new ShareCompatImplBase();
232 IMPL.configureMenuItem(item, shareIntent);
755 result = IMPL.escapeHtml(text);
    [all...]
  /frameworks/rs/driver/linkloader/include/
ELFTypes.h 68 #define ELF_TYPE_WRAPPER(TYPE, IMPL) \
70 IMPL value; \
73 TYPE(IMPL val) : value(val) { } \
76 TYPE &operator=(IMPL val) { value = val; return *this; } \
78 operator IMPL() const { return value; } \
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorGObject.pm     [all...]
CodeGeneratorCPP.pm 511 push(@headerContent, " $implClassNameWithNamespace* impl() const;\n");
558 my $statement = " if (!impl())\n";
618 push(@implContent, " : impl(object)\n");
621 push(@implContent, " RefPtr<$implClassNameWithNamespace> impl;\n");
632 push(@implContent, "${className}::$className($implClassNameWithNamespace* impl)\n");
635 push(@implContent, " , m_impl(new ${className}Private(impl))\n");
642 push(@implContent, " m_impl = copy.impl() ? new ${className}Private(copy.impl()) : 0;\n");
648 push(@implContent, " m_impl = copy.impl() ? new ${className}Private(copy.impl()) : 0;\n")
    [all...]
CodeGeneratorV8.pm 112 open($IMPL, ">$implFileName") || die "Couldn't open file $implFileName";
304 static v8::Local<v8::Object> WrapInShadowObject(v8::Local<v8::Object> wrapper, Node* impl);
371 v8::Handle<v8::Object> ${className}::wrap(${nativeType}* impl${forceNewObjectInput})
375 my $getWrapper = IsNodeSubType($dataNode) ? "V8DOMWrapper::getWrapper(impl)" : "${domMapFunction}.get(impl)";
383 return ${className}::wrapSlow(impl);
390 inline v8::Handle<v8::Value> toV8(${nativeType}* impl${forceNewObjectParameter})
392 if (!impl)
394 return ${className}::wrap(impl${forceNewObjectCall});
407 inline v8::Handle<v8::Value> toV8(Node* impl, bool forceNewObject = false
    [all...]
CodeGeneratorObjC.pm     [all...]
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /external/clang/include/clang/Analysis/
CFG.h 304 ImplTy Impl;
306 ElementList(BumpVectorContext &C) : Impl(C, 4) {}
314 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); }
317 return Impl.insert(I, Cnt, E, C);
320 const_reference front() const { return Impl.back(); }
321 const_reference back() const { return Impl.front(); }
323 iterator begin() { return Impl.rbegin(); }
324 iterator end() { return Impl.rend(); }
325 const_iterator begin() const { return Impl.rbegin(); }
326 const_iterator end() const { return Impl.rend();
    [all...]
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /external/robolectric/lib/main/
android-support-v4.jar 

Completed in 452 milliseconds

12 3