Searched refs:attribute (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java57 public int getAttributeListValue(String namespace, String attribute, argument
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute, argument
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute, argument
78 getAttributeValue(namespace, attribute), defaultValue);
81 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
84 getAttributeValue(namespace, attribute), defaultValu
87 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DAttributeSet.java26 * the Resources API will convert resource references (attribute values such as
32 * application of themes and styles when retrieving attribute values.
56 * identifier associated with a particular XML attribute name.
66 * Return the resource ID associated with the given attribute name. This
67 * will be the identifier for an attribute resource, which can be used by
69 * attribute.
72 * in that it returns a resource identifier for the attribute name; the
73 * other method returns this attribute's value as a resource identifier.
75 * @param index Index of the desired attribute, 0...count-1.
82 * Return the index of the value of 'attribute' i
91 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
102 getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) argument
119 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
130 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
143 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
154 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java26 * An implementation of the {@link AttributeSet} interface on top of a map of attribute in the form
72 public int getAttributeListValue(String namespace, String attribute, argument
77 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
82 public int getAttributeResourceValue(String namespace, String attribute, argument
87 public int getAttributeIntValue(String namespace, String attribute, argument
92 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
97 public float getAttributeFloatValue(String namespace, String attribute, argument
H A DBridgeXmlBlockParser.java320 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
322 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
329 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
330 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
337 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
338 return mAttrib.getAttributeIntValue(namespace, attribute, defaultValue);
345 public int getAttributeListValue(String namespace, String attribute, argument
347 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
358 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
359 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValu
366 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
H A DBridgeXmlPullAttributes.java50 * the name of the attribute.
55 // get the attribute name.
58 // get the attribute namespace
70 // this is not an attribute in the android namespace, we query the customviewloader, if
98 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
99 String value = getAttributeValue(namespace, attribute);
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethod.aidl42 void startInput(in IInputContext inputContext, in EditorInfo attribute);
44 void restartInput(in IInputContext inputContext, in EditorInfo attribute);
H A DIInputMethodManager.aidl39 IInputContext inputContext, in EditorInfo attribute,
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java314 public int getAttributeListValue(String namespace, String attribute, argument
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
322 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
324 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
330 public int getAttributeResourceValue(String namespace, String attribute, argument
332 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
338 public int getAttributeIntValue(String namespace, String attribute, argument
340 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
346 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
349 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
355 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java143 * @param attribute The attribute of the text box (typically, a EditText)
148 public void restartInput(InputConnection inputConnection, EditorInfo attribute); argument
/frameworks/base/media/libstagefright/codecs/avc/dec/include/
H A Dpvavcdecoder.h40 int AVC_Malloc(int32 size, int attribute);
/frameworks/base/core/java/android/content/
H A DSyncAdaptersCache.java71 out.attribute(null, "authority", item.authority);
72 out.attribute(null, "accountType", item.accountType);
H A DSyncStorageEngine.java1658 out.attribute(null, "version", Integer.toString(ACCOUNTS_VERSION));
1659 out.attribute(null, "nextAuthorityId", Integer.toString(mNextAuthorityId));
1661 out.attribute(null, "listen-for-tickles", "false");
1668 out.attribute(null, "id", Integer.toString(authority.ident));
1669 out.attribute(null, "account", authority.account.name);
1670 out.attribute(null, "type", authority.account.type);
1671 out.attribute(null, "authority", authority.authority);
1672 out.attribute(null, "enabled", Boolean.toString(authority.enabled));
1674 out.attribute(null, "syncable", "unknown");
1676 out.attribute(nul
[all...]
H A DIntentFilter.java1148 serializer.attribute(null, NAME_STR, mActions.get(i));
1154 serializer.attribute(null, NAME_STR, mCategories.get(i));
1162 serializer.attribute(null, NAME_STR, type);
1168 serializer.attribute(null, NAME_STR, mDataSchemes.get(i));
1175 serializer.attribute(null, HOST_STR, ae.getHost());
1177 serializer.attribute(null, PORT_STR, Integer.toString(ae.getPort()));
1187 serializer.attribute(null, LITERAL_STR, pe.getPath());
1190 serializer.attribute(null, PREFIX_STR, pe.getPath());
1193 serializer.attribute(null, SGLOB_STR, pe.getPath());
/frameworks/base/opengl/tests/configdump/
H A Dconfigdump.cpp25 EGLint attribute; member in struct:Attribute
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java166 int attribute, int[] value) {
170 arg("attribute", attribute);
172 boolean result = mEgl10.eglGetConfigAttrib(display, config, attribute,
278 int attribute, int[] value) {
282 arg("attribute", attribute);
284 boolean result = mEgl10.eglQueryContext(display, context, attribute,
304 int attribute, int[] value) {
308 arg("attribute", attribut
165 eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value) argument
277 eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value) argument
303 eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value) argument
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java216 * @param name Name attribute to include with this list's tag, or null for
239 out.attribute(null, "name", name);
255 * @param name Name attribute to include with this list's tag, or null for
275 out.attribute(null, "name", name);
293 * @param name Name attribute to include with this array's tag, or null for
312 out.attribute(null, "name", name);
316 out.attribute(null, "num", Integer.toString(N));
337 * @param name Name attribute to include with this array's tag, or null for
357 out.attribute(null, "name", name);
361 out.attribute(nul
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java33 public native boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value); argument
34 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); argument
36 public native boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); argument
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java105 boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); argument
114 boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value); argument
116 boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); argument
/frameworks/base/opengl/include/EGL/
H A Deglext.h42 #define EGL_CONFORMANT_KHR 0x3042 /* EGLConfig attribute */
53 #define EGL_MATCH_FORMAT_KHR 0x3043 /* EGLConfig attribute */
58 #define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 /* eglLockSurfaceKHR attribute */
59 #define EGL_LOCK_USAGE_HINT_KHR 0x30C5 /* eglLockSurfaceKHR attribute */
60 #define EGL_BITMAP_POINTER_KHR 0x30C6 /* eglQuerySurface attribute */
61 #define EGL_BITMAP_PITCH_KHR 0x30C7 /* eglQuerySurface attribute */
62 #define EGL_BITMAP_ORIGIN_KHR 0x30C8 /* eglQuerySurface attribute */
63 #define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 /* eglQuerySurface attribute */
64 #define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA /* eglQuerySurface attribute */
65 #define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB /* eglQuerySurface attribute */
[all...]
H A Degl.h73 /* Out-of-band attribute value */
128 #define EGL_MATCH_NATIVE_PIXMAP 0x3041 /* Pseudo-attribute (not queryable) */
133 /* Config attribute values */
140 /* More config attribute values, for EGL_TEXTURE_FORMAT */
146 /* Config attribute mask bits */
263 EGLint attribute, EGLint *value);
275 EGLint attribute, EGLint *value);
289 EGLint attribute, EGLint value);
308 EGLint attribute, EGLint *value);
/frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
261 int attribute = attributes[i];
263 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java172 EGLConfig config, int attribute, int defaultValue) {
174 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
264 int attribute = attributes[i];
266 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
171 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java226 public void startInput(IInputContext inputContext, EditorInfo attribute) { argument
228 inputContext, attribute));
231 public void restartInput(IInputContext inputContext, EditorInfo attribute) { argument
233 inputContext, attribute));
/frameworks/base/media/libstagefright/codecs/avc/common/include/
H A Davcapi_common.h215 \param "attribute" "Some value specifying types, priority, etc. of the memory."
218 typedef int (*FunctionType_Malloc)(void *userData, int32 size, int attribute);
/frameworks/base/opengl/tests/angeles/include/GLES/
H A Degl.h144 ** Config attribute and value
204 GLAPI EGLBoolean APIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value);
210 GLAPI EGLBoolean APIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value);
218 GLAPI EGLBoolean APIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);

Completed in 1799 milliseconds

12