Home | History | Annotate | Download | only in language

Lines Matching refs:isVowel

429             if (index == 1 && isVowel(charAt(value, 0)) && !slavoGermanic) {
481 if (index > 0 && !isVowel(charAt(value, index - 1))) {
516 if ((index == 0 || isVowel(charAt(value, index - 1))) &&
517 isVowel(charAt(value, index + 1))) {
544 } else if (isVowel(charAt(value, index - 1)) && !slavoGermanic &&
684 if (index == 0 && !isVowel(charAt(value, 3)) && charAt(value, 3) != 'W') {
739 if (index == 0 && (isVowel(charAt(value, index + 1)) ||
741 if (isVowel(charAt(value, index + 1))) {
749 } else if ((index == value.length() - 1 && isVowel(charAt(value, index - 1))) ||
818 } else if (isVowel(charAt(value, index - 2))) {
899 private boolean isVowel(char ch) {