Home | History | Annotate | Download | only in toolutil

Lines Matching full:option

44 /* function to be called for a command line option */
45 typedef int UOptionFn(void *context, UOption *option);
50 /* structure describing a command line option */
54 UOptionFn *optionFn; /* function to be called when this option occurs */
57 char hasArg; /* enum value: option takes no/requires/may have argument */
65 /* ICU Tools option definitions */
89 * Each option is marked with whether it does not take an argument,
96 * its own argv[] entry if there are characters following the option letter.
102 * UOption entry, and the doesOccur field is set to 1 if the option
106 * argv[] entry. After an option letter takes an argument, following
109 * If the same option is found several times, then the last
112 * For each option, a function can be called. This could be used
117 * is successful, then it returns the number of remaining non-option
121 * An option "--" ends option processing; everything after this
124 * An option string "-" alone is treated as a non-option.
126 * If an option is not recognized or an argument missing, then