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

  /external/desugar/java/com/google/devtools/common/options/
ArgsPreProcessor.java 20 interface ArgsPreProcessor {
ParamsFilePreProcessor.java 22 * Defines an {@link ArgsPreProcessor} that will determine if the arguments list contains a "params"
29 public abstract class ParamsFilePreProcessor implements ArgsPreProcessor {
OptionsParserImpl.java 86 private ArgsPreProcessor argsPreProcessor = args -> args;
106 /** Sets the ArgsPreProcessor for manipulations of the options before parsing. */
107 void setArgsPreProcessor(ArgsPreProcessor preProcessor) {
108 this.argsPreProcessor = Preconditions.checkNotNull(preProcessor);
313 Iterator<String> argsIterator = argsPreProcessor.preProcess(args).iterator();

Completed in 523 milliseconds