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

  /external/cldr/tools/java/org/unicode/cldr/tool/
SearchCLDR.java 65 final static Options myOptions = new Options()
89 myOptions.parse(args, true);
94 String sourceDirectory = myOptions.get("source").getValue();
97 fileMatcher = myOptions.get("file").getValue();
99 pathMatcher = getMatcher(myOptions.get("path").getValue(), exclude);
102 Set<Level> levelMatcher = getEnumMatcher(myOptions.get("level").getValue(), exclude);
104 Matcher valueMatcher = getMatcher(myOptions.get("value").getValue(), exclude);
107 countOnly = myOptions.get("count").doesOccur();
108 boolean resolved = myOptions.get("resolved").doesOccur();
110 showPath = myOptions.get("z-showPath").doesOccur()
    [all...]
SearchXml.java 67 final static Options myOptions = new Options()
85 myOptions.parse(args, true);
87 verbose = myOptions.get("Verbose").doesOccur();
89 String sourceDirectory = myOptions.get("source").getValue();
95 fileMatcher = getMatcher(myOptions.get("file").getValue(), exclude);
98 pathMatcher = getMatcher(myOptions.get("path").getValue(), exclude);
101 levelMatcher = getMatcher(myOptions.get("level").getValue(), exclude);
104 valueMatcher = getMatcher(myOptions.get("value").getValue(), exclude);
107 if (myOptions.get("Star").doesOccur()) {
118 if (myOptions.get("PathHeader").doesOccur())
    [all...]
XMLModify.java 23 enum MyOptions {
46 private MyOptions(Params params) {
50 private static Options myOptions = new Options();
52 for (MyOptions option : MyOptions.values()) {
53 myOptions.add(option, option.option);
58 return myOptions.parse(MyOptions.values()[0], args, true);
63 MyOptions.parse(args, true);
64 File sourceDirectory = new File(MyOptions.sourceDirectory.option.getValue())
    [all...]
GenerateBirth.java 51 final static Options myOptions = new Options()
65 myOptions.parse(args, true);
69 DEBUG = myOptions.get("debug").doesOccur();
73 String filePattern = myOptions.get("file").getValue();
89 final String dataDirectory = myOptions.get("target").getValue();
93 String outputDirectory = myOptions.get("log").getValue();
100 // if (!myOptions.get("file").doesOccur()) {
CopySubdivisionsIntoMain.java 33 enum MyOptions {
42 private MyOptions(Params params) {
46 private static Options myOptions = new Options();
48 for (MyOptions option : MyOptions.values()) {
49 myOptions.add(option, option.option);
54 return myOptions.parse(MyOptions.values()[0], args, true);
66 MyOptions.parse(args, true);
67 verbose = MyOptions.verbose.option.doesOccur()
    [all...]
RegexModify.java 24 enum MyOptions {
45 private MyOptions(Params params) {
49 private static Options myOptions = new Options();
51 for (MyOptions option : MyOptions.values()) {
52 myOptions.add(option, option.option);
57 return myOptions.parse(MyOptions.values()[0], args, true);
62 MyOptions.parse(args, true);
63 File sourceDirectory = new File(MyOptions.sourceDirectory.option.getValue())
    [all...]
DiffCldr.java 39 enum MyOptions {
47 private MyOptions(String argumentPattern, String defaultArgument, String helpText) {
51 static Options myOptions = new Options();
53 for (MyOptions option : MyOptions.values()) {
54 myOptions.add(option, option.option);
59 return myOptions.parse(MyOptions.values()[0], args, true);
64 MyOptions.parse(args, true);
65 String localeBase = MyOptions.filter.option.getValue()
    [all...]
Option.java 18 * Note that before any enums are used, the main has to have MyOptions.parse(args, true);
28 * <tr><th>new</th><td>MyOptions.file_filter.option.getValue();</td></tr>
414 final static Options myOptions = new Options()
426 myOptions.parse(args, true);
428 for (Option option : myOptions) {
432 Option option = myOptions.get("file");
ShowRegionalVariants.java 49 final static Options myOptions = new Options();
51 enum MyOptions {
56 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
57 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
62 myOptions.parse(MyOptions.targetDir, args, true);
64 MY_DIR = MyOptions.targetDir.option.getValue();
ShowStarredCoverage.java 57 enum MyOptions {
66 private MyOptions(String argumentPattern, String defaultArgument, String helpText) {
70 static Options myOptions = new Options();
72 for (MyOptions option : MyOptions.values()) {
73 myOptions.add(option, option.option);
78 return myOptions.parse(MyOptions.values()[0], args, true);
87 MyOptions.parse(args, true);
89 if (MyOptions.tag.option.doesOccur())
    [all...]
GenerateXMB.java 99 final static Options myOptions = new Options("In normal usage, you set the -t option for the target.")
146 myOptions.parse(args, true);
148 option = myOptions.get("zone");
153 option = myOptions.get("file");
155 option = myOptions.get("content");
157 option = myOptions.get("path");
160 String targetDir = myOptions.get("target").getValue();
173 option = myOptions.get("kompare");
180 if (myOptions.get("wsb").doesOccur()) {
181 displayWsb(myOptions.get("wsb").getValue(), englishInfo)
    [all...]
CheckHtmlFiles.java 64 final static Options myOptions = new Options();
82 enum MyOptions {
94 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
95 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
115 myOptions.parse(MyOptions.target, args, true);
116 verbose = Verbosity.of(MyOptions.verbose.option.getValue());
118 String targetString = MyOptions.target.option.getValue();
144 // Data source = new Data().getSentences(MyOptions.old.option.getValue());
145 // String file = MyOptions.target.option.getValue()
    [all...]
GeneratedPluralSamples.java 537 final static Options myOptions = new Options();
540 enum MyOptions {
547 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
548 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
553 myOptions.parse(MyOptions.filter, args, true);
557 Matcher localeMatcher = !MyOptions.filter.option.doesOccur() ? null : PatternCache.get(MyOptions.filter.option.getValue()).matcher("");
558 boolean fileFormat = true; //MyOptions.xml.option.doesOccur();
559 final boolean multiline = MyOptions.multiline.option.doesOccur()
    [all...]
ChartDelta.java 74 enum MyOptions {
82 private MyOptions(Params params) {
86 private static Options myOptions = new Options();
88 for (MyOptions option : MyOptions.values()) {
89 myOptions.add(option, option.option);
94 return myOptions.parse(MyOptions.values()[0], args, true);
108 MyOptions.parse(args, true);
109 Matcher fileFilter = !MyOptions.fileFilter.option.doesOccur() ? null : PatternCache.get(MyOptions.fileFilter.option.getValue()).ma (…)
    [all...]
GenerateItemCounts.java 75 final static Options myOptions = new Options();
77 enum MyOptions {
84 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
85 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
94 myOptions.parse(MyOptions.directory, args, true);
96 DIR_FILE_MATCHER = PatternCache.get(MyOptions.directory.option.getValue()).matcher("");
97 RAW_FILE_MATCHER = PatternCache.get(MyOptions.rawfilter.option.getValue()).matcher("");
98 VERBOSE = MyOptions.verbose.option.doesOccur();
100 if (MyOptions.summary.option.doesOccur())
    [all...]
ShowKeyboards.java 73 final static Options myOptions = new Options();
75 enum MyOptions {
83 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
84 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
94 myOptions.parse(MyOptions.idFilter, args, true);
95 String idPattern = MyOptions.idFilter.option.getValue();
96 keyboardChartDir = MyOptions.targetDirectory.option.getValue();
108 boolean layoutsOnly = MyOptions.layouts.option.doesOccur();
109 boolean repertoireOnly = MyOptions.repertoire.option.doesOccur()
    [all...]
ShowLocaleCoverage.java 109 final static Options myOptions = new Options();
111 enum MyOptions {
132 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
133 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
152 myOptions.parse(MyOptions.filter, args, true);
154 if (MyOptions.chart.option.doesOccur()) {
159 Matcher matcher = PatternCache.get(MyOptions.filter.option.getValue()).matcher("");
161 if (MyOptions.growth.option.doesOccur()) {
169 String organization = MyOptions.organization.option.getValue()
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
VerifyCompactNumbers.java 36 final static Options myOptions = new Options();
38 enum MyOptions {
43 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
44 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
59 myOptions.parse(MyOptions.organization, args, true);
61 String organization = MyOptions.organization.option.getValue();
62 String filter = MyOptions.filter.option.getValue();
63 boolean showCurrency = true; // MyOptions.currency.option.doesOccur();
64 String currencyCode = MyOptions.currency.option.getValue()
    [all...]
VerifyZones.java 40 final static Options myOptions = new Options();
42 enum MyOptions {
47 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
48 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
281 myOptions.parse(MyOptions.organization, args, true);
283 String organization = MyOptions.organization.option.getValue();
284 String filter = MyOptions.filter.option.getValue();
285 String timezoneFilterString = MyOptions.timezoneFilter.option.getValue();
DateTimeFormats.java 48 final static Options myOptions = new Options();
50 enum MyOptions {
55 MyOptions(String argumentPattern, String defaultArgument, String helpText) {
56 option = myOptions.add(this, argumentPattern, defaultArgument, helpText);
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/test/
ConsoleCheckCLDR.java 123 enum MyOptions {
164 private MyOptions(Params params) {
168 private static Option.Options myOptions = new Option.Options();
170 for (MyOptions option : MyOptions.values()) {
171 myOptions.add(option, option.option);
176 return myOptions.parse(MyOptions.values()[0], args, true);
258 MyOptions.parse(args, true);
366 if (MyOptions.source_all.option.doesOccur())
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetMBCS.java     [all...]

Completed in 470 milliseconds