/third_party/flutter/skia/third_party/externals/angle2/src/tests/egl_tests/ |
D | EGLContextCompatibilityTest.cpp | 340 EGLConfig config2 = mConfigs[j]; in TEST_P() local 344 if (isMultisampledConfig(config2) || in TEST_P() 345 (IsAndroid() && (isRGB10_A2Config(config2) || isRGBA16FConfig(config2)))) in TEST_P() 349 testWindowCompatibility(config1, config2, in TEST_P() 350 areConfigsCompatible(config1, config2, EGL_WINDOW_BIT)); in TEST_P() 383 EGLConfig config2 = mConfigs[j]; in TEST_P() local 387 if (isMultisampledConfig(config2) || (IsAndroid() && isRGB10_A2Config(config2))) in TEST_P() 391 testPbufferCompatibility(config1, config2, in TEST_P() 392 areConfigsCompatible(config1, config2, EGL_PBUFFER_BIT)); in TEST_P()
|
/third_party/node/deps/npm/node_modules/yargs/lib/ |
D | apply-extends.js | 19 function mergeDeep (config1, config2) { argument 23 for (let key of Object.keys(config2)) { 24 if (isObject(config2[key]) && isObject(target[key])) { 25 target[key] = mergeDeep(config1[key], config2[key]) 27 target[key] = config2[key]
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | externalProjects.ts | 269 const config2 = { constant 283 const host = createServerHost([file1, file2, file3, config1, config2]); 286 rootFiles: toExternalFiles([config1.path, config2.path, file3.path]), 293 const proj2 = projectService.configuredProjects.get(config2.path); 301 assert.strictEqual(projectService.configuredProjects.get(config2.path), proj2); 306 assert.strictEqual(projectService.configuredProjects.get(config2.path), proj2); 312 assert.isUndefined(projectService.configuredProjects.get(config2.path)); 317 assert.isUndefined(projectService.configuredProjects.get(config2.path)); 323 assert.isUndefined(projectService.configuredProjects.get(config2.path)); 329 assert.isDefined(projectService.configuredProjects.get(config2.path)); [all …]
|
D | cachingFileSystemInformation.ts | 324 const { configFileName: config2 } = projectService.openClientFile(moduleFile.path); 325 assert.equal(config2, configFileName);
|
D | projects.ts | 770 const config2 = { constant 775 …host = createServerHost([file1, file2, config2, libFile], { executingFilePath: combinePaths(getDir…
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
D | EGLContextCompatibilityTest.cpp | 426 EGLConfig config2 = mConfigs[mConfigIndexB]; in TestBody() local 434 testWindowCompatibility(config1, config2, in TestBody() 435 areConfigsCompatible(config1, config2, EGL_WINDOW_BIT)); in TestBody() 458 EGLConfig config2 = mConfigs[mConfigIndexB]; in TestBody() local 466 testPbufferCompatibility(config1, config2, in TestBody() 467 areConfigsCompatible(config1, config2, EGL_PBUFFER_BIT)); in TestBody()
|
/third_party/python/Python/ |
D | preconfig.c | 17 preconfig_copy(PyPreConfig *config, const PyPreConfig *config2); 358 const PyPreConfig *config2) in _PyPreConfig_InitFromPreConfig() argument 361 preconfig_copy(config, config2); in _PyPreConfig_InitFromPreConfig() 387 preconfig_copy(PyPreConfig *config, const PyPreConfig *config2) in preconfig_copy() argument 389 #define COPY_ATTR(ATTR) config->ATTR = config2->ATTR in preconfig_copy()
|
D | pathconfig.c | 71 pathconfig_copy(_PyPathConfig *config, const _PyPathConfig *config2) in pathconfig_copy() argument 77 if (copy_wstr(&config->ATTR, config2->ATTR) < 0) { \ in pathconfig_copy() 89 config->isolated = config2->isolated; in pathconfig_copy() 90 config->site_import = config2->site_import; in pathconfig_copy()
|
D | initconfig.c | 867 _PyConfig_Copy(PyConfig *config, const PyConfig *config2) in _PyConfig_Copy() argument 873 #define COPY_ATTR(ATTR) config->ATTR = config2->ATTR in _PyConfig_Copy() 876 status = PyConfig_SetString(config, &config->ATTR, config2->ATTR); \ in _PyConfig_Copy() 883 if (_PyWideStringList_Copy(&config->LIST, &config2->LIST) < 0) { \ in _PyConfig_Copy()
|
/third_party/python/Include/internal/ |
D | pycore_initconfig.h | 133 const PyPreConfig *config2); 154 const PyConfig *config2);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | Layout.cpp | 125 auto config2 = config; in MetalLayoutOf() local 126 config2.maskArray = false; in MetalLayoutOf() 131 layout += MetalLayoutOf(*field->type(), config2); in MetalLayoutOf()
|
/third_party/python/Lib/test/ |
D | test_ossaudiodev.py | 100 config2 = (AFMT_S16_NE, 2, 44100) 102 for config in [config1, config2]:
|
D | test_logging.py | 1301 config2 = config1.replace("sys.stdout", "sys.stbout") variable in ConfigFileTest 1513 self.assertRaises(Exception, self.apply_config, self.config2) 2295 config2 = { variable in ConfigDictTest 2988 self.assertRaises(Exception, self.apply_config, self.config2)
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | validationEGL.cpp | 1789 const Config *config2, 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()
|
D | validationEGL.h | 239 const Config *config2,
|
/third_party/libbpf/include/uapi/linux/ |
D | perf_event.h | 476 __u64 config2; /* extension of config1 */ member
|
/third_party/libbpf/src/ |
D | libbpf.c | 10289 attr.config2 = offset; /* kprobe_addr or probe_offset */
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 7295 __u64 config2; member 20049 u64 config2; member
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test-libandroid.so.abi | 20450 …<parameter type-id='138c2704' name='config2' filepath='frameworks/base/native/android/configuratio…
|