Lines Matching refs:options

129                 task.options.help = true;
136 task.options.version = true;
143 task.options.fullVersion = true;
150 task.options.verbose = true;
151 task.options.showDescriptors = true;
152 task.options.showFlags = true;
153 task.options.showAllAttrs = true;
160 task.options.showLineAndLocalVariableTables = true;
167 task.options.accessOptions.add(opt);
168 task.options.showAccess = AccessFlags.ACC_PUBLIC;
175 task.options.accessOptions.add(opt);
176 task.options.showAccess = AccessFlags.ACC_PROTECTED;
183 task.options.accessOptions.add(opt);
184 task.options.showAccess = 0;
191 if (!task.options.accessOptions.contains("-p") &&
192 !task.options.accessOptions.contains("-private")) {
193 task.options.accessOptions.add(opt);
195 task.options.showAccess = AccessFlags.ACC_PRIVATE;
202 task.options.showDisassembled = true;
209 task.options.showDescriptors = true;
216 task.options.sysInfo = true;
223 task.options.details = EnumSet.allOf(InstructionDetailWriter.Kind.class);
249 task.options.details = EnumSet.allOf(InstructionDetailWriter.Kind.class);
262 task.options.details.add(k);
264 task.options.details.remove(k);
275 task.options.showConstants = true;
282 task.options.showInnerClasses = true;
299 task.options.indentWidth = i;
318 task.options.tabColumn = i;
327 task.options.moduleName = arg;
336 options = Options.instance(context);
352 Iterable<String> options,
363 if (options != null)
364 handleOptions(options, false);
444 if (options.help || options.version || options.fullVersion)
518 if (options.accessOptions.size() > 1) {
520 for (String opt: options.accessOptions) {
525 throw new BadArgs("err.incompatible.options", sb);
529 !(noArgs || options.help || options.version || options.fullVersion)) {
533 if (noArgs || options.help)
536 if (options.version || options.fullVersion)
537 showVersion(options.fullVersion);
583 if (options.moduleName != null) {
585 moduleLocation = findModule(options.moduleName);
587 reportError("err.cant.find.module", options.moduleName);
591 reportError("err.cant.find.module.ex", options.moduleName, e);
657 if (options.showInnerClasses) {
809 if (options.sysInfo || options.verbose) {
829 if (options.sysInfo || options.verbose) {
1090 Options options;