Home
last modified time | relevance | path

Searched refs:dashIndex (Results 1 – 3 of 3) sorted by relevance

/external/skia/tools/
Dcreate_test_font.cpp69 int dashIndex = fam.find("-"); in font_header() local
70 if (dashIndex < 0) { in font_header()
73 fam.writable_str()[dashIndex] = '_'; in font_header()
/external/libjpeg-turbo/java/
DTJBench.java708 int dashIndex = argv[1].indexOf('-'); in main() local
709 if (dashIndex > 0 && argv[1].length() > dashIndex + 1) { in main()
711 maxQual = Integer.parseInt(argv[1].substring(dashIndex + 1)); in main()
/external/proguard/src/proguard/gui/
DProGuardGUI.java781 int dashIndex = comments.indexOf('-'); in addClassSpecifications() local
782 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()