Searched refs:isVowel (Results 1 – 7 of 7) sorted by relevance
/external/apache-http/src/org/apache/commons/codec/language/ |
D | Metaphone.java | 179 isVowel(local,2) ) { // CH consonant -> K consonant in metaphone() 204 !isVowel(local,n+2)) { in metaphone() 233 if (isVowel(local,n+1)) { in metaphone() 295 isVowel(local,n+1)) { in metaphone() 314 private boolean isVowel(StringBuffer string, int index) { in isVowel() method in Metaphone
|
D | DoubleMetaphone.java | 429 if (index == 1 && isVowel(charAt(value, 0)) && !slavoGermanic) { in handleG() 481 if (index > 0 && !isVowel(charAt(value, index - 1))) { in handleGH() 516 if ((index == 0 || isVowel(charAt(value, index - 1))) && in handleH() 517 isVowel(charAt(value, index + 1))) { in handleH() 544 } else if (isVowel(charAt(value, index - 1)) && !slavoGermanic && in handleJ() 684 if (index == 0 && !isVowel(charAt(value, 3)) && charAt(value, 3) != 'W') { in handleSC() 739 if (index == 0 && (isVowel(charAt(value, index + 1)) || in handleW() 741 if (isVowel(charAt(value, index + 1))) { in handleW() 749 } else if ((index == value.length() - 1 && isVowel(charAt(value, index - 1))) || in handleW() 818 } else if (isVowel(charAt(value, index - 2))) { in conditionC0() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | transrt.cpp | 176 static UBool isVowel(UChar c); 218 firstIsVowel = isVowel(c); in is() 234 UBool LegalGreek::isVowel(UChar c) { in isVowel() function in LegalGreek
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | RoundTripTest.java | 1029 public static boolean isVowel(char c) { in isVowel() method in RoundTripTest.LegalGreek 1076 firstIsVowel = isVowel(c); in is()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | RoundTripTest.java | 1026 public static boolean isVowel(char c) { in isVowel() method in RoundTripTest.LegalGreek 1073 firstIsVowel = isVowel(c); in is()
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 157160 static int isVowel(const char*); 157168 return z[1]==0 || isVowel(z + 1); 157170 static int isVowel(const char *z){ 157200 while( isVowel(z) ){ z++; } 157210 while( isVowel(z) ){ z++; } 157214 while( isVowel(z) ){ z++; } 157224 while( isVowel(z) ){ z++; } 157228 while( isVowel(z) ){ z++; } 157264 isVowel(z+1) &&
|
/external/sqlite/dist/ |
D | sqlite3.c | 157188 static int isVowel(const char*); 157196 return z[1]==0 || isVowel(z + 1); 157198 static int isVowel(const char *z){ 157228 while( isVowel(z) ){ z++; } 157238 while( isVowel(z) ){ z++; } 157242 while( isVowel(z) ){ z++; } 157252 while( isVowel(z) ){ z++; } 157256 while( isVowel(z) ){ z++; } 157292 isVowel(z+1) &&
|