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

12345

/frameworks/wilhelm/src/
H A Dsles.c22 /** \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/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackControlGlue.java64 * handler will be set. Otherwise, you should set the glue object as key event handler to the
193 public void onItemClicked(Presenter.ViewHolder viewHolder, Object object,
195 if (DEBUG) Log.v(TAG, "onItemClicked " + object);
197 if (object instanceof Action) {
198 handled = dispatchAction((Action) object, null);
201 mExternalOnItemViewClickedListener.onItemClicked(viewHolder, object,
299 viewHolder, Object object) {
300 PlaybackControlGlue glue = (PlaybackControlGlue) object;
702 private static void notifyItemChanged(SparseArrayObjectAdapter adapter, Object object) { argument
703 int index = adapter.indexOf(object);
[all...]
H A DPlaybackControlSupportGlue.java66 * handler will be set. Otherwise, you should set the glue object as key event handler to the
195 public void onItemClicked(Presenter.ViewHolder viewHolder, Object object,
197 if (DEBUG) Log.v(TAG, "onItemClicked " + object);
199 if (object instanceof Action) {
200 handled = dispatchAction((Action) object, null);
203 mExternalOnItemViewClickedListener.onItemClicked(viewHolder, object,
301 viewHolder, Object object) {
302 PlaybackControlSupportGlue glue = (PlaybackControlSupportGlue) object;
704 private static void notifyItemChanged(SparseArrayObjectAdapter adapter, Object object) { argument
705 int index = adapter.indexOf(object);
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DHorizontalHoverCardSwitcher.java66 * for the object.
68 public void select(HorizontalGridView gridView, View childView, Object object) { argument
75 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 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/v4/java/android/support/v4/app/
H A DFragmentPagerAdapter.java115 public void destroyItem(ViewGroup container, int position, Object object) { argument
119 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
120 + " v=" + ((Fragment)object).getView());
121 mCurTransaction.detach((Fragment)object);
125 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
126 Fragment fragment = (Fragment)object;
149 public boolean isViewFromObject(View view, Object object) { argument
150 return ((Fragment)object).getView() == view;
H A DFragmentStatePagerAdapter.java129 public void destroyItem(ViewGroup container, int position, Object object) { argument
130 Fragment fragment = (Fragment) object;
135 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
136 + " v=" + ((Fragment)object).getView());
148 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
149 Fragment fragment = (Fragment)object;
172 public boolean isViewFromObject(View view, Object object) { argument
173 return ((Fragment)object).getView() == view;
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java123 public V setValue(V object) { argument
128 return colSetValue(mIndex, object);
165 public boolean add(Map.Entry<K, V> object) { argument
218 public boolean remove(Object object) { argument
248 public boolean equals(Object object) { argument
249 return equalsSetHelper(this, object);
268 public boolean add(K object) { argument
283 public boolean contains(Object object) { argument
284 return colIndexOfKey(object) >= 0;
303 public boolean remove(Object object) { argument
338 equals(Object object) argument
356 add(V object) argument
371 contains(Object object) argument
397 remove(Object object) argument
510 equalsSetHelper(Set<T> set, Object object) argument
[all...]
H A DSimpleArrayMap.java525 * <p>This implementation returns false if the object is not a Map or
531 public boolean equals(Object object) { argument
532 if (this == object) {
535 if (object instanceof SimpleArrayMap) {
536 SimpleArrayMap<?, ?> map = (SimpleArrayMap<?, ?>) object;
560 } else if (object instanceof Map) {
561 Map<?, ?> map = (Map<?, ?>) object;
/frameworks/support/v4/java/android/support/v4/view/
H A DPagerAdapter.java62 * whether a page View is associated with a given key object.</p>
69 * could be implemented as <code>return view == object;</code>.</p>
121 * @param object The same object that was returned by
124 public void destroyItem(ViewGroup container, int position, Object object) { argument
125 destroyItem((View) container, position, object);
134 * @param object The same object that was returned by
137 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
138 setPrimaryItem((View) container, position, object);
195 destroyItem(View container, int position, Object object) argument
211 setPrimaryItem(View container, int position, Object object) argument
236 isViewFromObject(View view, Object object) argument
273 getItemPosition(Object object) argument
[all...]
H A DViewPager.java134 Object object; field in class:ViewPager.ItemInfo
509 mAdapter.destroyItem(this, ii.position, ii.object);
1001 ii.object = mAdapter.instantiateItem(this, position);
1023 final int newPos = mAdapter.getItemPosition(ii.object);
1038 mAdapter.destroyItem(this, ii.position, ii.object);
1169 mAdapter.destroyItem(this, pos, ii.object);
1172 " view: " + ((View) ii.object));
1203 mAdapter.destroyItem(this, pos, ii.object);
1206 " view: " + ((View) ii.object));
1233 mAdapter.setPrimaryItem(this, mCurItem, curItem != null ? curItem.object
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java2304 * @param object The info to wrap.
2305 * @return A wrapper for if the object is not null, null otherwise.
2307 static AccessibilityNodeInfoCompat wrapNonNullInstance(Object object) { argument
2308 if (object != null) {
2309 return new AccessibilityNodeInfoCompat(object);
3201 * <strong>Note:</strong> You must not touch the object after calling this function.
H A DAccessibilityWindowInfoCompat.java261 * @param object The info to wrap.
262 * @return A wrapper for if the object is not null, null otherwise.
264 static AccessibilityWindowInfoCompat wrapNonNullInstance(Object object) { argument
265 if (object != null) {
266 return new AccessibilityWindowInfoCompat(object);
427 * <strong>Note:</strong> You must not touch the object after calling this function.
/frameworks/support/v4/tests/java/android/support/v4/view/
H A DBaseViewPagerTest.java115 public void destroyItem(ViewGroup container, int position, Object object) { argument
117 container.removeView(((ViewHolder) object).view);
121 public int getItemPosition(Object object) { argument
122 return ((ViewHolder) object).position;
126 public boolean isViewFromObject(View view, Object object) { argument
127 return ((ViewHolder) object).view == view;
/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.java48 MenuItemWrapperICS(Context context, SupportMenuItem object) { argument
49 super(context, object);
315 OnMenuItemClickListenerWrapper(OnMenuItemClickListener object) { argument
316 super(object);
328 OnActionExpandListenerWrapper(MenuItem.OnActionExpandListener object) { argument
329 super(object);
H A DMenuItemWrapperJB.java34 MenuItemWrapperJB(Context context, SupportMenuItem object) { argument
35 super(context, object);
H A DMenuWrapperICS.java34 MenuWrapperICS(Context context, SupportMenu object) { argument
35 super(context, 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/design/tests/src/android/support/design/widget/
H A DTabLayoutWithViewPagerTest.java108 public void destroyItem(ViewGroup container, int position, Object object) { argument
110 container.removeView(((ViewHolder) object).view);
114 public int getItemPosition(Object object) { argument
115 return ((ViewHolder) object).position;
119 public boolean isViewFromObject(View view, Object object) { argument
120 return ((ViewHolder) object).view == view;
/frameworks/support/documents-archive/src/android/support/provider/
H A DPreconditions.java36 static void checkArgumentNotNull(Object object, String message) { argument
37 if (object == null) {
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java119 public void destroyItem(ViewGroup container, int position, Object object) { argument
123 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
124 + " v=" + ((Fragment)object).getView());
125 mCurTransaction.detach((Fragment)object);
129 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
130 Fragment fragment = (Fragment)object;
154 public boolean isViewFromObject(View view, Object object) { argument
155 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());
152 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
153 Fragment fragment = (Fragment)object;
177 public boolean isViewFromObject(View view, Object object) { argument
178 return ((Fragment)object).getView() == view;

Completed in 8128 milliseconds

12345