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

1234

/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/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/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/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/av/media/libeffects/factory/
H A DEffectsFactory.h31 void *object; member in struct:list_elem_s
/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_util_FileObserver.cpp40 static jint android_os_fileobserver_init(JNIEnv* env, jobject object) argument
53 static void android_os_fileobserver_observe(JNIEnv* env, jobject object, jint fd) argument
86 env->CallVoidMethod(object, method_onEvent, event->wd, event->mask, path);
105 static jint android_os_fileobserver_startWatching(JNIEnv* env, jobject object, jint fd, jstring pathString, jint mask) argument
125 static void android_os_fileobserver_stopWatching(JNIEnv* env, jobject object, jint fd, jint wfd) argument
/frameworks/compile/linkloader/android/
H A Dtest-librsloader.c96 RSExecRef object = rsloaderCreateExec(image, sb.st_size, find_sym, 0); local
97 if (!object) {
98 fprintf(stderr, "ERROR: Unable to load elf object.\n");
104 (int (*)(int, char **))rsloaderGetSymbolAddress(object, "main");
108 printf("ELF object finished with code: %d\n", ret);
111 rsloaderDisposeExec(object);
H A Dlibrsloader.cpp31 static inline RSExecRef wrap(ELFObject<32> *object) { argument
32 return reinterpret_cast<RSExecRef>(object);
35 static inline ELFObject<32> *unwrap(RSExecRef object) { argument
36 return reinterpret_cast<ELFObject<32> *>(object);
43 RSExecRef object = rsloaderLoadExecutable(buf, buf_size); local
44 if (!object) {
48 if (!rsloaderRelocateExecutable(object, find_symbol, find_symbol_context)) {
49 rsloaderDisposeExec(object);
53 return object;
60 llvm::OwningPtr<ELFObject<32> > object(ELFObjec
72 ELFObject<32>* object = unwrap(object_); local
80 ELFObject<32> *object = unwrap(object_); local
100 rsloaderDisposeExec(RSExecRef object) argument
106 ELFObject<32> *object = unwrap(object_); local
128 ELFObject<32> *object = unwrap(object_); local
147 rsloaderGetFuncCount(RSExecRef object) argument
158 rsloaderGetFuncNameList(RSExecRef object, size_t size, char const **list) argument
[all...]
/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/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/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/services/java/com/android/server/power/
H A DRampAnimator.java42 public RampAnimator(T object, IntProperty<T> property) { argument
43 mObject = object;
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
H A DJavaBridgeTestBase.java81 // Sets up the WebView and injects the supplied object. Intended to be called from setUp().
82 protected void setUpWebView(final Object object, final String name) throws Exception { argument
87 // loading so that the Java object is injected.
93 webView.addJavascriptInterface(object, name);
/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/native/opengl/libs/EGL/
H A Degl_object.cpp44 // this marks the object as "terminated"
58 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { argument
60 // checking that the object is valid.
61 return display->getObject(object);
/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;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentStatePagerAdapter.java125 public void destroyItem(ViewGroup container, int position, Object object) { argument
126 Fragment fragment = (Fragment)object;
131 if (DEBUG) Log.v(TAG, "Removing item #" + position + ": f=" + object
132 + " v=" + ((Fragment)object).getView());
143 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
144 Fragment fragment = (Fragment)object;
168 public boolean isViewFromObject(View view, Object object) { argument
169 return ((Fragment)object).getView() == view;
/frameworks/base/media/java/android/media/videoeditor/
H A DEffect.java184 public boolean equals(Object object) { argument
185 if (!(object instanceof Effect)) {
188 return mUniqueId.equals(((Effect)object).mUniqueId);
H A DOverlay.java208 public boolean equals(Object object) { argument
209 if (!(object instanceof Overlay)) {
212 return mUniqueId.equals(((Overlay)object).mUniqueId);

Completed in 1397 milliseconds

1234