Home
last modified time | relevance | path

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

/external/apache-http/src/org/apache/commons/codec/language/
DMetaphone.java174 isVowel(local,2) ) { // CH consonant -> K consonant in metaphone()
199 !isVowel(local,n+2)) { in metaphone()
228 if (isVowel(local,n+1)) { in metaphone()
290 isVowel(local,n+1)) { in metaphone()
309 private boolean isVowel(StringBuffer string, int index) { in isVowel() method in Metaphone
DDoubleMetaphone.java424 if (index == 1 && isVowel(charAt(value, 0)) && !slavoGermanic) { in handleG()
476 if (index > 0 && !isVowel(charAt(value, index - 1))) { in handleGH()
511 if ((index == 0 || isVowel(charAt(value, index - 1))) && in handleH()
512 isVowel(charAt(value, index + 1))) { in handleH()
539 } else if (isVowel(charAt(value, index - 1)) && !slavoGermanic && in handleJ()
679 if (index == 0 && !isVowel(charAt(value, 3)) && charAt(value, 3) != 'W') { in handleSC()
734 if (index == 0 && (isVowel(charAt(value, index + 1)) || in handleW()
736 if (isVowel(charAt(value, index + 1))) { in handleW()
744 } else if ((index == value.length() - 1 && isVowel(charAt(value, index - 1))) || in handleW()
813 } else if (isVowel(charAt(value, index - 2))) { in conditionC0()
[all …]
/external/icu4c/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/sqlite/dist/
Dsqlite3.c123879 static int isVowel(const char*);
123887 return z[1]==0 || isVowel(z + 1);
123889 static int isVowel(const char *z){
123919 while( isVowel(z) ){ z++; }
123929 while( isVowel(z) ){ z++; }
123933 while( isVowel(z) ){ z++; }
123943 while( isVowel(z) ){ z++; }
123947 while( isVowel(z) ){ z++; }
123983 isVowel(z+1) &&
/external/sqlite/dist/orig/
Dsqlite3.c123833 static int isVowel(const char*);
123841 return z[1]==0 || isVowel(z + 1);
123843 static int isVowel(const char *z){
123873 while( isVowel(z) ){ z++; }
123883 while( isVowel(z) ){ z++; }
123887 while( isVowel(z) ){ z++; }
123897 while( isVowel(z) ){ z++; }
123901 while( isVowel(z) ){ z++; }
123937 isVowel(z+1) &&