Searched refs:dashIndex (Results 1 – 4 of 4) sorted by relevance
55 int dashIndex = fam.find("-"); in font_header() local56 if (dashIndex < 0) { in font_header()59 fam.writable_str()[dashIndex] = '_'; in font_header()
788 int dashIndex = argv[1].indexOf('-'); in main() local789 if (dashIndex > 0 && argv[1].length() > dashIndex + 1) { in main()791 maxQual = Integer.parseInt(argv[1].substring(dashIndex + 1)); in main()
781 int dashIndex = comments.indexOf('-'); in addClassSpecifications() local782 int periodIndex = comments.indexOf('.', dashIndex); in addClassSpecifications()783 String panelName = comments.substring(0, dashIndex).trim(); in addClassSpecifications()784 … String optionName = comments.substring(dashIndex + 1, periodIndex).replace('_', '.').trim(); in addClassSpecifications()