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 32 @Nullable private final String unconvertedValue;
38 @Nullable String unconvertedValue,
42 this.unconvertedValue = unconvertedValue;
49 @Nullable String unconvertedValue,
56 unconvertedValue,
94 if (unconvertedValue != null) { // Can be null for Void options.
95 optionString += "=" + escapingFunction.apply(unconvertedValue);
104 String value = unconvertedValue;
140 return unconvertedValue;
    [all...]
OptionsParserImpl.java 361 OptionInstanceOrigin origin, OptionDefinition option, String unconvertedValue)
365 unconvertedValue,
371 unconvertedValue,
379 unconvertedValue,
386 String.format("--%s=%s", option.getOptionName(), unconvertedValue),
387 unconvertedValue,
404 @Nullable String unconvertedValue = parsedOption.getUnconvertedValue();
435 + unconvertedValue
455 String unconvertedValue = null;
477 unconvertedValue = equalsAt == -1 ? null : arg.substring(equalsAt + 1)
    [all...]

Completed in 7678 milliseconds