Home | History | Annotate | Download | only in language

Lines Matching defs:isVowel

424             if (index == 1 && isVowel(charAt(value, 0)) && !slavoGermanic) {
476 if (index > 0 && !isVowel(charAt(value, index - 1))) {
511 if ((index == 0 || isVowel(charAt(value, index - 1))) &&
512 isVowel(charAt(value, index + 1))) {
539 } else if (isVowel(charAt(value, index - 1)) && !slavoGermanic &&
679 if (index == 0 && !isVowel(charAt(value, 3)) && charAt(value, 3) != 'W') {
734 if (index == 0 && (isVowel(charAt(value, index + 1)) ||
736 if (isVowel(charAt(value, index + 1))) {
744 } else if ((index == value.length() - 1 && isVowel(charAt(value, index - 1))) ||
813 } else if (isVowel(charAt(value, index - 2))) {
894 private boolean isVowel(char ch) {