Searched refs:object (Results 76 - 100 of 249) sorted by relevance

12345678910

/frameworks/support/v13/java/android/support/v13/app/
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/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuItemWrapperJB.java37 MenuItemWrapperJB(Context context, SupportMenuItem object) { argument
38 super(context, object);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleBackground.java181 public void setValue(RippleBackground object, float value) {
182 object.mOpacity = value;
183 object.invalidateSelf();
187 public Float get(RippleBackground object) {
188 return object.mOpacity;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DRecyclerViewUtil.java117 private static void setProperty(@NonNull Object object, @NonNull String propertyClassName, argument
121 setProperty(object, propertyClass, propertyValue, propertySetter);
124 private static void setProperty(@NonNull Object object, @NonNull Class<?> propertyClass, argument
127 invoke(getMethod(object.getClass(), propertySetter, propertyClass), object, propertyValue);
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java45 /** Mapping of instantiated object to row ID */
110 public void destroyItem(View container, int position, Object object) { argument
111 mObjectRowMap.remove(object);
113 super.destroyItem(container, position, object);
117 public int getItemPosition(Object object) { argument
118 final Integer rowId = mObjectRowMap.get(object);
/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/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp71 #define GET_INT(object, field) \
72 env->GetIntField(object, field)
74 #define SET_INT(object, field, value) \
75 env->SetIntField(object, field, value)
77 #define GET_LONG(object, field) \
78 env->GetLongField(object, field)
80 #define SET_LONG(object, field, value) \
81 env->SetLongField(object, field, value)
83 #define INVOKEV(object, method, ...) \
84 env->CallVoidMethod(object, metho
[all...]
/frameworks/wilhelm/src/
H A Dsles_allinclusive.h54 // object priorities, preemption, loss of control, device configuration
108 predestroy_ok, // OK to destroy object now
123 #define INTERFACE_EXPLICIT 1 // must be requested explicitly during object creation
124 #define INTERFACE_DYNAMIC 2 // can be requested after object creation
178 // Describes how an interface is related to a given object
181 #define INTERFACE_INITIALIZED 1 ///< not requested at object creation time
182 #define INTERFACE_EXPOSED 2 ///< requested at object creation time
211 // OpenSL ES and OpenMAX AL object IDs come from different ranges, and some objects such as
212 // Engine, Output Mix, LED, and Vibra belong to both APIs, so we keep both object IDs
213 SLuint16 mSLObjectID; // OpenSL ES object I
[all...]
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/base/core/jni/
H A Dandroid_net_LocalSocketImpl.cpp55 socket_connect_local(JNIEnv *env, jobject object, argument
88 socket_bind_local (JNIEnv *env, jobject object, jobject fileDescriptor, argument
118 * fields in the LocalSocketImpl object. Returns 0 on success
238 static int socket_write_all(JNIEnv *env, jobject object, int fd, argument
248 object, field_outboundFileDescriptors);
318 static jint socket_read (JNIEnv *env, jobject object, jobject fileDescriptor) argument
336 err = socket_read_all(env, object, fd, &buf, 1);
351 static jint socket_readba (JNIEnv *env, jobject object, argument
386 ret = socket_read_all(env, object,
396 static void socket_write (JNIEnv *env, jobject object, argument
418 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
456 socket_get_peer_credentials(JNIEnv *env, jobject object, jobject fileDescriptor) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java41 * Returns a view for each object in a collection of data objects you
46 * data object in the collection you provide, and places the result in a TextView.
47 * You may also customize what type of view is used for the data object in the collection.
48 * To customize what type of view is used for the data object,
218 * Adds the specified object at the end of the array.
220 * @param object The object to add at the end of the array.
222 public void add(@Nullable T object) { argument
225 mOriginalValues.add(object);
227 mObjects.add(object);
283 insert(@ullable T object, int index) argument
300 remove(@ullable T object) argument
[all...]
H A DDayPickerPagerAdapter.java199 public boolean isViewFromObject(View view, Object object) { argument
200 final ViewHolder holder = (ViewHolder) object;
284 public void destroyItem(ViewGroup container, int position, Object object) { argument
285 final ViewHolder holder = (ViewHolder) object;
292 public int getItemPosition(Object object) { argument
293 final ViewHolder holder = (ViewHolder) object;
306 SimpleMonthView getView(Object object) { argument
307 if (object == null) {
310 final ViewHolder holder = (ViewHolder) object;
/frameworks/native/libs/binder/
H A DBpBinder.cpp45 const void* objectID, void* object, void* cleanupCookie,
49 e.object = object;
54 ALOGE("Trying to attach object ID %p to binder ObjectManager %p with object %p, but object ID already in use",
55 objectID, this, object);
66 return mObjects.valueAt(i).object;
81 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
124 // we're returning a reference to a non-static object her
44 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java424 private void arg(String name, Object object) { argument
425 arg(name, toString(object));
428 private void arg(String name, EGLDisplay object) { argument
429 if (object == EGL10.EGL_DEFAULT_DISPLAY) {
431 } else if (object == EGL_NO_DISPLAY) {
434 arg(name, toString(object));
438 private void arg(String name, EGLContext object) { argument
439 if (object == EGL10.EGL_NO_CONTEXT) {
442 arg(name, toString(object));
446 private void arg(String name, EGLSurface object) { argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java132 public boolean equals(Object object) { argument
133 return object instanceof Frame && ((Frame)object).mBackingStore == mBackingStore;
/frameworks/base/tools/preload/
H A Dsorttable.js413 // grab the event object (IE uses a global event object)
457 Function.prototype.forEach = function(object, block, context) {
458 for (var key in object) {
460 block.call(context, object[key], key, object);
473 var forEach = function(object, block, context) {
474 if (object) {
476 if (object instanceof Function) {
479 } else if (object
[all...]
/frameworks/native/include/binder/
H A DBpBinder.h53 void* object,
71 void* object,
85 void* object; member in struct:android::BpBinder::ObjectManager::entry_t
/frameworks/native/libs/binder/include/binder/
H A DBpBinder.h53 void* object,
71 void* object,
85 void* object; member in struct:android::BpBinder::ObjectManager::entry_t
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c233 *pDescriptor = *(effect_descriptor_t *)gCurEffect->object;
242 gCurEffect = ((lib_entry_t *)gCurLib->object)->effects;
334 e->object = fx;
363 if (e1->object == handle) {
369 fx = (effect_entry_t *)e1->object;
429 d = (effect_descriptor_t*)e->object;
434 subeffect = (sub_effect_entry_t*)subefx->object;
622 e->object = l;
641 fe->object = fl;
697 sub_effect->object
[all...]
/frameworks/rs/tests/lldb/
H A Dconfig.py24 class Config(object):
25 '''Test suite configuration object.
/frameworks/rs/tests/lldb/tests/harness/
H A Dassert_mixins.py27 strictly inherit only from `object`
31 class CoordinateAssertionsMixin(object):
H A Dutil_timer.py22 class Timer(object):
/frameworks/support/transition/api14/android/support/transition/
H A DPathProperty.java52 public Float get(T object) { argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DFitWidthBitmapDrawable.java219 public void set(FitWidthBitmapDrawable object, Integer value) {
220 object.setVerticalOffset(value);
224 public Integer get(FitWidthBitmapDrawable object) {
225 return object.getVerticalOffset();

Completed in 2234 milliseconds

12345678910