OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OptionsParsingException
(Results
1 - 12
of
12
) sorted by null
/external/desugar/java/com/google/devtools/common/options/
OptionsParsingException.java
22
public class
OptionsParsingException
extends Exception {
25
public
OptionsParsingException
(String message) {
29
public
OptionsParsingException
(String message, String argument) {
34
public
OptionsParsingException
(String message, Throwable throwable) {
38
public
OptionsParsingException
(String message, String argument, Throwable throwable) {
Converter.java
25
T convert(String input) throws
OptionsParsingException
;
ArgsPreProcessor.java
20
List<String> preProcess(List<String> args) throws
OptionsParsingException
;
Converters.java
35
public Boolean convert(String input) throws
OptionsParsingException
{
54
throw new
OptionsParsingException
("'" + input + "' is not a boolean");
79
public Integer convert(String input) throws
OptionsParsingException
{
83
throw new
OptionsParsingException
("'" + input + "' is not an int");
96
public Long convert(String input) throws
OptionsParsingException
{
100
throw new
OptionsParsingException
("'" + input + "' is not a long");
113
public Double convert(String input) throws
OptionsParsingException
{
117
throw new
OptionsParsingException
("'" + input + "' is not a double");
130
public TriState convert(String input) throws
OptionsParsingException
{
152
throw new
OptionsParsingException
("'" + input + "' is not a boolean")
[
all
...]
BoolOrEnumConverter.java
49
public T convert(String input) throws
OptionsParsingException
{
52
} catch (
OptionsParsingException
eEnum) {
57
} catch (
OptionsParsingException
eBoolean) {
EnumConverter.java
54
public T convert(String input) throws
OptionsParsingException
{
60
throw new
OptionsParsingException
("Not a valid " + typeName + ": '"
ParamsFilePreProcessor.java
54
* @throws
OptionsParsingException
if the path does not exist.
57
public List<String> preProcess(List<String> args) throws
OptionsParsingException
{
60
throw new
OptionsParsingException
(
83
throw new
OptionsParsingException
(
88
throw new
OptionsParsingException
(
Options.java
31
* } catch (
OptionsParsingException
e) {
51
throws
OptionsParsingException
{
66
} catch (
OptionsParsingException
e) {
OptionsParserImpl.java
91
public List<String> preProcess(List<String> args) throws
OptionsParsingException
{
329
throws
OptionsParsingException
{
340
throws
OptionsParsingException
{
399
List<String> args) throws
OptionsParsingException
{
417
List<String> args) throws
OptionsParsingException
{
454
throw new
OptionsParsingException
("Unparsed options remain after unwrapping " +
464
throw new
OptionsParsingException
("Invalid --" + originalName + " value format. "
512
} catch (
OptionsParsingException
e) {
515
throw new
OptionsParsingException
("While parsing option " + arg
579
throws
OptionsParsingException
{
[
all
...]
OptionsParser.java
150
* methods will throw {@link
OptionsParsingException
} unless
189
} catch (
OptionsParsingException
e) {
625
public void parse(String... args) throws
OptionsParsingException
{
633
public void parse(List<String> args) throws
OptionsParsingException
{
648
List<String> args) throws
OptionsParsingException
{
662
throws
OptionsParsingException
{
668
throw new
OptionsParsingException
(errorMsg);
684
throws
OptionsParsingException
{
IsolatedOptionsData.java
255
} catch (
OptionsParsingException
e) {
256
throw new IllegalStateException("
OptionsParsingException
while "
/external/desugar/java/com/google/devtools/build/android/
Converters.java
17
import com.google.devtools.common.options.
OptionsParsingException
;
52
public Path convert(String input) throws
OptionsParsingException
{
56
throw new
OptionsParsingException
(
61
throw new
OptionsParsingException
(
Completed in 323 milliseconds