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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeXmlPullAttributes.java46 * the name of the attribute.
51 // get the attribute name.
54 // get the attribute namespace
66 // this is not an attribute in the android namespace, we query the customviewloader, if
95 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
96 String value = getAttributeValue(namespace, attribute);
H A DBridgeXmlBlockParser.java313 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
315 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
322 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
323 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
330 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
331 return mAttrib.getAttributeIntValue(namespace, attribute, defaultValue);
338 public int getAttributeListValue(String namespace, String attribute, argument
340 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
351 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
352 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValu
359 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
/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.
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...]
H A DXmlPullAttributes.java56 public int getAttributeListValue(String namespace, String attribute, argument
59 getAttributeValue(namespace, attribute), options, defaultValue);
62 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
65 getAttributeValue(namespace, attribute), defaultValue);
68 public int getAttributeResourceValue(String namespace, String attribute, argument
71 getAttributeValue(namespace, attribute), defaultValue);
74 public int getAttributeIntValue(String namespace, String attribute, argument
77 getAttributeValue(namespace, attribute), defaultValue);
80 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
83 getAttributeValue(namespace, attribute), defaultValu
86 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java138 * @param attribute The attribute of the text box (typically, a EditText)
143 public void restartInput(InputConnection inputConnection, EditorInfo attribute); argument
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java292 private static String subtag(String full, String attribute) { argument
293 int start = full.indexOf(attribute);
298 start += attribute.length();
H A DXmlBlock.java313 public int getAttributeListValue(String namespace, String attribute, argument
315 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
321 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
323 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
329 public int getAttributeResourceValue(String namespace, String attribute, argument
331 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
337 public int getAttributeIntValue(String namespace, String attribute, argument
339 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
345 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
348 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
354 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java194 public void startInput(IInputContext inputContext, EditorInfo attribute) { argument
196 inputContext, attribute));
199 public void restartInput(IInputContext inputContext, EditorInfo attribute) { argument
201 inputContext, attribute));
H A DInputMethodService.java352 public void startInput(InputConnection ic, EditorInfo attribute) { argument
353 if (DEBUG) Log.v(TAG, "startInput(): editor=" + attribute);
354 doStartInput(ic, attribute, false);
357 public void restartInput(InputConnection ic, EditorInfo attribute) { argument
358 if (DEBUG) Log.v(TAG, "restartInput(): editor=" + attribute);
359 doStartInput(ic, attribute, true);
1396 * @param attribute The attributes of the editor that input is starting
1403 public void onStartInput(EditorInfo attribute, boolean restarting) { argument
1425 void doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) { argument
1431 mInputEditorInfo = attribute;
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastXmlSerializer.java152 public XmlSerializer attribute(String namespace, String name, String value) throws IOException, method in class:FastXmlSerializer
/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/android/opengl/
H A DEGLLogWrapper.java150 int attribute, int[] value) {
154 arg("attribute", attribute);
156 boolean result = mEgl10.eglGetConfigAttrib(display, config, attribute,
262 int attribute, int[] value) {
266 arg("attribute", attribute);
268 boolean result = mEgl10.eglQueryContext(display, context, attribute,
288 int attribute, int[] value) {
292 arg("attribute", attribut
149 eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value) argument
261 eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value) argument
287 eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value) argument
[all...]
H A DGLSurfaceView.java684 EGLConfig config, int attribute, int defaultValue) {
686 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
683 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp159 jobject context, jint attribute, jintArray value) {
171 success = eglQueryContext(dpy, ctx, attribute, base);
178 jobject surface, jint attribute, jintArray value) {
191 success = eglQuerySurface(dpy, sur, attribute, base);
347 jobject config, jint attribute, jintArray value) {
357 success = eglGetConfigAttrib(dpy, cnf, attribute, &localValue);
158 jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display, jobject context, jint attribute, jintArray value) argument
177 jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display, jobject surface, jint attribute, jintArray value) argument
346 jni_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject display, jobject config, jint attribute, jintArray 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/services/java/com/android/server/
H A DInputMethodManagerService.java642 IInputContext inputContext, EditorInfo attribute,
692 mCurAttribute = attribute;
760 IInputContext inputContext, EditorInfo attribute,
765 return startInputLocked(client, inputContext, attribute,
641 startInputLocked(IInputMethodClient client, IInputContext inputContext, EditorInfo attribute, boolean initial, boolean needResult) argument
759 startInput(IInputMethodClient client, IInputContext inputContext, EditorInfo attribute, boolean initial, boolean needResult) argument
/frameworks/base/opengl/libagl/
H A Degl.cpp544 // These configs can override the base attribute list
676 // look for the attribute in all of our configs
690 // attribute found, check if this config could match
703 // attribute not found. this should NEVER happen.
706 // error, this attribute doesn't exist
747 EGLint attribute, EGLint *value)
758 attribute);
767 attribute);
1102 // see if this attribute was specified, if not apply its
1146 EGLint attribute, EGLin
746 getConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
1145 eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
1193 eglQuerySurface( EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value) argument
1399 eglQueryContext( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
1487 eglSurfaceAttrib( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) argument
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp883 EGLint attribute, EGLint *value)
890 if (attribute == EGL_CONFIG_ID) {
897 dp->dpys[i], dp->configs[i][index], attribute, value);
986 EGLint attribute, EGLint *value)
994 dp->dpys[s->impl], s->surface, attribute, value);
1086 EGLint attribute, EGLint *value)
1095 dp->dpys[c->impl], c->context, attribute, value);
1286 EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
1294 dp->dpys[s->impl], s->surface, attribute, value);
882 eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
985 eglQuerySurface( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) argument
1085 eglQueryContext( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
1285 eglSurfaceAttrib( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) argument

Completed in 325 milliseconds