Home | History | Annotate | Download | only in language

Lines Matching defs:mapped

92      * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
93 * letter is mapped. This implementation contains a default map for US_ENGLISH
111 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
112 * letter is mapped. This implementation contains a default map for US_ENGLISH
132 * if a character is not mapped
148 * if a character is not mapped
165 * if the character is not mapped
209 * Thrown if <code>ch</code> is not mapped.
214 throw new IllegalArgumentException("The character is not mapped: " + ch);
247 * if a character is not mapped
258 char last, mapped;
263 mapped = getMappingCode(str, incount++);
264 if (mapped != 0) {
265 if ((mapped != '0') && (mapped != last)) {
266 out[count++] = mapped;
268 last = mapped;