Home | History | Annotate | Download | only in options

Lines Matching defs:options

15 package com.google.devtools.common.options;
20 * A read-only interface for options parser results, which does not allow any
21 * further parsing of options.
37 * Returns a mutable copy of the list of all options that were specified either explicitly or
38 * implicitly. These options are sorted by priority, and by the order in which they were
42 * <p>The returned list includes undocumented, hidden or implicit options, and should be filtered
43 * as needed. Since it includes all options parsed, it will also include both an expansion option
44 * and the options it expanded to, and so blindly using this list for a new invocation will cause
45 * double-application of these options.
50 * Returns a list of all explicitly specified options, suitable for logging or for displaying back
51 * to the user. These options are sorted by priority, and by the order in which they were
55 * <p>The list includes undocumented options.
60 * Returns a list of the parsed options whose values are in the final value of the option, i.e.
61 * the options that were added explicitly, expanded if necessary to the valued options they
65 * <p>The list includes undocumented options.
70 * Returns a list of all options, including undocumented ones, and their effective values. There
76 * Canonicalizes the list of options that this OptionsParser has parsed. The
77 * contract is that if the returned set of options is passed to an options
78 * parser with the same options classes, then that will have the same effect