Lines Matching refs:arg
41 String arg = args[i];
43 (arg.length() == 1 && isAscii(arg.charAt(0))) ?
44 (byte) arg.charAt(0) :
45 arg.equals("ESC") ? 0x1b :
46 arg.equals("SO") ? 0x0e :
47 arg.equals("SI") ? 0x0f :
48 arg.equals("SS2") ? (byte) 0x8e :
49 arg.equals("SS3") ? (byte) 0x8f :
50 arg.matches("0x.*") ? Integer.decode(arg).byteValue() :
51 Integer.decode("0x"+arg).byteValue();