Searched defs:attribute (Results 1 - 5 of 5) sorted by last modified time

/development/tools/emulator/opengl/system/egl/
H A Degl.cpp594 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
599 if (s_display.getConfigAttrib(config, attribute, value))
716 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value) argument
723 switch (attribute) {
749 ALOGE("eglQuerySurface %x EGL_BAD_ATTRIBUTE", attribute);
790 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) argument
1039 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
1047 switch (attribute) {
1064 ALOGE("eglQueryContext %x EGL_BAD_ATTRIBUTE", attribute);
1235 EGLint attribute, EGLin
1234 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value) argument
[all...]
/development/tools/emulator/opengl/tests/gles_android_wrapper/
H A Degl.cpp310 // scan the attribute list for ES2 request and replace with ES1.
349 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
351 if (s_needEncode && attribute == EGL_RENDERABLE_TYPE) {
355 return getDispatch()->eglGetConfigAttrib(dpy, config, attribute, value);
407 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) argument
409 EGLBoolean res = getDispatch()->eglQuerySurface(dpy, surface, attribute, value);
410 if (res && attribute == EGL_RENDERABLE_TYPE) {
441 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) argument
443 return getDispatch()->eglSurfaceAttrib(dpy, surface, attribute, value);
570 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLin argument
655 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value) argument
[all...]
/development/ndk/platforms/android-3/include/linux/
H A Dsysfs.h20 struct attribute { struct
28 struct attribute ** attrs;
42 struct attribute attr;
52 ssize_t (*show)(struct kobject *, struct attribute *,char *);
53 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
/development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
H A DGL2JNIView.java59 * specification to eglChooseConfig() that has the attribute
213 EGLConfig config, int attribute, int defaultValue) {
215 if (egl.eglGetConfigAttrib(display, config, attribute, mValue)) {
305 int attribute = attributes[i];
307 if ( egl.eglGetConfigAttrib(display, config, attribute, value)) {
212 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
H A DSoftKeyboard.java137 @Override public void onStartInput(EditorInfo attribute, boolean restarting) { argument
138 super.onStartInput(attribute, restarting);
156 switch (attribute.inputType & InputType.TYPE_MASK_CLASS) {
180 int variation = attribute.inputType & InputType.TYPE_MASK_VARIATION;
196 if ((attribute.inputType & InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE) != 0) {
209 updateShiftKeyState(attribute);
216 updateShiftKeyState(attribute);
221 mCurKeyboard.setImeOptions(getResources(), attribute.imeOptions);
247 @Override public void onStartInputView(EditorInfo attribute, boolean restarting) { argument
248 super.onStartInputView(attribute, restartin
[all...]

Completed in 281 milliseconds