Searched refs:optionstr (Results 1 - 3 of 3) sorted by relevance

/external/ltp/lib/
H A Dparse_opts.c151 char *optionstr; local
176 optionstr = malloc(optstrlen);
177 if (!optionstr)
179 "parse_opts: ERROR - Could not allocate memory for optionstr";
181 optionstr[0] = '\0';
184 strcat(optionstr, std_options[i].optstr);
188 if (strchr(optionstr, user_optarr[i].option[0]) == NULL)
189 strcat(optionstr, user_optarr[i].option);
194 while ((opt = getopt(ac, av, optionstr)) > 0) {
258 free(optionstr);
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DAgentOptions.java208 * @param optionstr
211 public AgentOptions(final String optionstr) { argument
213 if (optionstr != null && optionstr.length() > 0) {
214 for (final String entry : OPTION_SPLIT.split(optionstr)) {
218 "Invalid agent option syntax \"%s\".", optionstr));
/external/python/cpython2/Lib/
H A DConfigParser.py373 def optionxform(self, optionstr):
374 return optionstr.lower()

Completed in 144 milliseconds