Lines Matching refs:it

5  * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
41 boolean nextNotKey(ArgIterator it) {
42 if (it.next()) {
43 String s = it.get();
87 public void handle(ArgIterator it) {
88 String cfg = getCfg(it.get());
89 if (nextNotKey(it)) {
90 String val = it.get();
104 it.next();
288 public void handle(ArgIterator it) {
289 String cfg = getCfg(it.get());
290 if (nextNotKey(it)) {
291 String sb = (String) it.get();
296 it.next();
378 public void handle(ArgIterator it) {
379 String cfg = getCfg(it.get());
380 if (nextNotKey(it)) {
381 String fileName = it.get();
382 if (nextNotKey(it)) {
383 String line = it.get();
385 it.next();
396 public void handle(ArgIterator it) {
397 String cfg = getCfg(it.get());
398 if (nextNotKey(it)) {
399 String fileName = it.get();
400 if (nextNotKey(it)) {
401 String productLine = it.get();
402 if (nextNotKey(it)) {
403 String debugLine = it.get();
408 it.next();
427 public void handle(ArgIterator it) {
431 if (nextNotKey(it)) {
432 BuildConfig.putField(null, "StartAt", it.get());
433 it.next();
467 public void handle(ArgIterator it) {
468 String cfg = getCfg(it.get());
469 if (nextNotKey(it)) {
470 String dir = it.get();
471 if (nextNotKey(it)) {
472 String fileName = it.get();
476 it.next();
487 public void handle(ArgIterator it) {
488 if (nextNotKey(it)) {
489 if (nextNotKey(it)) {
490 String description = it.get();
491 if (nextNotKey(it)) {
492 String command = it.get();
495 it.next();
508 public void handle(ArgIterator it) {
509 if (nextNotKey(it)) {
510 if (nextNotKey(it)) {
511 String description = it.get();
512 if (nextNotKey(it)) {
513 String command = it.get();
516 it.next();
528 public void handle(ArgIterator it) {
530 throw new RuntimeException("Arg Parser: unrecognized option "+it.get());