Home
last modified time | relevance | path

Searched refs:numConfigs (Results 1 – 23 of 23) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DDFAState.java430 int numConfigs = nfaConfigurations.size(); in getUniquelyPredictedAlt() local
431 for (int i = 0; i < numConfigs; i++) { in getUniquelyPredictedAlt()
456 int numConfigs = nfaConfigurations.size(); in getUniqueAlt() local
457 for (int i = 0; i < numConfigs; i++) { in getUniqueAlt()
483 int numConfigs = nfaConfigurations.size(); in getDisabledAlternatives() local
484 for (int i = 0; i < numConfigs; i++) { in getDisabledAlternatives()
534 int numConfigs = nfaConfigurations.size(); in getConflictingAlts() local
535 if ( numConfigs <=1 ) { in getConflictingAlts()
543 for (int i = 0; i < numConfigs; i++) { in getConflictingAlts()
645 int numConfigs = nfaConfigurations.size(); in getAltSet() local
[all …]
DNFAToDFAConverter.java467 int numConfigs = configs.size(); in closure() local
468 for (int i = 0; i < numConfigs; i++) { in closure()
857 int numConfigs = configs.size(); in reach() local
858 for (int i = 0; i < numConfigs; i++) { in reach()
917 int numConfigs = d.nfaConfigurations.size(); in convertToEOTAcceptState() local
918 for (int i = 0; i < numConfigs; i++) { in convertToEOTAcceptState()
1300 int numConfigs = d.nfaConfigurations.size(); in turnOffOtherAlts() local
1301 for (int i = 0; i < numConfigs; i++) { in turnOffOtherAlts()
1417 int numConfigs = d.nfaConfigurations.size(); in tryToResolveWithSemanticPredicates() local
1418 …for (int i = 0; i < numConfigs; i++) { // TODO: I don't think we need to do this; altToPredMap has… in tryToResolveWithSemanticPredicates()
[all …]
/external/skia/platform_tools/android/apps/sample_app/src/main/java/com/skia/
DSkiaSampleView.java198 int numConfigs = 0; in chooseConfig() local
208 for (int i = initialAPI; i < validAPIs.length && numConfigs == 0; i++) { in chooseConfig()
245 numConfigs = value[0]; in chooseConfig()
248 if (numConfigs <= 0) { in chooseConfig()
272 numConfigs = value[0]; in chooseConfig()
276 if (numConfigs <= 0) { in chooseConfig()
281 EGLConfig[] configs = new EGLConfig[numConfigs]; in chooseConfig()
282 if (!egl.eglChooseConfig(display, configSpec, configs, numConfigs, value)) { in chooseConfig()
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViEAndroidGLES20.java140 int numConfigs = num_config[0]; in chooseConfig() local
142 if (numConfigs <= 0) { in chooseConfig()
147 EGLConfig[] configs = new EGLConfig[numConfigs]; in chooseConfig()
148 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config); in chooseConfig()
196 int numConfigs = configs.length; in printConfigs() local
197 Logging.w(TAG, String.format("%d configurations", numConfigs)); in printConfigs()
198 for (int i = 0; i < numConfigs; i++) { in printConfigs()
/external/skia/platform_tools/android/apps/visualbench/src/main/jni/
DSkOSWindow_AndroidNative.cpp86 EGLint numConfigs; in attach() local
94 if (!eglChooseConfig(display, configAttribs, &config, 1, &numConfigs) || in attach()
95 numConfigs != 1) { in attach()
/external/deqp/framework/egl/
DegluUtil.cpp115 EGLint numConfigs = 0; in chooseConfigs() local
117 EGLU_CHECK_CALL(egl, chooseConfig(display, attribList, DE_NULL, 0, &numConfigs)); in chooseConfigs()
120 vector<EGLConfig> configs(numConfigs); in chooseConfigs()
122 if (numConfigs > 0) in chooseConfigs()
123 …EGLU_CHECK_CALL(egl, chooseConfig(display, attribList, &configs.front(), numConfigs, &numConfigs)); in chooseConfigs()
/external/skia/src/gpu/gl/egl/
DSkCreatePlatformGLContext_egl.cpp122 EGLint numConfigs = 0; in EGLGLContext() local
134 if (!eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs)) { in EGLGLContext()
139 if (0 == numConfigs) { in EGLGLContext()
/external/skia/src/gpu/gl/command_buffer/
DSkCommandBufferGLContext.cpp217 EGLint numConfigs; in initializeGLContext() local
219 &numConfigs) || numConfigs < 1) { in initializeGLContext()
/external/skia/src/views/win/
DSkOSWindow_win.cpp435 EGLint numConfigs; in create_ANGLE() local
436 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) { in create_ANGLE()
455 if (eglChooseConfig(display, msaaConfigAttribList, eglConfig, 1, &numConfigs)) { in create_ANGLE()
456 SkASSERT(numConfigs > 0); in create_ANGLE()
461 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) { in create_ANGLE()
/external/deqp/modules/egl/
DteglChooseConfigTests.cpp183 EGLint numConfigs = 0; in executeTest() local
184 EGLU_CHECK_CALL(egl, chooseConfig(m_display, &attribList[0], DE_NULL, 0, &numConfigs)); in executeTest()
185 resultConfigs.resize(numConfigs); in executeTest()
187 if (numConfigs > 0) in executeTest()
188 …seConfig(m_display, &attribList[0], &resultConfigs[0], (EGLint)resultConfigs.size(), &numConfigs)); in executeTest()
DteglNegativeApiTests.cpp249 EGLint numConfigs; in init()
253 …eConfig(EGL_NO_DISPLAY, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs)); in init()
256 …eConfig((EGLDisplay)-1, s_emptyAttribList, &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs)); in init()
265 …ay, s_invalidChooseConfigAttribLists[ndx], &configs[0], DE_LENGTH_OF_ARRAY(configs), &numConfigs)); in init()
/external/skia/src/gpu/gl/angle/
DSkANGLEGLContext.cpp72 EGLint numConfigs; in SkANGLEGLContext() local
95 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs); in SkANGLEGLContext()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DEglBase14.java233 int[] numConfigs = new int[1]; in getEglConfig() local
235 eglDisplay, configAttributes, 0, configs, 0, configs.length, numConfigs, 0)) { in getEglConfig()
DEglBase10.java278 int[] numConfigs = new int[1]; in getEglConfig() local
280 eglDisplay, configAttributes, configs, configs.length, numConfigs)) { in getEglConfig()
/external/webrtc/webrtc/modules/audio_processing/test/android/apmtest/jni/
Dmain.c79 EGLint numConfigs; in engine_init_display() local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs); in engine_init_display()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java780 int numConfigs = num_config[0]; in chooseConfig() local
782 if (numConfigs <= 0) { in chooseConfig()
787 EGLConfig[] configs = new EGLConfig[numConfigs]; in chooseConfig()
788 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs, in chooseConfig()
/external/antlr/antlr-3.4/lib/
Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/ ...
/external/robolectric/v3/runtime/
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...