Home | History | Annotate | Download | only in i18n

Lines Matching defs:option

271 /* I'd surely be lenient with the option arguments */
591 * Reads an option and matches the option name with the predefined options. (Case-insensitive.)
593 * @param end Pointer to the last valid pointer beyond which the option will not extend.
594 * @param optionArg Address of the pointer at which the options start (after the option name)
595 * @return The index of the option, or -1 if the option is not valid.
608 *optionArg = start+rulesOptions[i].optionLen; /* End of option name; start of the options */
618 i = -1; // didn't find an option
1131 /* options - read an option, analyze it */
2181 if(rules[i] == 0x005B) { // '[': start of an option
2183 optionNumber: The index of the option.
2184 setStart: The pointer at which the option arguments start.
2225 char option[50];
2226 if(optionLength >= (int32_t)sizeof(option)) {
2230 u_UCharsToChars(setStart, option, optionLength);
2231 option[optionLength] = 0;
2236 uloc_forLanguageTag(option, locale, (int32_t)sizeof(locale), &templ, status);
2266 // and subtract the length of the import option.
2282 // Copy the rest of the original rules (minus the import option itself)
2338 src->extraCurrent = src->end+1; // Preserve terminating zero in the rule string so that option scanning works correctly