Searched defs:object (Results 1 - 25 of 99) sorted by relevance

1234

/frameworks/base/core/java/android/util/
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 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 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/tests/coretests/src/android/animation/
H A DAnimatorInflaterTest.java34 private void assertUnique(Object object) { argument
35 assertUnique(object, "");
38 private void assertUnique(Object object, String msg) { argument
39 final int code = System.identityHashCode(object);
40 assertTrue("object should be unique " + msg + ", obj:" + object, identityHashes.add(code));
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DBaseWrapper.java23 BaseWrapper(T object) { argument
24 if (null == object) {
27 mWrappedObject = object;
/frameworks/base/core/java/android/os/
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/media/mca/filterfw/java/android/filterfw/format/
H A DObjectFormat.java44 public static MutableFrameFormat fromObject(Object object, int target) { argument
45 return object == null
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) { argument
51 return object == null
53 : fromClass(object.getClass(), count, target);
61 throw new IllegalArgumentException("Native object-based formats must be of a " +
68 + "native object-based frame of type " + clazz + "! Perhaps it is missing a "
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
H A DUtils.java35 * @param object
37 public static final void checkNotNull(Object object) { argument
38 if (object == null) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DStack.java40 * Pushes the given object to the stack
41 * @param object the object to push
43 public void push(T object) { argument
44 add(object);
48 * Remove the object at the top of the stack and returns it.
49 * @return the removed object or null if the stack was empty.
60 * Returns the object at the top of the stack.
61 * @return the object at the top or null if the stack is empty.
/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/graphics/java/android/graphics/
H A DPorterDuffColorFilter.java110 public boolean equals(Object object) { argument
111 if (this == object) {
114 if (object == null || getClass() != object.getClass()) {
117 final PorterDuffColorFilter other = (PorterDuffColorFilter) object;
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DGraphReader.java57 public void addReference(String name, Object object) { argument
58 mReferences.put(name, object);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DHorizontalHoverCardSwitcher.java66 * for the object.
68 public void select(HorizontalGridView gridView, View childView, Object object) { argument
75 select(object);
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.h32 void *object; member in struct:list_elem_s
38 // object holds the effect desc and the list sub_elem holds the sub effects
40 void *object; member in struct:list_sub_elem_s
67 void *object; member in struct:sub_effect_entry_s
/frameworks/base/core/jni/
H A Dandroid_util_FileObserver.cpp40 static jint android_os_fileobserver_init(JNIEnv* env, jobject object) argument
49 static void android_os_fileobserver_observe(JNIEnv* env, jobject object, jint fd) argument
82 env->CallVoidMethod(object, method_onEvent, event->wd, event->mask, path);
101 static jint android_os_fileobserver_startWatching(JNIEnv* env, jobject object, jint fd, jstring pathString, jint mask) argument
121 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd) argument
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java68 * Retrieves an iterator object that you can use to iterate over the MIME types that
71 * @return The iterator object
78 * Retrieves an iterator object that you can use to iterate over the file suffixes that
81 * @return The iterator object.
141 * @param object The object to be compared.
144 public boolean equals(Object object) { argument
145 if (object instanceof DrmSupportInfo) {
146 DrmSupportInfo info = (DrmSupportInfo) object;
/frameworks/base/location/java/android/location/
H A DCountry.java64 * Time that this object was created (which we assume to be the time that the source was
129 * Returns the time that this object was created (which we assume to be the time that the source
157 * Returns true if this {@link Country} is equivalent to the given object. This ignores
162 public boolean equals(Object object) { argument
163 if (object == this) {
166 if (object instanceof Country) {
167 Country c = (Country) object;
187 * Compare the specified country to this country object ignoring the source
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.cpp35 JavaObject::JavaObject(jobject object, JNIEnv* env)
121 bool IsJavaInstanceOf(JNIEnv* env, jobject object, const std::string& class_name) { argument
123 return clazz ? env->IsInstanceOf(object, clazz) == JNI_TRUE : false;
133 Value ToCValue(JNIEnv* env, jobject object) { argument
135 if (object != NULL) {
136 if (IsJavaInstanceOf(env, object, "java/lang/Boolean")) {
137 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "booleanValue", "()Z");
138 result = MakeIntValue(env->CallBooleanMethod(object, method) == JNI_TRUE ? 1 : 0);
139 } else if (IsJavaInstanceOf(env, object, "java/lang/Integer")) {
140 jmethodID method = env->GetMethodID(env->GetObjectClass(object), "intValu
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DRangeTest.java139 private static <T extends Comparable<? super T>> void assertInRange(Range<T> object, T needle) { argument
140 assertAction("in-range", object, needle, true, object.contains(needle));
143 private static <T extends Comparable<? super T>> void assertOutOfRange(Range<T> object, argument
145 assertAction("out-of-range", object, needle, false, object.contains(needle));
148 private static <T extends Comparable<? super T>> void assertUpper(Range<T> object, T expected) { argument
149 assertAction("upper", object, expected, object.getUpper());
152 private static <T extends Comparable<? super T>> void assertLower(Range<T> object, argument
156 assertAction(String action, T object, T2 expected, T2 actual) argument
162 assertAction(String action, T object, T2 needle, boolean expected, boolean actual) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DReflectionUtils.java41 public static Object invoke(@NonNull Method method, @Nullable Object object, argument
45 return method.invoke(object, args);
55 * Check if the object is an instance of a class named {@code className}. This doesn't work
58 public static boolean isInstanceOf(Object object, String className) { argument
59 Class superClass = object.getClass();
/frameworks/data-binding/library/src/main/java/android/databinding/
H A DObservableArrayList.java43 public boolean add(T object) { argument
44 super.add(object);
50 public void add(int index, T object) { argument
51 super.add(index, object);
91 public boolean remove(Object object) { argument
92 int index = indexOf(object);
102 public T set(int index, T object) { argument
103 T val = super.set(index, object);
/frameworks/native/include/binder/
H A DBpBinder.h53 void* object,
71 void* object,
85 void* object; member in struct:android::BpBinder::ObjectManager::entry_t
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentStatePagerAdapter.java129 public void destroyItem(ViewGroup container, int position, Object object) { argument
130 Fragment fragment = (Fragment)object;
135 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
136 + " v=" + ((Fragment)object).getView());
147 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
148 Fragment fragment = (Fragment)object;
172 public boolean isViewFromObject(View view, Object object) { argument
173 return ((Fragment)object).getView() == view;

Completed in 777 milliseconds

1234