/third_party/typescript/src/testRunner/unittests/config/ |
D | showConfig.ts | 126 let optionValue: object | undefined; 131 optionValue = { [option.name]: true }; 141 optionValue = { [option.name]: [] }; 151 optionValue = { [option.name]: "someString" }; 161 optionValue = { [option.name]: 0 }; 170 optionValue = { [option.name]: {} }; 179 optionValue = { [option.name]: val }; 188 const configObject = optionValue && 189 … (isCompilerOptions ? { compilerOptions: optionValue } : { watchOptions: optionValue });
|
/third_party/skia/tools/flags/ |
D | CommonFlagsConfig.cpp | 437 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_gpu_color() local 438 if (optionValue == nullptr) { in get_option_gpu_color() 441 return parse_option_gpu_color(*optionValue, outColorType, alphaType); in get_option_gpu_color() 448 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_gpu_api() local 449 if (optionValue == nullptr) { in get_option_gpu_api() 452 return parse_option_gpu_api(*optionValue, outContextType, outFakeGLESVersion2); in get_option_gpu_api() 460 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_graphite_api() local 461 if (optionValue == nullptr) { in get_option_graphite_api() 465 if (optionValue->equals("vulkan")) { in get_option_graphite_api() 471 if (optionValue->equals("metal")) { in get_option_graphite_api() [all …]
|
/third_party/flutter/skia/tools/flags/ |
D | CommonFlagsConfig.cpp | 388 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_gpu_color() local 389 if (optionValue == nullptr) { in get_option_gpu_color() 392 return parse_option_gpu_color(*optionValue, outColorType, alphaType, outColorSpace); in get_option_gpu_color() 398 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_gpu_api() local 399 if (optionValue == nullptr) { in get_option_gpu_api() 402 return parse_option_gpu_api(*optionValue, outContextType); in get_option_gpu_api() 408 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_gpu_surf_type() local 409 if (optionValue == nullptr) { in get_option_gpu_surf_type() 412 return parse_option_gpu_surf_type(*optionValue, outSurfType); in get_option_gpu_surf_type() 416 SkString* optionValue = fOptionsMap.find(SkString(optionKey)); in get_option_int() local [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestReorderingMode.java | 211 int optionValue, optionBack; in testReorderingMode() local 233 optionValue = options[option]; in testReorderingMode() 234 bidi.setReorderingOptions(optionValue); in testReorderingMode() 236 if (optionValue != optionBack) { in testReorderingMode() 243 " option=" + optionValue + " level=" + level); in testReorderingMode() 249 (optionValue == Bidi.OPTION_INSERT_MARKS))) { in testReorderingMode() 253 String optDesc = spOptionsToString(optionValue); in testReorderingMode() 257 expected = inverseBasic(bidi2, src, optionValue, in testReorderingMode() 270 if ((optionValue == Bidi.OPTION_INSERT_MARKS) && in testReorderingMode()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
D | TestReorderingMode.java | 214 int optionValue, optionBack; in testReorderingMode() local 236 optionValue = options[option]; in testReorderingMode() 237 bidi.setReorderingOptions(optionValue); in testReorderingMode() 239 if (optionValue != optionBack) { in testReorderingMode() 246 " option=" + optionValue + " level=" + level); in testReorderingMode() 252 (optionValue == Bidi.OPTION_INSERT_MARKS))) { in testReorderingMode() 256 String optDesc = spOptionsToString(optionValue); in testReorderingMode() 260 expected = inverseBasic(bidi2, src, optionValue, in testReorderingMode() 273 if ((optionValue == Bidi.OPTION_INSERT_MARKS) && in testReorderingMode()
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | no-type-alias.ts | 206 optionValue: Values, 212 optionValue === 'never' || 213 !isSupportedComposition(isTopLevel, type.compositionType, optionValue)
|
/third_party/typescript/src/services/codefixes/ |
D | helpers.ts | 449 …teralExpression(options.map(([optionName, optionValue]) => createJsonPropertyAssignment(optionName… 458 for (const [optionName, optionValue] of options) { constant 461 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue)); 464 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue); 473 optionValue: Expression, 475 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
|
/third_party/node/deps/npm/node_modules/columnify/ |
D | Readme.md | 149 optionName: optionValue, 151 columnName: {optionName: optionValue}, 152 columnName: {optionName: optionValue},
|
/third_party/vk-gl-cts/scripts/ |
D | mustpass.py | 332 def addOptionElement (parent, optionName, optionValue): argument 333 ElementTree.SubElement(parent, "option", name=optionName, value=optionValue)
|
/third_party/typescript/src/services/formatting/ |
D | rules.ts | 410 …function optionEquals<K extends keyof FormatCodeSettings>(optionName: K, optionValue: FormatCodeSe… 411 return (context) => context.options && context.options[optionName] === optionValue;
|
/third_party/typescript/src/harness/ |
D | harnessIO.ts | 338 options[option.name] = optionValue(option, value, errors); 350 … function optionValue(option: ts.CommandLineOption, value: string, errors: ts.Diagnostic[]): any { function
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cbiditst.c | 4275 uint32_t optionValue, optionBack; in testReorderingMode() local 4309 optionValue = options[option].value; in testReorderingMode() 4310 ubidi_setReorderingOptions(pBiDi, optionValue); in testReorderingMode() 4312 if (optionValue != optionBack) { in testReorderingMode() 4314 optionValue, optionBack); in testReorderingMode()
|
/third_party/typescript/lib/ |
D | tsserver.js | 132358 function optionEquals(optionName, optionValue) { argument 132359 …turn function (context) { return context.options && context.options[optionName] === optionValue; }; 142743 var optionName = _a[0], optionValue = _a[1]; 142744 return createJsonPropertyAssignment(optionName, optionValue); 142753 var _a = options_1[_i], optionName = _a[0], optionValue = _a[1]; 142756 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue)); 142759 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue); 142764 function setJsonCompilerOptionValue(changeTracker, configFile, optionName, optionValue) { argument 142765 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
|
D | typescriptServices.js | 132927 function optionEquals(optionName, optionValue) { argument 132928 …turn function (context) { return context.options && context.options[optionName] === optionValue; }; 143312 var optionName = _a[0], optionValue = _a[1]; 143313 return createJsonPropertyAssignment(optionName, optionValue); 143322 var _a = options_1[_i], optionName = _a[0], optionValue = _a[1]; 143325 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue)); 143328 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue); 143333 function setJsonCompilerOptionValue(changeTracker, configFile, optionName, optionValue) { argument 143334 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
|
D | tsserverlibrary.js | 132927 function optionEquals(optionName, optionValue) { argument 132928 …turn function (context) { return context.options && context.options[optionName] === optionValue; }; 143312 var optionName = _a[0], optionValue = _a[1]; 143313 return createJsonPropertyAssignment(optionName, optionValue); 143322 var _a = options_1[_i], optionName = _a[0], optionValue = _a[1]; 143325 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue)); 143328 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue); 143333 function setJsonCompilerOptionValue(changeTracker, configFile, optionName, optionValue) { argument 143334 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
|
D | typescript.js | 132927 function optionEquals(optionName, optionValue) { argument 132928 …turn function (context) { return context.options && context.options[optionName] === optionValue; }; 143312 var optionName = _a[0], optionValue = _a[1]; 143313 return createJsonPropertyAssignment(optionName, optionValue); 143322 var _a = options_1[_i], optionName = _a[0], optionValue = _a[1]; 143325 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue)); 143328 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue); 143333 function setJsonCompilerOptionValue(changeTracker, configFile, optionName, optionValue) { argument 143334 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
|