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

1 2 3

  /external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
DOMTestObj.mm 58 #define IMPL reinterpret_cast<WebCore::TestObj*>(_internal)
68 IMPL->deref();
75 IMPL->deref();
82 return IMPL->readOnlyIntAttr();
88 return IMPL->readOnlyStringAttr();
94 return kit(WTF::getPtr(IMPL->readOnlyTestObjAttr()));
100 return IMPL->shortAttr();
106 IMPL->setShortAttr(newShortAttr);
112 return IMPL->unsignedShortAttr();
118 IMPL->setUnsignedShortAttr(newUnsignedShortAttr)
    [all...]
DOMTestCallback.mm 63 #define IMPL reinterpret_cast<WebCore::TestCallback*>(_internal)
73 IMPL->deref();
80 IMPL->deref();
87 return IMPL->callbackWithNoParam();
93 return IMPL->callbackWithClass1Param(core(class1Param));
99 return IMPL->callbackWithClass2Param(core(class2Param), strArg);
105 return IMPL->callbackWithNonBoolReturnType(core(class3Param));
111 return IMPL->customCallback(core(class5Param), core(class6Param));
117 return IMPL->callbackWithStringList(core(listParam));
DOMTestMediaQueryListListener.mm 49 #define IMPL reinterpret_cast<WebCore::TestMediaQueryListListener*>(_internal)
59 IMPL->deref();
66 IMPL->deref();
73 IMPL->method(core(listener));
DOMTestSerializedScriptValueInterface.mm 51 #define IMPL reinterpret_cast<WebCore::TestSerializedScriptValueInterface*>(_internal)
61 IMPL->deref();
68 IMPL->deref();
75 return IMPL->value()->toString();
DOMTestInterface.mm 50 #define IMPL reinterpret_cast<WebCore::TestInterface*>(_internal)
60 IMPL->deref();
67 IMPL->deref();
  /frameworks/support/v4/java/android/support/v4/graphics/drawable/
DrawableCompat.java 55 static final DrawableImpl IMPL;
59 IMPL = new HoneycombDrawableImpl();
61 IMPL = new BaseDrawableImpl();
71 IMPL.jumpToCurrentState(drawable);
  /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);
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);
ViewGroupCompat.java 63 static final ViewGroupCompatImpl IMPL;
67 IMPL = new ViewGroupCompatIcsImpl();
69 IMPL = new ViewGroupCompatHCImpl();
71 IMPL = new ViewGroupCompatStubImpl();
99 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
119 IMPL.setMotionEventSplittingEnabled(group, split);
KeyEventCompat.java 164 static final KeyEventVersionImpl IMPL;
167 IMPL = new HoneycombKeyEventVersionImpl();
169 IMPL = new BaseKeyEventVersionImpl();
176 return IMPL.normalizeMetaState(metaState);
180 return IMPL.metaStateHasModifiers(metaState, modifiers);
184 return IMPL.metaStateHasNoModifiers(metaState);
188 return IMPL.metaStateHasModifiers(event.getMetaState(), modifiers);
192 return IMPL.metaStateHasNoModifiers(event.getMetaState());
196 IMPL.startTracking(event);
200 return IMPL.isTracking(event)
    [all...]
ViewCompat.java 395 static final ViewCompatImpl IMPL;
399 IMPL = new JbMr1ViewCompatImpl();
401 IMPL = new JBViewCompatImpl();
403 IMPL = new ICSViewCompatImpl();
405 IMPL = new HCViewCompatImpl();
407 IMPL = new GBViewCompatImpl();
409 IMPL = new BaseViewCompatImpl();
421 return IMPL.canScrollHorizontally(v, direction);
432 return IMPL.canScrollVertically(v, direction);
445 return IMPL.getOverScrollMode(v)
    [all...]
MotionEventCompat.java 106 static final MotionEventVersionImpl IMPL;
109 IMPL = new EclairMotionEventVersionImpl();
111 IMPL = new BaseMotionEventVersionImpl();
201 return IMPL.findPointerIndex(event, pointerId);
210 return IMPL.getPointerId(event, pointerIndex);
219 return IMPL.getX(event, pointerIndex);
228 return IMPL.getY(event, pointerIndex);
236 return IMPL.getPointerCount(event);
  /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/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...]
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...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMXPath.mm 43 #define IMPL reinterpret_cast<WebCore::XPathNSResolver*>(_internal)
48 IMPL->deref();
55 IMPL->deref();
61 return IMPL->lookupNamespaceURI(prefix);
71 DOMNativeXPathNSResolver *kit(WebCore::XPathNSResolver* impl)
73 if (!impl)
76 if (DOMNativeXPathNSResolver *wrapper = getDOMWrapper(impl))
80 wrapper->_internal = reinterpret_cast<DOMObjectInternal*>(impl);
81 impl->ref();
82 addDOMWrapper(wrapper, impl);
    [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/net/
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);
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...]
  /frameworks/support/v4/java/android/support/v4/content/
IntentCompat.java 83 private static final IntentCompatImpl IMPL;
87 IMPL = new IntentCompatImplIcsMr1();
89 IMPL = new IntentCompatImplHC();
91 IMPL = new IntentCompatImplBase();
221 return IMPL.makeMainActivity(mainActivity);
249 return IMPL.makeMainSelectorActivity(selectorAction, selectorCategory);
266 return IMPL.makeRestartActivityTask(mainActivity);
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
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);
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...]
AccessibilityEventCompat.java 70 private final static AccessibilityEventVersionImpl IMPL;
74 IMPL = new AccessibilityEventIcsImpl();
76 IMPL = new AccessibilityEventStubImpl();
194 return IMPL.getRecordCount(event);
206 IMPL.appendRecord(event, record.getImpl());
216 return new AccessibilityRecordCompat(IMPL.getRecord(event, index));
AccessibilityNodeInfoCompat.java 732 IMPL = new AccessibilityNodeInfoJellybeanMr2Impl();
734 IMPL = new AccessibilityNodeInfoJellybeanImpl();
736 IMPL = new AccessibilityNodeInfoIcsImpl();
738 IMPL = new AccessibilityNodeInfoStubImpl();
742 private static final AccessibilityNodeInfoImpl IMPL;
    [all...]
  /frameworks/support/v4/java/android/support/v4/accessibilityservice/
AccessibilityServiceInfoCompat.java 112 IMPL = new AccessibilityServiceInfoJellyBeanMr2();
114 IMPL = new AccessibilityServiceInfoIcsImpl();
116 IMPL = new AccessibilityServiceInfoStubImpl();
122 private static final AccessibilityServiceInfoVersionImpl IMPL;
292 return IMPL.getId(info);
304 return IMPL.getResolveInfo(info);
317 return IMPL.getSettingsActivityName(info);
330 return IMPL.getCanRetrieveWindowContent(info);
343 return IMPL.getDescription(info);
425 return IMPL.getCapabilities(info)
    [all...]

Completed in 768 milliseconds

1 2 3