Searched defs:attribute (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp25 EGLint attribute; member in struct:Attribute
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp73 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1390
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/base/core/java/android/util/
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.
67 * Returns the name of the specified attribute.
69 * @param index Index of the desired attribute, 0...count-1.
71 * @return A String containing the name of the attribute, or null if the
72 * attribute cannot be found.
77 * Returns the value of the specified attribute as a string representation.
79 * @param index Index of the desired attribute, 0...count-1.
81 * @return A String containing the value of the attribute, o
135 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
147 getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) argument
165 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
177 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
191 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
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...]
/frameworks/base/tools/layoutlib/bridge/src/android/util/
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
83 public int getAttributeListValue(String namespace, String attribute, argument
85 String value = getAttributeValue(namespace, attribute);
100 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
102 String value = getAttributeValue(namespace, attribute);
117 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
118 String value = getAttributeValue(namespace, attribute);
124 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
141 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
158 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/rs/driver/
H A DrsdGL.cpp89 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1490
127 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/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/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java109 String getStringFromXml(XmlPullParser parser, String attribute, String defaultValue) { argument
110 String value = parser.getAttributeValue(null, attribute);
112 String msg = "Missing element under " + TAG +": " + attribute + " at " +
121 int getIntFromXml(XmlPullParser parser, String attribute, int defaultValue) { argument
122 String stringValue = getStringFromXml(parser, attribute, null);
130 serializer.attribute(null, ATTR_TARGET_USER_ID, Integer.toString(mTargetUserId));
131 serializer.attribute(null, ATTR_FLAGS, Integer.toString(mFlags));
132 serializer.attribute(null, ATTR_OWNER_USER_ID, Integer.toString(mOwnerUserId));
133 serializer.attribute(null, ATTR_OWNER_PACKAGE, mOwnerPackage);
/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
79 public int getAttributeListValue(String namespace, String attribute, argument
85 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
91 public int getAttributeResourceValue(String namespace, String attribute, argument
97 public int getAttributeIntValue(String namespace, String attribute, argument
103 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
109 public float getAttributeFloatValue(String namespace, String attribute, argument
H A DBridgeIInputMethodManager.java187 EditorInfo attribute, int controlFlags) throws RemoteException {
229 int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute,
186 startInput(IInputMethodClient client, IInputContext inputContext, EditorInfo attribute, int controlFlags) argument
228 windowGainedFocus(IInputMethodClient client, IBinder windowToken, int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute, IInputContext inputContext) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DResourceHelper.java355 * Returns the raw value from the given attribute float-type value string.
358 public static TypedValue getValue(String attribute, String value, boolean requireUnit) { argument
359 if (parseFloatAttribute(attribute, value, mValue, requireUnit)) {
367 * Parse a float attribute and return the parsed value into a given TypedValue.
368 * @param attribute the name of the attribute. Can be null if <var>requireUnit</var> is false.
369 * @param value the string value of the attribute
374 public static boolean parseFloatAttribute(String attribute, @NonNull String value, argument
376 assert !requireUnit || attribute != null;
437 "Dimension \"%1$s\" in attribute \"
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h28 * attribute() - the attribute options
81 const AttributeOption& attribute() const { return m_Attribute; } function in class:mcld::LinkerConfig
82 AttributeOption& attribute() { return m_Attribute; } function in class:mcld::LinkerConfig
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java378 private static String subtag(String full, String attribute) { argument
379 int start = full.indexOf(attribute);
384 start += attribute.length();
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java261 public void startInput(IInputContext inputContext, EditorInfo attribute) { argument
263 inputContext, attribute));
267 public void restartInput(IInputContext inputContext, EditorInfo attribute) { argument
269 inputContext, attribute));
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java166 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, method in class:FastXmlSerializer
/frameworks/compile/mclinker/include/mcld/MC/
H A DInput.h88 const Attribute* attribute() const function in class:mcld::Input
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp66 static const char gVertexShader[] = "attribute vec4 vPosition;\n"
181 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1383
219 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/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/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp100 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1386
138 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.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/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp176 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1388
214 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/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/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/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java32 public native boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value); argument
33 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); argument
37 public native boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); argument
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp66 static const char gVertexShader[] = "attribute vec4 vPosition;\n"
151 "attribute vec4 position;\n"
152 "attribute vec2 texCoords;\n"
285 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1384
323 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);

Completed in 1433 milliseconds

12