Searched refs:object (Results 1 - 25 of 107) sorted by path

12345

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c217 *pDescriptor = *(effect_descriptor_t *)gCurEffect->object;
226 gCurEffect = ((lib_entry_t *)gCurLib->object)->effects;
313 e->object = fx;
342 if (e1->object == handle) {
348 fx = (effect_entry_t *)e1->object;
490 e->object = l;
570 e->object = d;
588 lib_entry_t *l = (lib_entry_t *)e->object;
605 gCurEffect = ((lib_entry_t *)gCurLib->object)->effects;
618 lib_entry_t *l = (lib_entry_t *)e->object;
[all...]
H A DEffectsFactory.h31 void *object; member in struct:list_elem_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/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
395 * Posts a message to an object that implements Runnable.
631 * 'object' that are in the message queue. If <var>object</var> is null,
634 public final void removeMessages(int what, Object object) { argument
635 mQueue.removeMessages(this, what, object);
657 * whose obj is 'object' in the message queue.
659 public final boolean hasMessages(int what, Object object) { argument
660 return mQueue.hasMessages(this, what, object);
H A DMessageQueue.java92 * with {@link #addIdleHandler}. If the given object is not currently
333 final boolean hasMessages(Handler h, int what, Object object) { argument
341 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
350 final boolean hasMessages(Handler h, Runnable r, Object object) { argument
358 if (p.target == h && p.callback == r && (object == null || p.obj == object)) {
367 final void removeMessages(Handler h, int what, Object object) { argument
377 && (object == null || p.obj == object)) {
401 removeMessages(Handler h, Runnable r, Object object) argument
435 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/text/
H A DSpannableStringBuilder.java370 // Add span only if this object is not yet used as a span in this string
412 Object object = mSpans[i];
430 sendSpanRemoved(object, start, end);
583 * Mark the specified range of text with the specified object.
692 * Remove the specified markup object from the buffer.
705 * markup object, or -1 if it is not attached to this buffer.
727 * markup object, or -1 if it is not attached to this buffer.
749 * markup object, or 0 if it is not attached to this buffer.
1278 * @param p the Paint object that is requesting this information
/frameworks/base/core/java/android/text/format/
H A DDateFormat.java262 * Returns a {@link java.text.DateFormat} object that can format the time according
265 * @return the {@link java.text.DateFormat} object that properly formats the time.
281 * Returns a {@link java.text.DateFormat} object that can format the date
285 * @return the {@link java.text.DateFormat} object that properly formats the date.
295 * Returns a {@link java.text.DateFormat} object to format the date
352 * Returns a {@link java.text.DateFormat} object that can format the date
355 * @return the {@link java.text.DateFormat} object that formats the date in long form.
362 * Returns a {@link java.text.DateFormat} object that can format the date
365 * @return the {@link java.text.DateFormat} object that formats the date in long form.
429 * Given a format string and a {@link java.util.Date} object, return
[all...]
/frameworks/base/core/java/android/util/
H A DDebugUtils.java60 * @param object any object to match against the ANDROID_OBJECT_FILTER
62 * @return true if object is selected by the ANDROID_OBJECT_FILTER
65 public static boolean isObjectSelected(Object object) { argument
71 if (object.getClass().getSimpleName().matches(selectors[0])) {
75 Class<?> klass = object.getClass();
89 .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 set(object, value.intValue());
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 DView.java569 * classes change actual properties of the View object, such as {@link #setAlpha(float) alpha} and
577 * You can attach an {@link Animation} object to a view using
2659 * The Camera object is used to compute a 3D matrix when rotationX or rotationY are set.
2695 * The amount of translation of the object away from its left property (post-layout).
2701 * The amount of translation of the object away from its top property (post-layout).
4338 * Register a drag event listener callback object for this View. The parameter is
4858 * {@link AccessibilityNodeInfo#recycle()} to minimize object creation.
5574 * insets object is propagated down the hierarchy, so any changes made to it will
7717 * @param event The KeyEvent object that defines the button action.
7765 * @param event The KeyEvent object tha
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1550 * <strong>Note:</strong> You must not touch the object after calling this function.
1573 * is recycled. You must not touch the object after calling this function.
1784 public boolean equals(Object object) { argument
1785 if (this == object) {
1788 if (object == null) {
1791 if (getClass() != object.getClass()) {
1794 AccessibilityNodeInfo other = (AccessibilityNodeInfo) object;
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java92 // Javascript interface object
94 Object object; field in class:BrowserFrame.JSObject
97 public JSObject(Object object, boolean requireAnnotation) { argument
98 this.object = object;
209 * @param settings A WebSettings object that holds all settings.
545 * Retrieves the render tree of this frame and puts it as the object for
560 * Retrieves the visual text of the frames, puts it as the object for
590 * the Javascript window object has been cleared.
598 if (jsobject != null && jsobject.object !
[all...]
H A DWebView.java269 * Transportation object for returning WebView across thread boundaries.
275 * Sets the WebView to the transportation object.
284 * Gets the WebView object.
286 * @return the transported WebView object
435 * Constructs a new WebView with a Context object.
437 * @param context a Context object used to access application assets
446 * @param context a Context object used to access application assets
456 * @param context a Context object used to access application assets
467 * @param context a Context object used to access application assets
490 * @param context a Context object use
1534 addJavascriptInterface(Object object, String name) argument
[all...]
H A DWebViewClassic.java757 // Native WebView pointer that is 0 until the native object has been
4122 public void addJavascriptInterface(Object object, String name) { argument
4124 if (object == null) {
4129 arg.mObject = object;
5524 // any object in this code path, we move the local variable out to be a private
/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/android/graphics/
H A DGraphicsJNI.h48 or kNo_Config if the java object is null.
52 /** Create a java Bitmap object given the native bitmap (required) and optional
106 jbyteArray fStorageObj; // The Java byte[] object used as the bitmap backing store
118 * to the backing buffer object.
143 /** Return the Java array object created for the last allocation.
244 #define NPE_CHECK_RETURN_ZERO(env, object) \
245 do { if (NULL == (object)) { doThrowNPE(env); return 0; } } while (0)
247 #define NPE_CHECK_RETURN_VOID(env, object) \
248 do { if (NULL == (object)) { doThrowNPE(env); return; } } while (0)
/frameworks/base/core/jni/
H A Dandroid_debug_JNITest.cpp33 static jint android_debug_JNITest_part1(JNIEnv* env, jobject object, argument
45 clazz = env->GetObjectClass(object);
66 result = env->CallIntMethod(object, part2id,
H A Dandroid_net_LocalSocketImpl.cpp53 socket_create (JNIEnv *env, jobject object, jboolean stream) argument
71 socket_connect_local(JNIEnv *env, jobject object, argument
107 socket_bind_local (JNIEnv *env, jobject object, jobject fileDescriptor, argument
139 socket_listen (JNIEnv *env, jobject object, jobject fileDescriptor, int backlog) argument
163 socket_accept (JNIEnv *env, jobject object, jobject fileDescriptor, jobject s) argument
204 socket_shutdown (JNIEnv *env, jobject object, jobject fileDescriptor, argument
259 socket_getOption(JNIEnv *env, jobject object, jobject fileDescriptor, int optID) argument
307 JNIEnv *env, jobject object, jobject fileDescriptor, int optID,
375 static jint socket_available (JNIEnv *env, jobject object, argument
424 static void socket_close (JNIEnv *env, jobject object, jobjec argument
306 socket_setOption( JNIEnv *env, jobject object, jobject fileDescriptor, int optID, jint boolValue, jint intValue) argument
575 socket_write_all(JNIEnv *env, jobject object, int fd, void *buf, size_t len) argument
655 socket_read(JNIEnv *env, jobject object, jobject fileDescriptor) argument
688 socket_readba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
733 socket_write(JNIEnv *env, jobject object, jint b, jobject fileDescriptor) argument
755 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
793 socket_get_peer_credentials(JNIEnv *env, jobject object, jobject fileDescriptor) argument
[all...]
H A Dandroid_os_Debug.cpp244 jint pid, jobject object)
258 env->SetIntField(object, stat_fields[i].pss_field, stats[i].pss);
259 env->SetIntField(object, stat_fields[i].privateDirty_field, stats[i].privateDirty);
260 env->SetIntField(object, stat_fields[i].sharedDirty_field, stats[i].sharedDirty);
263 jintArray otherIntArray = (jintArray)env->GetObjectField(object, otherStats_field);
280 static void android_os_Debug_getDirtyPages(JNIEnv *env, jobject clazz, jobject object) argument
282 android_os_Debug_getDirtyPagesPid(env, clazz, getpid(), object);
243 android_os_Debug_getDirtyPagesPid(JNIEnv *env, jobject clazz, jint pid, jobject object) argument

Completed in 6906 milliseconds

12345