HomeSort by relevance Sort by last modified time
    Searched refs:unconvertedValue (Results 1 - 2 of 2) sorted by null

  /external/desugar/java/com/google/devtools/common/options/
ParsedOptionDescription.java 31 @Nullable private final String unconvertedValue;
37 @Nullable String unconvertedValue,
41 this.unconvertedValue = unconvertedValue;
69 if (unconvertedValue != null) { // Can be null for Void options.
70 optionString += "=" + escapingFunction.apply(unconvertedValue);
79 String value = unconvertedValue;
115 return unconvertedValue;
145 return converter.convert(unconvertedValue);
157 result.append("set to '").append(unconvertedValue).append("' ")
    [all...]
OptionsParserImpl.java 349 OptionInstanceOrigin origin, OptionDefinition option, String unconvertedValue)
353 unconvertedValue,
359 unconvertedValue,
367 unconvertedValue,
374 String.format("--%s=%s", option.getOptionName(), unconvertedValue),
375 unconvertedValue,
392 @Nullable String unconvertedValue = parsedOption.getUnconvertedValue();
422 + unconvertedValue
430 + unconvertedValue
450 String unconvertedValue = null
    [all...]

Completed in 84 milliseconds