Searched defs:object (Results 76 - 100 of 116) sorted by relevance

12345

/frameworks/base/core/java/android/os/
H A DMessageQueue.java126 * with {@link #addIdleHandler}. If the given object is not currently
587 boolean hasMessages(Handler h, int what, Object object) { argument
595 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
604 boolean hasMessages(Handler h, Runnable r, Object object) { argument
612 if (p.target == h && p.callback == r && (object == null || p.obj == object)) {
621 void removeMessages(Handler h, int what, Object object) { argument
631 && (object == null || p.obj == object)) {
655 removeMessages(Handler h, Runnable r, Object object) argument
689 removeCallbacksAndMessages(Handler h, Object object) argument
[all...]
/frameworks/base/core/java/android/util/
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
511 equalsSetHelper(Set<T> set, Object object) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrame.java77 public void setObjectValue(Object object) { argument
82 if (object instanceof int[]) {
83 setInts((int[])object);
84 } else if (object instanceof float[]) {
85 setFloats((float[])object);
86 } else if (object instanceof ByteBuffer) {
87 setData((ByteBuffer)object);
88 } else if (object instanceof Bitmap) {
89 setBitmap((Bitmap)object);
91 setGenericObjectValue(object);
[all...]
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/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/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DUtils.java64 public static <T> T checkNotNull(T object) { argument
65 if (object == null) throw new NullPointerException();
66 return object;
262 public static void waitWithoutInterrupt(Object object) { argument
264 object.wait();
266 Log.w(TAG, "unexpected interrupt: " + object);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameType.java33 * <li>object</li>
37 * If the object element type is used, class information may be appended to the FrameType to
38 * indicate what class of objects are expected. When constructing an object based FrameType, you
39 * have the option of either specifying a type that represents a single object of that class, or
41 * object has a dimensionality of 0, while an array has a dimensionality of 1.
43 * When constructing a non-object type, you have the option of creating a 1D or 2D buffer, or
50 * type that matches only object-base types (of any Object subclass). You may also specify the
60 * <li>For object-based types: The classes must be compatible.</li>
68 * object is produced, this will cause a runtime exception to be thrown).
70 * For convenience, single and array object
280 equals(Object object) argument
[all...]
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 + "!");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
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;
/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...]
/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/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/base/core/jni/
H A Dandroid_os_Parcel.cpp298 static void android_os_Parcel_writeStrongBinder(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
302 const status_t err = parcel->writeStrongBinder(ibinderForJavaObject(env, object));
309 static jlong android_os_Parcel_writeFileDescriptor(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
314 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/media/jni/
H A Dandroid_media_MediaRecorder.cpp49 // helper function to extract a native Camera object from a Camera Java object
52 android_media_MediaCodec_getPersistentInputSurface(JNIEnv* env, jobject object);
65 // ref-counted object for callbacks
75 jobject mObject; // Weak ref to MediaRecorder Java object to call on
91 // We use a weak reference so the MediaRecorder object can be garbage collected.
120 static sp<PersistentSurface> get_persistentSurface(JNIEnv* env, jobject object) argument
123 return android_media_MediaCodec_getPersistentInputSurface(env, object);
166 jniThrowNullPointerException(env, "camera object is a NULL pointer");
515 JNIEnv* env, jobject thiz, jobject object) {
514 android_media_MediaRecorder_setInputSurface( JNIEnv* env, jobject thiz, jobject object) argument
[all...]
H A Dandroid_mtp_MtpDevice.cpp138 void fill_jobject_from_object_info(JNIEnv* env, jobject object, MtpObjectInfo* objectInfo) { argument
140 env->SetIntField(object, field_objectInfo_handle, objectInfo->mHandle);
142 env->SetIntField(object, field_objectInfo_storageId, objectInfo->mStorageID);
144 env->SetIntField(object, field_objectInfo_format, objectInfo->mFormat);
146 env->SetIntField(object, field_objectInfo_protectionStatus, objectInfo->mProtectionStatus);
148 env->SetIntField(object, field_objectInfo_compressedSize, objectInfo->mCompressedSize);
150 env->SetIntField(object, field_objectInfo_thumbFormat, objectInfo->mThumbFormat);
152 env->SetIntField(object, field_objectInfo_thumbCompressedSize,
156 env->SetIntField(object, field_objectInfo_thumbPixWidth, objectInfo->mThumbPixWidth);
158 env->SetIntField(object, field_objectInfo_thumbPixHeigh
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java474 * same target object.
481 * Returns whether the object associated with the given filter is
653 Object object) {
661 if (array[idx] == object) {
652 remove_all_objects(ArrayMap<String, F[]> map, String name, Object object) argument
/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/v7/appcompat/src/android/support/v7/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);
/frameworks/base/core/java/android/view/
H A DViewDebug.java1123 final Object object) throws IllegalAccessException, InvocationTargetException,
1125 if (!(object instanceof View)) {
1126 return method.invoke(object, (Object[]) null);
1129 final View view = (View) object;
1612 * method invocation is complete. Returns an object equal to the result of the method
1122 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp42 * Utility class used to extract the value from the provided java object.
43 * May need to add some utility function to create java object.
47 static String8 getStringValue(JNIEnv* env, jobject object, const char* fieldName);
50 JNIEnv* env, jobject object, const char* fieldName, int* dataLength);
57 static int getIntValue(JNIEnv* env, jobject object, const char* fieldName);
60 String8 Utility::getStringValue(JNIEnv* env, jobject object, const char* fieldName) { argument
63 = env->GetFieldID(env->GetObjectClass(object), fieldName , "Ljava/lang/String;");
66 jstring valueString = (jstring) env->GetObjectField(object, fieldID);
92 JNIEnv* env, jobject object, const char* fieldName, int* dataLength) {
96 jfieldID fieldID = env->GetFieldID(env->GetObjectClass(object), fieldNam
91 getByteArrayValue( JNIEnv* env, jobject object, const char* fieldName, int* dataLength) argument
119 getIntValue(JNIEnv* env, jobject object, const char* fieldName) argument
[all...]
/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java39 * <p>A remote control client object is associated with a media button event receiver. This
151 * from this object. An example of fixed playback volume is a remote player, playing over HDMI
160 * this object.
397 * @return A media session object or null.
404 * Class used to modify metadata in a {@link RemoteControlClient} object.
453 * @return Returns a reference to the same MetadataEditor object, so you can chain put
482 * @return Returns a reference to the same MetadataEditor object, so you can chain put
505 * @return Returns a reference to the same MetadataEditor object, so you can chain put
526 public synchronized MetadataEditor putObject(int key, Object object) argument
528 super.putObject(key, object);
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java855 public MagnificationSpec get(SpecAnimationBridge object) { argument
856 synchronized (object.mLock) {
857 return object.mSentMagnificationSpec;
862 public void set(SpecAnimationBridge object, MagnificationSpec value) { argument
863 synchronized (object.mLock) {
864 object.setMagnificationSpecLocked(value);
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java80 * Method object extracted out to attach a listener to a bound Observable object.
90 * Method object extracted out to attach a listener to a bound ObservableList object.
100 * Method object extracted out to attach a listener to a bound ObservableMap object.
281 * Called when an observed object changes. Sets the appropriate dirty flag if applicable.
283 * @param object The object that has changed.
289 protected abstract boolean onFieldChange(int localFieldId, Object object, in argument
424 handleFieldChange(int mLocalFieldId, Object object, int fieldId) argument
1088 setTarget(T object) argument
[all...]
/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...]

Completed in 2139 milliseconds

12345