Home
last modified time | relevance | path

Searched refs:config1 (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLContextCompatibilityTest.cpp319 EGLConfig config1 = mConfigs[i]; in TEST_P() local
323 if (isMultisampledConfig(config1) || in TEST_P()
324 (IsAndroid() && (isRGB10_A2Config(config1) || isRGBA16FConfig(config1)))) in TEST_P()
330 eglGetConfigAttrib(mDisplay, config1, EGL_SURFACE_TYPE, &surfaceType); in TEST_P()
349 testWindowCompatibility(config1, config2, in TEST_P()
350 areConfigsCompatible(config1, config2, EGL_WINDOW_BIT)); in TEST_P()
363 EGLConfig config1 = mConfigs[i]; in TEST_P() local
367 if (isMultisampledConfig(config1) || (IsAndroid() && isRGB10_A2Config(config1))) in TEST_P()
373 eglGetConfigAttrib(mDisplay, config1, EGL_SURFACE_TYPE, &surfaceType); in TEST_P()
391 testPbufferCompatibility(config1, config2, in TEST_P()
[all …]
/third_party/node/deps/npm/node_modules/yargs/lib/
Dapply-extends.js19 function mergeDeep (config1, config2) { argument
22 Object.assign(target, config1)
25 target[key] = mergeDeep(config1[key], config2[key])
/third_party/typescript/src/testRunner/unittests/tsserver/
DexternalProjects.ts256 const config1 = { constant
283 const host = createServerHost([file1, file2, file3, config1, config2]);
286 rootFiles: toExternalFiles([config1.path, config2.path, file3.path]),
292 const proj1 = projectService.configuredProjects.get(config1.path);
300 assert.strictEqual(projectService.configuredProjects.get(config1.path), proj1);
305 assert.strictEqual(projectService.configuredProjects.get(config1.path), proj1);
311 assert.strictEqual(projectService.configuredProjects.get(config1.path), proj1);
316 assert.strictEqual(projectService.configuredProjects.get(config1.path), proj1);
322 assert.strictEqual(projectService.configuredProjects.get(config1.path), proj1);
328 assert.isUndefined(projectService.configuredProjects.get(config1.path));
[all …]
Dprojects.ts136 const config1 = { constant
147 const host = createServerHost([file1, config1]);
150 rootFiles: toExternalFiles([file1.path, config1.path]),
167 const config1 = { constant
177 const host = createServerHost([file1, config1]);
193 const config1 = { constant
203 const host = createServerHost([file1, config1]);
748 const config1 = { constant
753 …let host = createServerHost([file1, file2, config1, libFile], { executingFilePath: combinePaths(ge…
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLContextCompatibilityTest.cpp425 EGLConfig config1 = mConfigs[mConfigIndexA]; in TestBody() local
429 eglGetConfigAttrib(mDisplay, config1, EGL_SURFACE_TYPE, &surfaceType); in TestBody()
434 testWindowCompatibility(config1, config2, in TestBody()
435 areConfigsCompatible(config1, config2, EGL_WINDOW_BIT)); in TestBody()
457 EGLConfig config1 = mConfigs[mConfigIndexA]; in TestBody() local
461 eglGetConfigAttrib(mDisplay, config1, EGL_SURFACE_TYPE, &surfaceType); in TestBody()
466 testPbufferCompatibility(config1, config2, in TestBody()
467 areConfigsCompatible(config1, config2, EGL_PBUFFER_BIT)); in TestBody()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_texture_state.c47 uint32_t config1; member
66 uint32_t config1; member
113 cs->config1 = screen->specs.seamless_cube_map ? in etna_create_sampler_state_state()
224 sv->config1 |= COND(ext, VIVS_TE_SAMPLER_CONFIG1_FORMAT_EXT(format)) | in etna_create_sampler_view_state()
419 /*10380*/ EMIT_STATE(NTE_SAMPLER_CONFIG1(x), ss->config1 | in etna_emit_new_texture_state()
420 sv->config1 | in etna_emit_new_texture_state()
542 /*021C0*/ EMIT_STATE(TE_SAMPLER_CONFIG1(x), ss->config1 | in etna_emit_texture_state()
543 sv->config1 | in etna_emit_texture_state()
/third_party/python/Lib/test/
Dtest_ossaudiodev.py99 config1 = (ossaudiodev.AFMT_U8, 1, 8000)
102 for config in [config1, config2]:
Dtest_logging.py1237 config1 = """ variable in ConfigFileTest
1301 config2 = config1.replace("sys.stdout", "sys.stbout")
1304 config3 = config1.replace("formatter=form1", "formatter=misspelled_name")
1334 config5 = config1.replace('class=StreamHandler', 'class=logging.StreamHandler')
1496 def test_config1_ok(self, config=config1):
2241 config1 = { variable in ConfigDictTest
2971 def test_config1_ok(self, config=config1):
3040 self.apply_config(self.config1)
3069 self.apply_config(self.config1)
3277 self.setup_via_listener(textwrap.dedent(ConfigFileTest.config1))
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DvalidationEGL.cpp1787 const Config *config1, in ValidateCompatibleConfigs() argument
1797 bool colorBufferCompat = config1->colorBufferType == config2->colorBufferType; in ValidateCompatibleConfigs()
1804 config1->redSize == config2->redSize && config1->greenSize == config2->greenSize && in ValidateCompatibleConfigs()
1805 config1->blueSize == config2->blueSize && config1->alphaSize == config2->alphaSize && in ValidateCompatibleConfigs()
1806 config1->luminanceSize == config2->luminanceSize; in ValidateCompatibleConfigs()
1812 bool componentTypeCompat = config1->colorComponentType == config2->colorComponentType; in ValidateCompatibleConfigs()
1818 bool dsCompat = config1->depthSize == config2->depthSize && in ValidateCompatibleConfigs()
1819 config1->stencilSize == config2->stencilSize; in ValidateCompatibleConfigs()
1826 bool surfaceTypeCompat = (config1->surfaceType & config2->surfaceType & surfaceType) != 0; in ValidateCompatibleConfigs()
DvalidationEGL.h237 const Config *config1,
/third_party/typescript/src/testRunner/unittests/tscWatch/
DprogramUpdates.ts691 const config1 = { constant
706 …return createWatchedSystem([libES5, libES2015Promise, app, config1], { executingFilePath: "/compil…
/third_party/gettext/gettext-tools/tests/
Dmm-viet.comp.po7458 #: ../glade/config1.glade.h:14 ../glade/fields1.glade.h:19