Searched refs:object (Results 126 - 150 of 153) sorted by relevance

1234567

/frameworks/native/opengl/libs/EGL/
H A Degl_object.h59 static bool get(egl_display_t const* display, egl_object_t* object);
/frameworks/wilhelm/tests/sandbox/
H A DAndroid.mk88 # object
99 object.c
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp100 desc[0] = *(effect_descriptor_t*)(sube[0])->object;
101 desc[1] = *(effect_descriptor_t*)(sube[1])->object;
/frameworks/base/tools/aidl/
H A DAST.h85 Expression* object; member in struct:FieldVariable
89 FieldVariable(Expression* object, const string& name);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DCodeGenUtil.kt20 companion object {
H A DKCode.kt28 companion object {
/frameworks/rs/api/
H A Drs_object_info.spec21 or Sampler object. These objects are created from Java. You can't create them from a
47 boolean. It can also specify a handle to a RenderScript object. See @rs_data_type for
130 summary: Get the object that describes the cell of an Allocation
132 Get the Element object describing the type, kind, and other characteristics of a cell
141 summary: Release an object
144 object. If this was the last handle to that object, resource recovery may happen.
159 points to an actual valid object; it only checks for null.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemBridgeAdapter.java109 * Get currently bound object.
116 * Get extra object associated with the view. Developer can attach
117 * any customized UI object in addition to {@link Presenter.ViewHolder}.
118 * A typical use case is attaching an animator object.
125 * Set extra object associated with the view. Developer can attach
126 * any customized UI object in addition to {@link Presenter.ViewHolder}.
127 * A typical use case is attaching an animator object.
129 public void setExtraObject(Object object) { argument
130 mExtraObject = object;
/frameworks/base/core/java/android/view/
H A DView.java598 * classes change actual properties of the View object, such as {@link #setAlpha(float) alpha} and
606 * You can attach an {@link Animation} object to a view using
5429 * Register a drag event listener callback object for this View. The parameter is
6011 * {@link AccessibilityNodeInfo#recycle()} to minimize object creation.
6147 * Return the class name of this object to be used for accessibility purposes.
7080 * insets object is propagated down the hierarchy, so any changes made to it will
9822 * @param event The KeyEvent object that defines the button action.
9866 * @param event The KeyEvent object that defines the button action.
9897 * @param event The KeyEvent object that defines the button action.
9950 * object correctl
[all...]
H A DViewDebug.java1117 final Object object) throws IllegalAccessException, InvocationTargetException,
1119 if (!(object instanceof View)) {
1120 return method.invoke(object, (Object[]) null);
1123 final View view = (View) object;
1606 * method invocation is complete. Returns an object equal to the result of the method
1116 callMethodOnAppropriateTheadBlocking(final Method method, final Object object) argument
/frameworks/base/core/tests/coretests/src/android/os/
H A DPerformanceCollectorTest.java484 private Object readPrivateField(String fieldName, Object object) throws Exception { argument
485 Field f = object.getClass().getDeclaredField(fieldName);
487 return f.get(object);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java116 Object object; field in class:ViewPager.ItemInfo
418 mAdapter.destroyItem(this, ii.position, ii.object);
870 ii.object = mAdapter.instantiateItem(this, position);
892 final int newPos = mAdapter.getItemPosition(ii.object);
907 mAdapter.destroyItem(this, ii.position, ii.object);
1040 mAdapter.destroyItem(this, pos, ii.object);
1043 " view: " + ((View) ii.object));
1074 mAdapter.destroyItem(this, pos, ii.object);
1077 " view: " + ((View) ii.object));
1104 mAdapter.setPrimaryItem(this, mCurItem, curItem != null ? curItem.object
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java112 Object object; field in class:ViewPager.ItemInfo
420 mAdapter.destroyItem(this, ii.position, ii.object);
833 ii.object = mAdapter.instantiateItem(this, position);
855 final int newPos = mAdapter.getItemPosition(ii.object);
870 mAdapter.destroyItem(this, ii.position, ii.object);
1003 mAdapter.destroyItem(this, pos, ii.object);
1006 " view: " + ii.object);
1037 mAdapter.destroyItem(this, pos, ii.object);
1040 " view: " + ii.object);
1067 mAdapter.setPrimaryItem(this, mCurItem, curItem != null ? curItem.object
[all...]
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java1508 public void setValue(Drawable object, int value) {
1509 object.setAlpha(value);
1513 public Integer get(Drawable object) {
1514 return object.getAlpha();
H A DSwitch.java1434 public Float get(Switch object) {
1435 return object.mThumbPosition;
1439 public void setValue(Switch object, float value) {
1440 object.setThumbPosition(value);
/frameworks/base/tools/layoutlib/rename_font/
H A Dbuild_font.py43 class FontInfo(object):
/frameworks/native/opengl/libs/GLES_trace/tools/
H A Dgenapi.py261 class ApiCall(object):
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2621 * <strong>Note:</strong> You must not touch the object after calling this function.
2634 * is recycled. You must not touch the object after calling this function.
3075 public boolean equals(Object object) { argument
3076 if (this == object) {
3079 if (object == null) {
3082 if (getClass() != object.getClass()) {
3085 AccessibilityNodeInfo other = (AccessibilityNodeInfo) object;
/frameworks/base/core/java/android/text/format/
H A DDateFormat.java251 * Returns a {@link java.text.DateFormat} object that can format the time according
254 * @return the {@link java.text.DateFormat} object that properly formats the time.
283 * Returns a {@link java.text.DateFormat} object that can format the date
287 * @return the {@link java.text.DateFormat} object that properly formats the date.
294 * Returns a {@link java.text.DateFormat} object that can format the date
297 * @return the {@link java.text.DateFormat} object that formats the date in long form.
304 * Returns a {@link java.text.DateFormat} object that can format the date
307 * @return the {@link java.text.DateFormat} object that formats the date in long form.
347 * Given a format string and a {@link java.util.Date} object, returns a CharSequence containing
432 * Given a format string and a {@link java.util.Calendar} object, return
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java312 * Transportation object for returning WebView across thread boundaries.
318 * Sets the WebView to the transportation object.
327 * Gets the WebView object.
329 * @return the transported WebView object
497 * Constructs a new WebView with a Context object.
499 * @param context a Context object used to access application assets
508 * @param context a Context object used to access application assets
518 * @param context a Context object used to access application assets
531 * @param context a Context object used to access application assets
548 * @param context a Context object use
1825 addJavascriptInterface(Object object, String name) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java474 * same target object.
481 * Returns whether the object associated with the given filter is
653 Object object) {
661 if (array[idx] == object) {
652 remove_all_objects(ArrayMap<String, F[]> map, String name, Object object) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jar ... arg Object arg2 private void notifyFirst64 (java.lang.Object, int, java.lang.Object) Object sender int arg
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java270 * @param what the object to be spanned over the appended text.
421 // Add span only if this object is not yet used as a span in this string
465 Object object = mSpans[i];
487 sendSpanRemoved(object, start, end);
653 * Mark the specified range of text with the specified object.
764 * Remove the specified markup object from the buffer.
783 * markup object, or -1 if it is not attached to this buffer.
793 * markup object, or -1 if it is not attached to this buffer.
803 * markup object, or 0 if it is not attached to this buffer.
1010 * Returns the depth of TextWatcher callbacks. Returns 0 when the object i
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java2234 * @param object The info to wrap.
2235 * @return A wrapper for if the object is not null, null otherwise.
2237 static AccessibilityNodeInfoCompat wrapNonNullInstance(Object object) { argument
2238 if (object != null) {
2239 return new AccessibilityNodeInfoCompat(object);
3104 * <strong>Note:</strong> You must not touch the object after calling this function.
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h732 typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label);
733 typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);
735 GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label);
736 GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label);

Completed in 2365 milliseconds

1234567