Home
last modified time | relevance | path

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

/third_party/typescript/src/testRunner/unittests/config/
DshowConfig.ts126 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/
DCommonFlagsConfig.cpp437 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestReorderingMode.java211 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/
DTestReorderingMode.java214 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/node/deps/npm/node_modules/@pkgjs/parseargs/
Dindex.js124 function storeOption(longOption, optionValue, options, values) { argument
131 const newValue = optionValue ?? true;
158 function storeDefaultOption(longOption, optionValue, values) { argument
163 values[longOption] = optionValue;
/third_party/node/lib/internal/util/parse_args/
Dparse_args.js122 function storeOption(longOption, optionValue, options, values) { argument
129 const newValue = optionValue ?? true;
155 function storeDefaultOption(longOption, optionValue, values) { argument
160 values[longOption] = optionValue;
/third_party/typescript/src/services/codefixes/
Dhelpers.ts663 …teralExpression(options.map(([optionName, optionValue]) => createJsonPropertyAssignment(optionName…
672 for (const [optionName, optionValue] of options) {
675 …eAtObjectStart(configFile, compilerOptions, createJsonPropertyAssignment(optionName, optionValue));
678 changeTracker.replaceNode(configFile, optionProperty.initializer, optionValue);
687 optionValue: Expression,
689 setJsonCompilerOptionValues(changeTracker, configFile, [[optionName, optionValue]]);
/third_party/vk-gl-cts/scripts/
Dmustpass.py332 def addOptionElement (parent, optionName, optionValue): argument
333 ElementTree.SubElement(parent, "option", name=optionName, value=optionValue)
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
Dcommand.js1689 const optionValue = this.getOptionValue(optionKey);
1693 (negativeOption.presetArg === undefined && optionValue === false) ||
1694 (negativeOption.presetArg !== undefined && optionValue === negativeOption.presetArg)
/third_party/typescript/src/services/formatting/
Drules.ts411 …function optionEquals<K extends keyof FormatCodeSettings>(optionName: K, optionValue: FormatCodeSe…
412 return (context) => context.options && context.options[optionName] === optionValue;
/third_party/typescript/src/harness/
DharnessIO.ts344 options[option.name] = optionValue(option, value, errors);
356 … function optionValue(option: ts.CommandLineOption, value: string, errors: ts.Diagnostic[]): any { function
/third_party/icu/icu4c/source/test/cintltst/
Dcbiditst.c4278 uint32_t optionValue, optionBack; in testReorderingMode() local
4312 optionValue = options[option].value; in testReorderingMode()
4313 ubidi_setReorderingOptions(pBiDi, optionValue); in testReorderingMode()
4315 if (optionValue != optionBack) { in testReorderingMode()
4317 optionValue, optionBack); in testReorderingMode()