Lines Matching refs:opt

111                     String opt = opti.next();
114 if (opt.equals(propTable[1+i])) {
120 String val = avProps.get(opt);
121 opti.remove(); // remove opt from avProps
124 if (!(opt.equals("--verbose")
125 || opt.endsWith("="))) {
128 if (opt.startsWith("--no-"))
183 for (String opt : avProps.keySet()) {
184 String val = avProps.get(opt);
185 switch (opt) {
198 opt, avProps.get(opt)));
533 String opt = words[0];
535 if (opt.length() == 0 && words.length >= 1) {
536 opt = words[1]; // initial "word" is empty due to leading ' '
539 if (opt.length() == 0) continue loadOptmap;
540 String[] prevWords = optmap.put(opt, words);
565 String opt;
569 opt = arg.substring(0, optlen);
570 if (optmap.containsKey(opt)) break findOpt;
573 SortedMap<String,String[]> pfxmap = optmap.headMap(opt);
577 opt = arg.substring(0, optlen);
578 // (Note: We could cut opt down to its common prefix with
581 opt = opt.intern();
582 assert(arg.startsWith(opt));
583 assert(opt.length() == optlen);
584 String val = arg.substring(optlen); // arg == opt+val
586 // Execute the option processing specs for this opt.
592 String[] specs = optmap.get(opt);
624 resultString = (specarg.length() != 0)? specarg.intern(): opt;
630 case '@': // change the effective opt name
631 opt = specarg.intern();
638 String negopt = (specarg.length() != 0)? specarg.intern(): opt;
649 String old = properties.get(opt);
657 properties.put(opt, boolval);
676 String old = properties.get(opt);
684 properties.put(opt, strval);
688 throw new RuntimeException(MessageFormat.format(RESOURCE.getString(DriverResource.BAD_SPEC),opt, spec));