Searched defs:object (Results 1 - 25 of 148) sorted by last modified time

123456

/frameworks/wilhelm/src/
H A Dsles.cpp22 /** \brief Return true if the specified interface exists and has been initialized for this object.
24 * interface but this particular object has not had the interface exposed at object creation time
27 * entry that the object is locked for either shared or exclusive access.
52 /** \brief Map an IObject to it's "object ID" (which is really a class ID) */
57 // Note this returns the OpenSL ES object ID in preference to the OpenMAX AL if both available
68 /** \brief Acquire a strong reference to an object.
69 * Check that object has the specified "object ID" (which is really a class ID) and is in the
74 SLresult AcquireStrongRef(IObject *object, SLuint3 argument
105 ReleaseStrongRefAndUnlockExclusive(IObject *object) argument
127 ReleaseStrongRef(IObject *object) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .lang.Object) public abstract java.lang.Object getElement (java.lang.Object) public abstract java. ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .lang.Object) public abstract java.lang.Object getElement (java.lang.Object) public abstract java. ...
/frameworks/support/transition/api14/android/support/transition/
H A DPathProperty.java52 public Float get(T object) { argument
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java120 public void destroyItem(ViewGroup container, int position, Object object) { argument
124 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
125 + " v=" + ((Fragment)object).getView());
126 mCurTransaction.detach((Fragment)object);
131 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
132 Fragment fragment = (Fragment)object;
156 public boolean isViewFromObject(View view, Object object) { argument
157 return ((Fragment)object).getView() == view;
H A DFragmentStatePagerAdapter.java133 public void destroyItem(ViewGroup container, int position, Object object) { argument
134 Fragment fragment = (Fragment) object;
139 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
140 + " v=" + ((Fragment)object).getView());
153 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
154 Fragment fragment = (Fragment)object;
178 public boolean isViewFromObject(View view, Object object) { argument
179 return ((Fragment)object).getView() == view;
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/
H A DShadowHelperApi21.java38 /* add shadows and return a implementation detail object */
56 public static void setShadowFocusLevel(Object object, float level) { argument
57 ShadowImpl impl = (ShadowImpl) object;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackBaseControlGlue.java344 protected static void notifyItemChanged(ArrayObjectAdapter adapter, Object object) { argument
345 int index = adapter.indexOf(object);
H A DPlaybackControlGlue.java77 * fragment to intercept all key events. Otherwise, you should set the glue object as key event
281 viewHolder, Object object) {
282 PlaybackControlGlue glue = (PlaybackControlGlue) object;
725 private static void notifyItemChanged(SparseArrayObjectAdapter adapter, Object object) { argument
726 int index = adapter.indexOf(object);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
H A DTransitionHelper.java206 public void setSharedElementEnterTransition(Window window, Object object) { argument
599 public void setSharedElementEnterTransition(Window window, Object object) { argument
600 TransitionHelperApi21.setSharedElementEnterTransition(window, object);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DHorizontalHoverCardSwitcher.java65 * for the object.
67 public void select(HorizontalGridView gridView, View childView, Object object) { argument
74 select(object);
H A DItemBridgeAdapter.java109 * Get currently bound object.
116 * Get extra object associated with the view. Developer can attach
117 * any customized UI object in addition to {@link Presenter.ViewHolder}.
118 * A typical use case is attaching an animator object.
125 * Set extra object associated with the view. Developer can attach
126 * any customized UI object in addition to {@link Presenter.ViewHolder}.
127 * A typical use case is attaching an animator object.
129 public void setExtraObject(Object object) { argument
130 mExtraObject = object;
H A DParallax.java131 public final Integer get(Parallax object) { argument
132 return object.getIntPropertyValue(mIndex);
136 public final void set(Parallax object, Integer value) { argument
137 object.setIntPropertyValue(mIndex, value);
149 * @param object The Parallax object that owns this Property.
152 public final int getValue(Parallax object) { argument
153 return object.getIntPropertyValue(mIndex);
159 * @param object The Parallax object tha
162 setValue(Parallax object, int value) argument
284 get(Parallax object) argument
289 set(Parallax object, Float value) argument
305 getValue(Parallax object) argument
315 setValue(Parallax object, float value) argument
[all...]
H A DPresenterSwitcher.java33 * {@link PresenterSelector} for choosing a {@link Presenter} for a given object.
43 * Selects a view based on the given object and shows that view.
45 public void select(Object object) { argument
46 switchView(object);
70 private void switchView(Object object) { argument
71 Presenter presenter = mPresenterSelector.getPresenter(object);
87 mCurrentPresenter.onBindViewHolder(mCurrentViewHolder, object);
94 * Called when a view is bound to the object of {@link #select(Object)}.
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DBaseMenuWrapper.java36 BaseMenuWrapper(Context context, T object) { argument
37 super(object);
H A DBaseWrapper.java23 BaseWrapper(T object) { argument
24 if (null == object) {
27 mWrappedObject = object;
H A DMenuItemWrapperICS.java52 MenuItemWrapperICS(Context context, SupportMenuItem object) { argument
53 super(context, object);
392 OnMenuItemClickListenerWrapper(OnMenuItemClickListener object) { argument
393 super(object);
405 OnActionExpandListenerWrapper(MenuItem.OnActionExpandListener object) { argument
406 super(object);
H A DMenuItemWrapperJB.java37 MenuItemWrapperJB(Context context, SupportMenuItem object) { argument
38 super(context, object);
H A DMenuWrapperICS.java35 MenuWrapperICS(Context context, SupportMenu object) { argument
36 super(context, object);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatTextViewAutoSizeHelper.java742 private <T> T invokeAndReturnWithDefault(@NonNull Object object, @NonNull String methodName, argument
758 result = (T) method.invoke(object);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DOverlayListView.java51 * Adds an object to the overlay layer.
53 * @param object An object to be added.
55 public void addOverlayObject(OverlayObject object) { argument
56 mOverlayObjects.add(object);
63 for (OverlayObject object : mOverlayObjects) {
64 if (!object.isAnimationStarted()) {
65 object.startAnimation(getDrawingTime());
74 for (OverlayObject object : mOverlayObjects) {
75 object
[all...]
/frameworks/support/wear/src/android/support/wear/internal/widget/drawer/
H A DMultiPageUi.java154 public void destroyItem(ViewGroup container, int position, Object object) { argument
155 container.removeView((View) object);
164 public int getItemPosition(Object object) { argument
169 public boolean isViewFromObject(View view, Object object) { argument
170 return view == object;
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListCompat.java182 public static LocaleListCompat wrap(Object object) { argument
184 if (object instanceof LocaleList) {
185 instance.setLocaleList((LocaleList) object);
192 * Gets the underlying framework object.
194 * @return an android.os.LocaleList object if API &gt;= 24 , or {@link Locale} if not.
/frameworks/support/compat/java/android/support/v4/util/
H A DArraySet.java351 * Adds the specified object to this set. The set is not modified if it
352 * already contains the object.
354 * @param value the object to add.
357 * when the class of the object is inappropriate for this set.
459 * Removes the specified object from this set.
461 * @param object the object to remove.
465 public boolean remove(Object object) { argument
466 final int index = indexOf(object);
582 * <p>This implementation returns false if the object i
589 equals(Object object) argument
[all...]
H A DMapCollections.java125 public V setValue(V object) { argument
130 return colSetValue(mIndex, object);
167 public boolean add(Map.Entry<K, V> object) { argument
220 public boolean remove(Object object) { argument
250 public boolean equals(Object object) { argument
251 return equalsSetHelper(this, object);
270 public boolean add(K object) { argument
285 public boolean contains(Object object) { argument
286 return colIndexOfKey(object) >= 0;
305 public boolean remove(Object object) { argument
340 equals(Object object) argument
358 add(V object) argument
373 contains(Object object) argument
399 remove(Object object) argument
512 equalsSetHelper(Set<T> set, Object object) argument
[all...]

Completed in 1259 milliseconds

123456