Searched defs:object (Results 51 - 75 of 148) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java44 public RampAnimator(T object, IntProperty<T> property) { argument
45 mObject = object;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DRecyclerViewUtil.java117 private static void setProperty(@NonNull Object object, @NonNull String propertyClassName, argument
121 setProperty(object, propertyClass, propertyValue, propertySetter);
124 private static void setProperty(@NonNull Object object, @NonNull Class<?> propertyClass, argument
127 invoke(getMethod(object.getClass(), propertySetter, propertyClass), object, propertyValue);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
H A DGenerationalClassUtil.java157 String packageName, String fileName, Serializable object) {
165 oos.writeObject(object);
156 writeIntermediateFile(ProcessingEnvironment processingEnv, String packageName, String fileName, Serializable object) argument
/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp36 // this marks the object as "terminated"
50 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { argument
52 // checking that the object is valid.
53 return display->getObject(object);
/frameworks/native/vulkan/libvulkan/
H A Ddebug_report.cpp58 uint64_t object,
67 node->callback(flags, object_type, object, location, message_code,
75 uint64_t object,
87 info->pfnCallback(flags, object_type, object, location,
97 callbacks_->Message(flags, object_type, object, location, message_code,
104 uint64_t object,
114 Message(flags, object_type, object, 0, 0, LOG_TAG, buf);
171 uint64_t object,
178 instance, flags, object_type, object, location, message_code,
182 flags, object_type, object, locatio
56 Message(VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT object_type, uint64_t object, size_t location, int32_t message_code, const char* layer_prefix, const char* message) const argument
73 Message(VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT object_type, uint64_t object, size_t location, int32_t message_code, const char* layer_prefix, const char* message) const argument
102 PrintV(VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT object_type, uint64_t object, const char* format, va_list ap) const argument
168 DebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT object_type, uint64_t object, size_t location, int32_t message_code, const char* layer_prefix, const char* message) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java45 /** Mapping of instantiated object to row ID */
110 public void destroyItem(View container, int position, Object object) { argument
111 mObjectRowMap.remove(object);
113 super.destroyItem(container, position, object);
117 public int getItemPosition(Object object) { argument
118 final Integer rowId = mObjectRowMap.get(object);
H A DBaseFragmentPagerAdapter.java104 public void destroyItem(View container, int position, Object object) { argument
108 if (DEBUG) Log.v(TAG, "Detaching item #" + position + ": f=" + object
109 + " v=" + ((Fragment)object).getView());
111 Fragment fragment = (Fragment) object;
125 public void setPrimaryItem(View container, int position, Object object) { argument
126 Fragment fragment = (Fragment) object;
149 public boolean isViewFromObject(View view, Object object) { argument
151 View root = ((Fragment) object).getView();
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListCompat.java182 public static LocaleListCompat wrap(Object object) { argument
184 if (object instanceof LocaleList) {
185 instance.setLocaleList((LocaleList) object);
192 * Gets the underlying framework object.
194 * @return an android.os.LocaleList object if API &gt;= 24 , or {@link Locale} if not.
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java73 * @param object The info to wrap.
74 * @return A wrapper for if the object is not null, null otherwise.
76 static AccessibilityWindowInfoCompat wrapNonNullInstance(Object object) { argument
77 if (object != null) {
78 return new AccessibilityWindowInfoCompat(object);
302 * <strong>Note:</strong> You must not touch the object after calling this function.
/frameworks/support/core-ui/java/android/support/v4/view/
H A DPagerAdapter.java62 * whether a page View is associated with a given key object.</p>
69 * could be implemented as <code>return view == object;</code>.</p>
121 * @param object The same object that was returned by
124 public void destroyItem(ViewGroup container, int position, Object object) { argument
125 destroyItem((View) container, position, object);
134 * @param object The same object that was returned by
137 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
138 setPrimaryItem((View) container, position, object);
195 destroyItem(View container, int position, Object object) argument
211 setPrimaryItem(View container, int position, Object object) argument
236 isViewFromObject(View view, Object object) argument
273 getItemPosition(Object object) argument
[all...]
/frameworks/support/dynamic-animation/src/android/support/animation/
H A DFlingAnimation.java63 * This creates a FlingAnimation that animates the property of the given object.
65 * @param object the Object whose property will be animated
69 public <K> FlingAnimation(K object, FloatPropertyCompat<K> property) { argument
70 super(object, property);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentPagerAdapter.java116 public void destroyItem(ViewGroup container, int position, Object object) { argument
120 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
121 + " v=" + ((Fragment)object).getView());
122 mCurTransaction.detach((Fragment)object);
127 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
128 Fragment fragment = (Fragment)object;
151 public boolean isViewFromObject(View view, Object object) { argument
152 return ((Fragment)object).getView() == view;
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DTabLayoutPreselectedUsage.java140 public int getItemPosition(Object object) { argument
141 final Item item = (Item) object;
162 public boolean isViewFromObject(View view, Object object) { argument
163 final Item item = (Item) object;
173 public void destroyItem(ViewGroup container, int position, Object object) { argument
174 final Item item = (Item) object;
H A DTabLayoutUsage.java159 public int getItemPosition(Object object) { argument
160 final Item item = (Item) object;
181 public boolean isViewFromObject(View view, Object object) { argument
182 final Item item = (Item) object;
192 public void destroyItem(ViewGroup container, int position, Object object) { argument
193 final Item item = (Item) object;
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DTabLayoutPreselectedUsage.java140 public int getItemPosition(Object object) { argument
141 final Item item = (Item) object;
162 public boolean isViewFromObject(View view, Object object) { argument
163 final Item item = (Item) object;
173 public void destroyItem(ViewGroup container, int position, Object object) { argument
174 final Item item = (Item) object;
H A DTabLayoutUsage.java159 public int getItemPosition(Object object) { argument
160 final Item item = (Item) object;
181 public boolean isViewFromObject(View view, Object object) { argument
182 final Item item = (Item) object;
192 public void destroyItem(ViewGroup container, int position, Object object) { argument
193 final Item item = (Item) object;
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java120 public void destroyItem(ViewGroup container, int position, Object object) { argument
124 if (DEBUG) Log.v(TAG, "Detaching item #" + getItemId(position) + ": f=" + object
125 + " v=" + ((Fragment)object).getView());
126 mCurTransaction.detach((Fragment)object);
131 public void setPrimaryItem(ViewGroup container, int position, Object object) { argument
132 Fragment fragment = (Fragment)object;
156 public boolean isViewFromObject(View view, Object object) { argument
157 return ((Fragment)object).getView() == view;
/frameworks/support/wear/src/android/support/wear/internal/widget/drawer/
H A DMultiPageUi.java154 public void destroyItem(ViewGroup container, int position, Object object) { argument
155 container.removeView((View) object);
164 public int getItemPosition(Object object) { argument
169 public boolean isViewFromObject(View view, Object object) { argument
170 return view == object;
/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/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/util/
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...]
/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 1297 milliseconds

123456