Home | History | Annotate | Download | only in language

Lines Matching defs:mapped

97      * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
98 * letter is mapped. This implementation contains a default map for US_ENGLISH
116 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
117 * letter is mapped. This implementation contains a default map for US_ENGLISH
137 * if a character is not mapped
153 * if a character is not mapped
170 * if the character is not mapped
214 * Thrown if <code>ch</code> is not mapped.
219 throw new IllegalArgumentException("The character is not mapped: " + ch);
252 * if a character is not mapped
263 char last, mapped;
268 mapped = getMappingCode(str, incount++);
269 if (mapped != 0) {
270 if ((mapped != '0') && (mapped != last)) {
271 out[count++] = mapped;
273 last = mapped;