Searched defs:object (Results 1 - 25 of 92) sorted by path

1234

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h31 void *object; member in struct:list_elem_s
37 // object holds the effect desc and the list sub_elem holds the sub effects
39 void *object; member in struct:list_sub_elem_s
66 void *object; member in struct:sub_effect_entry_s
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h71 void *object; /* some optional data field */ member in struct:tagApplicationData
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp98 sp<RefBase> object; local
99 if (buffer->meta()->findObject("format", &object)) {
100 return mFormat = static_cast<MetaData*>(object.get());
132 sp<RefBase> object; local
133 if ((*buffer)->meta()->findObject("format", &object)) {
134 mFormat = static_cast<MetaData*>(object.get());
167 sp<RefBase> object; local
168 if (buffer->meta()->findObject("format", &object)) {
169 mFormat = static_cast<MetaData*>(object.get());
/frameworks/base/core/java/android/content/
H A DContentValues.java77 public boolean equals(Object object) { argument
78 if (!(object instanceof ContentValues)) {
81 return mValues.equals(((ContentValues) object).mValues);
223 * Returns true if this object has the named value.
503 * Returns a string containing a concise, human-readable description of this object.
504 * @return a printable representation of this object.
/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...]
H A DMessageQueue.java93 * with {@link #addIdleHandler}. If the given object is not currently
369 boolean hasMessages(Handler h, int what, Object object) { argument
377 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
386 boolean hasMessages(Handler h, Runnable r, Object object) { argument
394 if (p.target == h && p.callback == r && (object == null || p.obj == object)) {
415 void removeMessages(Handler h, int what, Object object) { argument
425 && (object == null || p.obj == object)) {
449 removeMessages(Handler h, Runnable r, Object object) argument
483 removeCallbacksAndMessages(Handler h, Object object) argument
[all...]
H A DParcelUuid.java82 * Compares this ParcelUuid to another object for equality. If {@code object}
86 * @param object
88 * @return {@code true} if this ParcelUuid is equal to {@code object}
92 public boolean equals(Object object) { argument
93 if (object == null) {
97 if (this == object) {
101 if (!(object instanceof ParcelUuid)) {
105 ParcelUuid that = (ParcelUuid) object;
/frameworks/base/core/java/android/print/
H A DPrinterId.java84 public boolean equals(Object object) { argument
85 if (this == object) {
88 if (object == null) {
91 if (getClass() != object.getClass()) {
94 PrinterId other = (PrinterId) object;
/frameworks/base/core/java/android/util/
H A DArrayMap.java30 * avoid having to create an extra object for every entry put in to the map, and it
652 * <p>This implementation returns false if the object is not a map, or
658 public boolean equals(Object object) { argument
659 if (this == object) {
662 if (object instanceof Map) {
663 Map<?, ?> map = (Map<?, ?>) object;
850 * the {@link java.util.Map.Entry Map.Entry} object returned by its iterator is a single
851 * object that exists for the entire iterator, so you can <b>not</b> hold on to it
H A DArraySet.java332 * Adds the specified object to this set. The set is not modified if it
333 * already contains the object.
335 * @param value the object to add.
338 * when the class of the object is inappropriate for this set.
409 * Removes the specified object from this set.
411 * @param object the object to remove.
415 public boolean remove(Object object) { argument
416 final int index = indexOf(object);
509 * <p>This implementation returns false if the object i
516 equals(Object object) argument
[all...]
H A DDebugUtils.java61 * @param object any object to match against the ANDROID_OBJECT_FILTER
63 * @return true if object is selected by the ANDROID_OBJECT_FILTER
66 public static boolean isObjectSelected(Object object) { argument
72 if (object.getClass().getSimpleName().matches(selectors[0])) {
76 Class<?> klass = object.getClass();
90 .invoke(object, (Object[])null);
H A DFloatProperty.java41 public abstract void setValue(T object, float value); argument
44 final public void set(T object, Float value) { argument
45 setValue(object, value);
H A DIntProperty.java41 public abstract void setValue(T object, int value); argument
44 final public void set(T object, Integer value) { argument
45 setValue(object, value.intValue());
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...]
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
22 * methods can be implemented in terms of the private fields of the host object, or via "setter" and
68 * object (in which case the {@link #set(Object, Object) set()} method should throw a {@link
71 * Class, String)} factory method may return a Property with name "foo" for an object that has
80 * Sets the value on <code>object</code> which this property represents. If the method is unable
81 * to set the value on the target object it will throw an {@link UnsupportedOperationException}
84 public void set(T object, V value) { argument
89 * Returns the current value that this property represents on the given <code>object</code>.
91 public abstract V get(T object); argument
H A DReflectiveProperty.java92 * object matches the type of the Property. The extra checks for primitive types are because
115 public void set(T object, V value) { argument
118 mSetter.invoke(object, value);
126 mField.set(object, value);
136 public V get(T object) { argument
139 return (V) mGetter.invoke(object, (Object[])null);
147 return (V) mField.get(object);
/frameworks/base/core/java/android/view/
H A DViewDebug.java1105 final Object object) throws IllegalAccessException, InvocationTargetException,
1107 if (!(object instanceof View)) {
1108 return method.invoke(object, (Object[]) null);
1111 final View view = (View) object;
1594 * method invocation is complete. Returns an object equal to the result of the method
1104 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2536 * <strong>Note:</strong> You must not touch the object after calling this function.
2549 * is recycled. You must not touch the object after calling this function.
2988 public boolean equals(Object object) { argument
2989 if (this == object) {
2992 if (object == null) {
2995 if (getClass() != object.getClass()) {
2998 AccessibilityNodeInfo other = (AccessibilityNodeInfo) object;
/frameworks/base/core/java/android/webkit/
H A DWebView.java273 * Transportation object for returning WebView across thread boundaries.
279 * Sets the WebView to the transportation object.
288 * Gets the WebView object.
290 * @return the transported WebView object
444 * Constructs a new WebView with a Context object.
446 * @param context a Context object used to access application assets
455 * @param context a Context object used to access application assets
465 * @param context a Context object used to access application assets
478 * @param context a Context object used to access application assets
495 * @param context a Context object use
1772 addJavascriptInterface(Object object, String name) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java39 * <p>However the TextView is referenced, it will be filled with the toString() of each object in
170 * Adds the specified object at the end of the array.
172 * @param object The object to add at the end of the array.
174 public void add(T object) { argument
177 mOriginalValues.add(object);
179 mObjects.add(object);
218 * Inserts the specified object at the specified index in the array.
220 * @param object The object t
223 insert(T object, int index) argument
239 remove(T object) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java52 break; // an animator can only be attached to one object
57 public static Tweener to(Object object, long duration, Object... vars) { argument
99 Tweener tween = sTweens.get(object);
102 anim = ObjectAnimator.ofPropertyValuesHolder(object,
105 sTweens.put(object, tween);
108 anim = sTweens.get(object).animator;
109 replace(props, object); // Cancel all animators for given object
132 Tweener from(Object object, long duration, Object... vars) { argument
134 // toVars[v] = object[
[all...]
/frameworks/base/core/jni/
H A Dandroid_net_LocalSocketImpl.cpp52 socket_connect_local(JNIEnv *env, jobject object, argument
85 socket_bind_local (JNIEnv *env, jobject object, jobject fileDescriptor, argument
114 socket_listen (JNIEnv *env, jobject object, jobject fileDescriptor, jint backlog) argument
138 socket_accept (JNIEnv *env, jobject object, jobject fileDescriptor, jobject s) argument
179 socket_shutdown (JNIEnv *env, jobject object, jobject fileDescriptor, argument
234 socket_getOption(JNIEnv *env, jobject object, jobject fileDescriptor, jint optID) argument
282 JNIEnv *env, jobject object, jobject fileDescriptor, jint optID,
349 static jint socket_pending (JNIEnv *env, jobject object, argument
374 static jint socket_available (JNIEnv *env, jobject object, argument
426 * fields in the LocalSocketImpl object
281 socket_setOption( JNIEnv *env, jobject object, jobject fileDescriptor, jint optID, jint boolValue, jint intValue) argument
549 socket_write_all(JNIEnv *env, jobject object, int fd, void *buf, size_t len) argument
629 socket_read(JNIEnv *env, jobject object, jobject fileDescriptor) argument
662 socket_readba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
707 socket_write(JNIEnv *env, jobject object, jint b, jobject fileDescriptor) argument
729 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
767 socket_get_peer_credentials(JNIEnv *env, jobject object, jobject fileDescriptor) argument
[all...]
H A Dandroid_os_Debug.cpp284 } else if (strstr(name, "/dev/ashmem/dalvik-large object space") == name) {
434 jint pid, jobject object)
462 env->SetIntField(object, stat_fields[i].pss_field, stats[i].pss);
463 env->SetIntField(object, stat_fields[i].pssSwappable_field, stats[i].swappablePss);
464 env->SetIntField(object, stat_fields[i].privateDirty_field, stats[i].privateDirty);
465 env->SetIntField(object, stat_fields[i].sharedDirty_field, stats[i].sharedDirty);
466 env->SetIntField(object, stat_fields[i].privateClean_field, stats[i].privateClean);
467 env->SetIntField(object, stat_fields[i].sharedClean_field, stats[i].sharedClean);
468 env->SetIntField(object, stat_fields[i].swappedOut_field, stats[i].swappedOut);
472 jintArray otherIntArray = (jintArray)env->GetObjectField(object, otherStats_fiel
433 android_os_Debug_getDirtyPagesPid(JNIEnv *env, jobject clazz, jint pid, jobject object) argument
493 android_os_Debug_getDirtyPages(JNIEnv *env, jobject clazz, jobject object) argument
[all...]
H A Dandroid_os_Parcel.cpp290 static void android_os_Parcel_writeStrongBinder(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
294 const status_t err = parcel->writeStrongBinder(ibinderForJavaObject(env, object));
301 static void android_os_Parcel_writeFileDescriptor(JNIEnv* env, jclass clazz, jlong nativePtr, jobject object) argument
306 parcel->writeDupFileDescriptor(jniGetFDFromFileDescriptor(env, object));
483 jobject object = jniCreateFileDescriptor(env, fd); local
484 if (object == NULL) {
487 return object;
507 jobject object = jniCreateFileDescriptor(env, fd); local
508 if (object == NULL) {
511 return object;
514 android_os_Parcel_closeFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
528 android_os_Parcel_clearFileDescriptor(JNIEnv* env, jclass clazz, jobject object) argument
[all...]
H A Dandroid_util_Binder.cpp232 JavaBBinder(JNIEnv* env, jobject object) argument
233 : mVM(jnienv_to_javavm(env)), mObject(env->NewGlobalRef(object))
245 jobject object() const function in class:JavaBBinder
264 ALOGV("onTransact() on %p calling object %p in env %p vm %p\n", this, mObject, env, mVM);
380 JavaDeathRecipient(JNIEnv* env, jobject object, const sp<DeathRecipientList>& list) argument
381 : mVM(jnienv_to_javavm(env)), mObject(env->NewGlobalRef(object)),
385 // The list holds a strong reference to this object.
454 ALOGW("BinderProxy being destroyed; unable to get DR object name");
491 // to the list are holding references on the list object. Only when they are torn
552 jobject object local
562 jobject object = (jobject)val->findObject(&gBinderProxyOffsets); local
[all...]

Completed in 1226 milliseconds

1234