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

1234567

/frameworks/base/core/java/com/android/internal/transition/
H A DEpicenterTranslateClipReveal.java289 public State get(View object) { argument
291 if (!object.getClipBounds(tempRect)) {
296 tempState.trans = object.getTranslationX();
300 tempState.trans = object.getTranslationY();
308 public void set(View object, State value) { argument
310 if (object.getClipBounds(tempRect)) {
318 object.setClipBounds(tempRect);
322 object.setTranslationX(value.trans);
324 object.setTranslationY(value.trans);
/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;
701 private static void notifyItemChanged(SparseArrayObjectAdapter adapter, Object object) { argument
702 int index = adapter.indexOf(object);
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp103 sp<RefBase> object; local
104 if (buffer->meta()->findObject("format", &object)) {
105 setFormat(static_cast<MetaData*>(object.get()));
148 sp<RefBase> object; local
149 if ((*buffer)->meta()->findObject("format", &object)) {
150 setFormat(static_cast<MetaData*>(object.get()));
192 sp<RefBase> object; local
193 if (buffer->meta()->findObject("format", &object)) {
194 setFormat(static_cast<MetaData*>(object.get()));
595 sp<RefBase> object; local
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h64 // add object to this display's list
65 void addObject(egl_object_t* object);
66 // remove object from this display's list
67 void removeObject(egl_object_t* object);
68 // add reference to this object. returns true if this is a valid object.
69 bool getObject(egl_object_t* object) const;
H A Degl_object.cpp45 // this marks the object as "terminated"
59 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { argument
61 // checking that the object is valid.
62 return display->getObject(object);
/frameworks/base/core/java/android/widget/
H A DDayPickerPagerAdapter.java183 public boolean isViewFromObject(View view, Object object) { argument
184 final ViewHolder holder = (ViewHolder) object;
268 public void destroyItem(ViewGroup container, int position, Object object) { argument
269 final ViewHolder holder = (ViewHolder) object;
276 public int getItemPosition(Object object) { argument
277 final ViewHolder holder = (ViewHolder) object;
H A DFastScroller.java1604 public void setValue(View object, int value) {
1605 object.setLeft(value);
1609 public Integer get(View object) {
1610 return object.getLeft();
1620 public void setValue(View object, int value) {
1621 object.setTop(value);
1625 public Integer get(View object) {
1626 return object.getTop();
1636 public void setValue(View object, int value) {
1637 object
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
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 DBaseMenuWrapper.java36 BaseMenuWrapper(Context context, T object) { argument
37 super(object);
H A DMenuWrapperICS.java35 MenuWrapperICS(Context context, SupportMenu object) { argument
36 super(context, object);
/frameworks/base/core/jni/
H A Dandroid_os_Parcel.cpp296 static void android_os_Parcel_writeStrongBinder(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
300 const status_t err = parcel->writeStrongBinder(ibinderForJavaObject(env, object));
307 static void android_os_Parcel_writeFileDescriptor(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
312 parcel->writeDupFileDescriptor(jniGetFDFromFileDescriptor(env, object));
490 jobject object = jniCreateFileDescriptor(env, fd); local
491 if (object == NULL) {
494 return object;
514 jobject object = jniCreateFileDescriptor(env, fd); local
515 if (object == NULL) {
518 return object;
521 android_os_Parcel_closeFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
535 android_os_Parcel_clearFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java44 public RampAnimator(T object, IntProperty<T> property) { argument
45 mObject = object;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DRenderTarget.java298 private void addReferenceTo(Object object) { argument
299 Integer refCount = mRefCounts.get(object);
301 mRefCounts.put(object, refCount + 1);
303 mRefCounts.put(object, 1);
307 private boolean removeReferenceTo(Object object) { argument
308 Integer refCount = mRefCounts.get(object);
311 mRefCounts.put(object, refCount);
314 Log.e("RenderTarget", "Removing reference of already released: " + object + "!");
H A DGraphRunner.java104 public Object object; field in class:GraphRunner.Event
106 public Event(int code, Object object) { argument
108 this.object = object;
133 onPrepare((FilterGraph)event.object);
160 onTearDown((FilterGraph)event.object);
216 public void pushEvent(int eventId, Object object) { argument
217 mEventQueue.offer(new Event(eventId, object));
570 * The configuration object is passed to the constructor. Any changes to it will not affect
/frameworks/base/core/java/android/util/
H A DDebugUtils.java64 * @param object any object to match against the ANDROID_OBJECT_FILTER
66 * @return true if object is selected by the ANDROID_OBJECT_FILTER
69 public static boolean isObjectSelected(Object object) { argument
75 if (object.getClass().getSimpleName().matches(selectors[0])) {
79 Class<?> klass = object.getClass();
93 .invoke(object, (Object[])null);
H A DArraySet.java330 * Adds the specified object to this set. The set is not modified if it
331 * already contains the object.
333 * @param value the object to add.
336 * when the class of the object is inappropriate for this set.
407 * Removes the specified object from this set.
409 * @param object the object to remove.
413 public boolean remove(Object object) { argument
414 final int index = indexOf(object);
527 * <p>This implementation returns false if the object i
534 equals(Object object) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphicsJNI.h58 // Given the 'native' long held by the Rasterizer.java object, return a
71 or kUnknown_SkColorType if the java object is null.
76 * Create a java Bitmap object given the native bitmap
134 * Fetches the backing allocation object. Must be called!
241 #define NPE_CHECK_RETURN_ZERO(env, object) \
242 do { if (NULL == (object)) { doThrowNPE(env); return 0; } } while (0)
244 #define NPE_CHECK_RETURN_VOID(env, object) \
245 do { if (NULL == (object)) { doThrowNPE(env); return; } } while (0)
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c69 // Definition of one GL object in this demo.
105 static void freeGLObject(GLOBJECT *object) argument
107 if (object == NULL)
109 free(object->normalArray);
110 free(object->colorArray);
111 free(object->vertexArray);
112 free(object);
146 static void drawGLObject(GLOBJECT *object) argument
148 assert(object != NULL);
150 glVertexPointer(object
[all...]
/frameworks/av/services/audiopolicy/enginedefault/src/
H A DEngine.h115 Engine(const Engine &object);
116 Engine &operator=(const Engine &object);
/frameworks/native/libs/binder/
H A DBinder.cpp139 const void* objectID, void* object, void* cleanupCookie,
160 e->mObjects.attach(objectID, object, cleanupCookie, func);
236 // the BpRefBase object holding it (when it is constructed), to the
237 // owner of the BpRefBase object when it first acquires that BpRefBase.
138 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
/frameworks/rs/api/
H A Drs_object_types.spec21 elements, and scripts. Most of these object are created using the Java RenderScript APIs.
25 // Opaque handle to a RenderScript object. Do not use this directly.
73 An opaque handle to a RenderScript sampler object.
82 An opaque handle to a RenderScript script object.
111 value: RS_ALLOCATION_USAGE_SHARED = 0x0080, "Allocation's backing store is shared with another object (usually a Bitmap). Copying to or from the original source Bitmap will cause a synchronization rather than a full copy."
/frameworks/base/core/java/android/os/
H A DHandler.java44 * a {@link Message} object containing a bundle of data that will be
77 * @param msg A {@link android.os.Message Message} object
402 * Posts a message to an object that implements Runnable.
644 * 'object' that are in the message queue. If <var>object</var> is null,
647 public final void removeMessages(int what, Object object) { argument
648 mQueue.removeMessages(this, what, object);
670 * whose obj is 'object' in the message queue.
672 public final boolean hasMessages(int what, Object object) { argument
673 return mQueue.hasMessages(this, what, object);
[all...]
/frameworks/base/libs/hwui/renderstate/
H A DRenderState.cpp35 "State object lifecycle not managed correctly");
40 "State object lifecycle not managed correctly");
189 DecStrongTask(VirtualLightRefBase* object) : mObject(object) {} argument
201 void RenderState::postDecStrong(VirtualLightRefBase* object) { argument
202 mRenderThread.queue(new DecStrongTask(object));
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java171 public boolean equals(Object object) { argument
172 if (this == object) {
176 if (!(object instanceof FrameFormat)) {
180 FrameFormat format = (FrameFormat)object;
353 case TYPE_OBJECT: return "object";
/frameworks/native/include/binder/
H A DBinder.h52 void* object,

Completed in 708 milliseconds

1234567