Home | History | Annotate | Download | only in language

Lines Matching refs:str

159      * @param str
167 private char getMappingCode(String str, int index) {
168 char mappedChar = this.map(str.charAt(index));
171 char hwChar = str.charAt(index - 1);
173 char preHWChar = str.charAt(index - 2);
243 * @param str
249 public String soundex(String str) {
250 if (str == null) {
253 str = SoundexUtils.clean(str);
254 if (str.length() == 0) {
255 return str;
260 out[0] = str.charAt(0);
261 last = getMappingCode(str, 0);
262 while ((incount < str.length()) && (count < out.length)) {
263 mapped = getMappingCode(str, incount++);