HomeSort by relevance Sort by last modified time
    Searched refs:numConfigs (Results 1 - 25 of 67) sorted by null

1 2 3

  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java 74 int[] numConfigs = new int[1];
90 if (egl.eglChooseConfig(display, attributeList, null, 0, numConfigs)) {
91 EGLConfig[] configs = new EGLConfig[numConfigs[0]];
93 numConfigs)) {
94 int[] configIds = new int[numConfigs[0]];
95 for (int i = 0; i < numConfigs[0]; i++) {
OpenGlEsVersionTest.java 105 int[] numConfigs = new int[1];
111 if (egl.eglGetConfigs(display, null, 0, numConfigs)) {
112 EGLConfig[] configs = new EGLConfig[numConfigs[0]];
113 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
116 for (int i = 0; i < numConfigs[0]; i++) {
130 + "(" + i + "/" + numConfigs[0] + "): "
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 58 EGLint numConfigs;
67 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
70 ASSERT_GE(numConfigs, 1);
90 EGLint numConfigs;
101 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
125 EGLint numConfigs;
138 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
141 ASSERT_GE(numConfigs, 1);
  /frameworks/native/opengl/tests/include/
EGLUtils.h 82 EGLint numConfigs = -1, n=0;
91 if (eglGetConfigs(dpy, NULL, 0, &numConfigs) == EGL_FALSE)
94 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs);
95 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 430 int numConfigs = nfaConfigurations.size();
431 for (int i = 0; i < numConfigs; i++) {
456 int numConfigs = nfaConfigurations.size();
457 for (int i = 0; i < numConfigs; i++) {
483 int numConfigs = nfaConfigurations.size();
484 for (int i = 0; i < numConfigs; i++) {
534 int numConfigs = nfaConfigurations.size();
535 if ( numConfigs <=1 ) {
543 for (int i = 0; i < numConfigs; i++) {
645 int numConfigs = nfaConfigurations.size()
    [all...]
NFAToDFAConverter.java 467 int numConfigs = configs.size();
468 for (int i = 0; i < numConfigs; i++) {
    [all...]