Home
last modified time | relevance | path

Searched refs:isVowel (Results 1 – 6 of 6) sorted by relevance

/external/apache-http/src/org/apache/commons/codec/language/
DMetaphone.java179 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
DDoubleMetaphone.java429 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/
Dtransrt.cpp174 static UBool isVowel(UChar c);
216 firstIsVowel = isVowel(c); in is()
232 UBool LegalGreek::isVowel(UChar c) { in isVowel() function in LegalGreek
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRoundTripTest.java999 public static boolean isVowel(char c) { in isVowel() method in RoundTripTest.LegalGreek
1045 firstIsVowel = isVowel(c); in is()
/external/sqlite/dist/
Dsqlite3.c141287 static int isVowel(const char*);
141295 return z[1]==0 || isVowel(z + 1);
141297 static int isVowel(const char *z){
141327 while( isVowel(z) ){ z++; }
141337 while( isVowel(z) ){ z++; }
141341 while( isVowel(z) ){ z++; }
141351 while( isVowel(z) ){ z++; }
141355 while( isVowel(z) ){ z++; }
141391 isVowel(z+1) &&
/external/sqlite/dist/orig/
Dsqlite3.c141257 static int isVowel(const char*);
141265 return z[1]==0 || isVowel(z + 1);
141267 static int isVowel(const char *z){
141297 while( isVowel(z) ){ z++; }
141307 while( isVowel(z) ){ z++; }
141311 while( isVowel(z) ){ z++; }
141321 while( isVowel(z) ){ z++; }
141325 while( isVowel(z) ){ z++; }
141361 isVowel(z+1) &&