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

123456

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h33 void *object; member in struct:list_elem_s
39 // object holds the effect desc and the list sub_elem holds the sub effects
41 void *object; member in struct:list_sub_elem_s
73 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/foundation/tests/
H A DAData_test.cpp229 constexpr static bool canDeleteAs(type object, type del) { return del == object; } argument
383 EXPECT_EQ(2L, _shared.use_count()); // now both u and _shared contains the object
392 EXPECT_EQ(2L, _shared.use_count()); // still both u and _shared contains the object
395 EXPECT_TRUE(_shared.unique()); // now only _shared contains the object
400 EXPECT_EQ(3L, _shared.use_count()); // now u, _shared and _constShared contains the const object
580 EXPECT_EQ(2L, _shared.use_count()); // now both u and _shared contains the object
591 EXPECT_EQ(2L, _shared.use_count()); // still both u and _shared contains the object
594 EXPECT_TRUE(_shared.unique()); // now only _shared contains the object
599 EXPECT_EQ(3L, _shared.use_count()); // now u, _shared and _constShared contains the const object
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp104 sp<RefBase> object; local
105 if (buffer->meta()->findObject("format", &object)) {
106 setFormat(static_cast<MetaData*>(object.get()));
149 sp<RefBase> object; local
150 if ((*buffer)->meta()->findObject("format", &object)) {
151 setFormat(static_cast<MetaData*>(object.get()));
193 sp<RefBase> object; local
194 if (buffer->meta()->findObject("format", &object)) {
195 setFormat(static_cast<MetaData*>(object.get()));
657 sp<RefBase> object; local
[all...]
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.cpp768 * Release the hardware resources owned by this object. Note that this is
806 CameraHardwareInterface *object = local
808 object->mNotifyCb(msg_type, ext1, ext2, object->mCbUser);
817 CameraHardwareInterface *object = local
825 object->mDataCb(msg_type, mem->mBuffers[index], metadata, object->mCbUser);
833 CameraHardwareInterface *object = local
835 // Start refcounting the heap object from here on. When the clients
844 object
873 CameraHardwareInterface *object = local
[all...]
/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);
234 * Returns true if this object has the named value.
520 * Returns a string containing a concise, human-readable description of this object.
521 * @return a printable representation of this object.
/frameworks/base/core/java/android/os/
H A DHandler.java46 * a {@link Message} object containing a bundle of data that will be
80 * @param msg A {@link android.os.Message Message} object
432 * Posts a message to an object that implements Runnable.
674 * 'object' that are in the message queue. If <var>object</var> is null,
677 public final void removeMessages(int what, Object object) { argument
678 mQueue.removeMessages(this, what, object);
708 * whose obj is 'object' in the message queue.
710 public final boolean hasMessages(int what, Object object) { argument
711 return mQueue.hasMessages(this, what, object);
[all...]
H A DMessageQueue.java128 * with {@link #addIdleHandler}. If the given object is not currently
589 boolean hasMessages(Handler h, int what, Object object) { argument
597 if (p.target == h && p.what == what && (object == null || p.obj == object)) {
606 boolean hasMessages(Handler h, Runnable r, Object object) { argument
614 if (p.target == h && p.callback == r && (object == null || p.obj == object)) {
640 void removeMessages(Handler h, int what, Object object) { argument
650 && (object == null || p.obj == object)) {
674 removeMessages(Handler h, Runnable r, Object object) argument
708 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;
H A DTestLooperManager.java22 * Blocks a looper from executing any messages, and allows the holder of this object
59 * Returns the {@link MessageQueue} this object is wrapping.
152 * @param object the value of {@link Message#obj}, null for any
154 public boolean hasMessages(Handler h, Object object, int what) { argument
156 return mQueue.hasMessages(h, what, object);
164 * @param object the value of {@link Message#obj}, null for any
166 public boolean hasMessages(Handler h, Object object, Runnable r) { argument
168 return mQueue.hasMessages(h, r, object);
/frameworks/base/core/java/android/print/
H A DPrinterId.java86 public boolean equals(Object object) { argument
87 if (this == object) {
90 if (object == null) {
93 if (getClass() != object.getClass()) {
96 PrinterId other = (PrinterId) object;
/frameworks/base/core/java/android/util/
H A DArrayMap.java31 * avoid having to create an extra object for every entry put in to the map, and it
711 * <p>This implementation returns false if the object is not a map, or
717 public boolean equals(Object object) { argument
718 if (this == object) {
721 if (object instanceof Map) {
722 Map<?, ?> map = (Map<?, ?>) object;
910 * the {@link java.util.Map.Entry Map.Entry} object returned by its iterator is a single
911 * object that exists for the entire iterator, so you can <b>not</b> hold on to it
H A DArraySet.java362 * Adds the specified object to this set. The set is not modified if it
363 * already contains the object.
365 * @param value the object to add.
368 * when the class of the object is inappropriate for this set.
469 * Removes the specified object from this set.
471 * @param object the object to remove.
475 public boolean remove(Object object) { argument
476 final int index = indexOf(object);
592 * <p>This implementation returns false if the object i
599 equals(Object object) argument
[all...]
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 DFloatProperty.java37 public abstract void setValue(T object, float value); argument
40 final public void set(T object, Float value) { argument
41 setValue(object, value);
H A DIntProperty.java37 public abstract void setValue(T object, int value); argument
40 final public void set(T object, Integer value) { argument
41 setValue(object, value.intValue());
H A DMapCollections.java128 public V setValue(V object) { argument
133 return colSetValue(mIndex, object);
170 public boolean add(Map.Entry<K, V> object) { argument
223 public boolean remove(Object object) { argument
253 public boolean equals(Object object) { argument
254 return equalsSetHelper(this, object);
273 public boolean add(K object) { argument
288 public boolean contains(Object object) { argument
289 return colIndexOfKey(object) >= 0;
308 public boolean remove(Object object) { argument
343 equals(Object object) argument
361 add(V object) argument
376 contains(Object object) argument
402 remove(Object object) argument
514 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.java1128 final Object object) throws IllegalAccessException, InvocationTargetException,
1130 if (!(object instanceof View)) {
1131 return method.invoke(object, (Object[]) null);
1134 final View view = (View) object;
1617 * method invocation is complete. Returns an object equal to the result of the method
1127 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java3022 * <strong>Note:</strong> You must not touch the object after calling this function.
3048 * is recycled. You must not touch the object after calling this function.
3537 public boolean equals(Object object) { argument
3538 if (this == object) {
3541 if (object == null) {
3544 if (getClass() != object.getClass()) {
3547 AccessibilityNodeInfo other = (AccessibilityNodeInfo) object;
4159 * handled by the {@link AccessibilityNodeInfo} to which this object is attached.
4289 * handled by the {@link AccessibilityNodeInfo} to which this object is attached.
4446 * object i
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java351 * Transportation object for returning WebView across thread boundaries.
357 * Sets the WebView to the transportation object.
366 * Gets the WebView object.
368 * @return the transported WebView object
536 * Constructs a new WebView with a Context object.
538 * @param context a Context object used to access application assets
547 * @param context a Context object used to access application assets
557 * @param context a Context object used to access application assets
570 * @param context a Context object used to access application assets
587 * @param context a Context object use
1904 addJavascriptInterface(Object object, String name) 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/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);

Completed in 1091 milliseconds

123456