Lines Matching refs:expectFalse
136 expectFalse(eglBindAPI(0)); in init()
139 expectFalse(eglBindAPI(0xfdfdfdfd)); in init()
142 expectFalse(eglBindAPI((EGLenum)0xffffffff)); in init()
153 expectFalse(eglBindAPI(s_renderAPIs[ndx])); in init()
168 expectFalse(eglBindTexImage(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
171 expectFalse(eglBindTexImage((EGLDisplay)-1, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
178 expectFalse(eglBindTexImage(display, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
181 expectFalse(eglBindTexImage(display, (EGLSurface)-1, EGL_BACK_BUFFER)); in init()
205 expectFalse(eglCopyBuffers(EGL_NO_DISPLAY, EGL_NO_SURFACE, pixmap->getLegacyNative())); in init()
208 expectFalse(eglCopyBuffers((EGLDisplay)-1, EGL_NO_SURFACE, pixmap->getLegacyNative())); in init()
217 expectFalse(eglCopyBuffers(display, EGL_NO_SURFACE, pixmap->getLegacyNative())); in init()
220 expectFalse(eglCopyBuffers(display, (EGLSurface)-1, pixmap->getLegacyNative())); in init()
253 …expectFalse(eglChooseConfig(EGL_NO_DISPLAY, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(con… in init()
256 …expectFalse(eglChooseConfig((EGLDisplay)-1, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(con… in init()
265 …expectFalse(eglChooseConfig(display, s_invalidChooseConfigAttribLists[ndx], &configs[0], DE_LENGTH… in init()
273 …expectFalse(eglChooseConfig(display, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), … in init()
697 expectFalse(eglDestroyContext(EGL_NO_DISPLAY, DE_NULL)); in init()
700 expectFalse(eglDestroyContext((EGLDisplay)-1, DE_NULL)); in init()
707 expectFalse(eglDestroyContext(display, DE_NULL)); in init()
710 expectFalse(eglDestroyContext(display, (EGLContext)-1)); in init()
723 expectFalse(eglDestroySurface(EGL_NO_DISPLAY, DE_NULL)); in init()
726 expectFalse(eglDestroySurface((EGLDisplay)-1, DE_NULL)); in init()
733 expectFalse(eglDestroySurface(display, DE_NULL)); in init()
736 expectFalse(eglDestroySurface(display, (EGLSurface)-1)); in init()
750 expectFalse(eglGetConfigAttrib(EGL_NO_DISPLAY, DE_NULL, EGL_RED_SIZE, &value)); in init()
753 expectFalse(eglGetConfigAttrib((EGLDisplay)-1, DE_NULL, EGL_RED_SIZE, &value)); in init()
760 expectFalse(eglGetConfigAttrib(display, (EGLConfig)-1, EGL_RED_SIZE, &value)); in init()
773 expectFalse(eglGetConfigAttrib(display, config, 0, &value)); in init()
776 expectFalse(eglGetConfigAttrib(display, config, -1, &value)); in init()
792 expectFalse(eglGetConfigs(EGL_NO_DISPLAY, &cfgs[0], DE_LENGTH_OF_ARRAY(cfgs), &numCfgs)); in init()
795 expectFalse(eglGetConfigs((EGLDisplay)-1, &cfgs[0], DE_LENGTH_OF_ARRAY(cfgs), &numCfgs)); in init()
802 expectFalse(eglGetConfigs(display, &cfgs[0], DE_LENGTH_OF_ARRAY(cfgs), DE_NULL)); in init()
816 expectFalse(eglInitialize(EGL_NO_DISPLAY, &major, &minor)); in init()
819 expectFalse(eglInitialize((EGLDisplay)-1, &major, &minor)); in init()
832 expectFalse(eglMakeCurrent(EGL_NO_DISPLAY, DE_NULL, DE_NULL, DE_NULL)); in init()
835 expectFalse(eglMakeCurrent((EGLDisplay)-1, DE_NULL, DE_NULL, DE_NULL)); in init()
866 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, (EGLSurface)-1, context)); in init()
869 expectFalse(eglMakeCurrent(display, surface, (EGLSurface)-1, context)); in init()
872 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, surface, context)); in init()
882 expectFalse(eglMakeCurrent(display, surface, surface, (EGLContext)-1)); in init()
892 expectFalse(eglMakeCurrent(display, surface, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in init()
895 expectFalse(eglMakeCurrent(display, EGL_NO_SURFACE, surface, EGL_NO_CONTEXT)); in init()
898 expectFalse(eglMakeCurrent(display, surface, surface, EGL_NO_CONTEXT)); in init()
987 expectFalse(eglQueryContext(EGL_NO_DISPLAY, DE_NULL, EGL_CONFIG_ID, &value)); in init()
990 expectFalse(eglQueryContext((EGLDisplay)-1, DE_NULL, EGL_CONFIG_ID, &value)); in init()
997 expectFalse(eglQueryContext(display, DE_NULL, EGL_CONFIG_ID, &value)); in init()
1000 expectFalse(eglQueryContext(display, DE_NULL, EGL_CONFIG_ID, &value)); in init()
1023 expectFalse(eglQueryContext(display, context, 0, &value)); in init()
1025 expectFalse(eglQueryContext(display, context, -1, &value)); in init()
1027 expectFalse(eglQueryContext(display, context, EGL_RED_SIZE, &value)); in init()
1073 expectFalse(eglQuerySurface(EGL_NO_DISPLAY, DE_NULL, EGL_CONFIG_ID, &value)); in init()
1076 expectFalse(eglQuerySurface((EGLDisplay)-1, DE_NULL, EGL_CONFIG_ID, &value)); in init()
1083 expectFalse(eglQuerySurface(display, DE_NULL, EGL_CONFIG_ID, &value)); in init()
1086 expectFalse(eglQuerySurface(display, (EGLSurface)-1, EGL_CONFIG_ID, &value)); in init()
1108 expectFalse(eglQuerySurface(display, surface, 0, &value)); in init()
1111 expectFalse(eglQuerySurface(display, surface, -1, &value)); in init()
1131 expectFalse(eglReleaseTexImage(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
1134 expectFalse(eglReleaseTexImage((EGLDisplay)-1, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
1141 expectFalse(eglReleaseTexImage(display, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
1144 expectFalse(eglReleaseTexImage(display, (EGLSurface)-1, EGL_BACK_BUFFER)); in init()
1157 expectFalse(eglSurfaceAttrib(EGL_NO_DISPLAY, DE_NULL, EGL_SWAP_BEHAVIOR, EGL_BUFFER_DESTROYED)); in init()
1160 expectFalse(eglSurfaceAttrib((EGLDisplay)-1, DE_NULL, EGL_SWAP_BEHAVIOR, EGL_BUFFER_DESTROYED)); in init()
1167 expectFalse(eglSurfaceAttrib(display, DE_NULL, EGL_SWAP_BEHAVIOR, EGL_BUFFER_DESTROYED)); in init()
1170 expectFalse(eglSurfaceAttrib(display, (EGLSurface)-1, EGL_SWAP_BEHAVIOR, EGL_BUFFER_DESTROYED)); in init()
1193 expectFalse(eglSurfaceAttrib(display, surface, 0, 0)); in init()
1196 expectFalse(eglSurfaceAttrib(display, surface, -1, 0)); in init()
1227 …expectFalse(eglSurfaceAttrib(display, surface, EGL_MULTISAMPLE_RESOLVE, EGL_MULTISAMPLE_RESOLVE_BO… in init()
1258 expectFalse(eglSurfaceAttrib(display, surface, EGL_SWAP_BEHAVIOR, EGL_BUFFER_PRESERVED)); in init()
1279 expectFalse(eglSwapBuffers(EGL_NO_DISPLAY, DE_NULL)); in init()
1282 expectFalse(eglSwapBuffers((EGLDisplay)-1, DE_NULL)); in init()
1289 expectFalse(eglSwapBuffers(display, DE_NULL)); in init()
1292 expectFalse(eglSwapBuffers(display, (EGLSurface)-1)); in init()
1305 expectFalse(eglSwapInterval(EGL_NO_DISPLAY, 0)); in init()
1308 expectFalse(eglSwapInterval((EGLDisplay)-1, 0)); in init()
1315 expectFalse(eglSwapInterval(display, 0)); in init()
1327 expectFalse(eglTerminate(EGL_NO_DISPLAY)); in init()
1330 expectFalse(eglTerminate((EGLDisplay)-1)); in init()