Searched refs:LABEL_END (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeySpecParser.java57 private static final char LABEL_END = '|'; field in class:KeySpecParser
102 final int end = moreKeySpec.indexOf(LABEL_END, start);
104 throw new KeySpecParserError(LABEL_END + " at " + start + ": " + moreKeySpec);
114 } else if (c == LABEL_END) {
140 throw new KeySpecParserError("Multiple " + LABEL_END + ": " + moreKeySpec);
142 return parseEscape(moreKeySpec.substring(end + /* LABEL_END */1));
173 throw new KeySpecParserError("Multiple " + LABEL_END + ": " + moreKeySpec);
208 final int end = moreKeySpec.indexOf(LABEL_END, PREFIX_ICON.length());

Completed in 219 milliseconds