HomeSort by relevance Sort by last modified time
    Searched refs:isConsonant (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c 136 ** isConsonant() and isVowel() determine if their first character in
149 static int isConsonant(const char *z){
165 return isConsonant(z + 1);
190 while( isConsonant(z) ){ z++; }
200 while( isConsonant(z) ){ z++; }
204 while( isConsonant(z) ){ z++; }
214 while( isConsonant(z) ){ z++; }
218 while( isConsonant(z) ){ z++; }
226 while( isConsonant(z) ){ z++; }
237 return isConsonant(z) && z[0]==z[1] && isConsonant(z+1)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_porter.c 135 ** isConsonant() and isVowel() determine if their first character in
148 static int isConsonant(const char *z){
164 return isConsonant(z + 1);
189 while( isConsonant(z) ){ z++; }
199 while( isConsonant(z) ){ z++; }
203 while( isConsonant(z) ){ z++; }
213 while( isConsonant(z) ){ z++; }
217 while( isConsonant(z) ){ z++; }
225 while( isConsonant(z) ){ z++; }
236 return isConsonant(z) && z[0]==z[1] && isConsonant(z+1)
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c 138 ** isConsonant() and isVowel() determine if their first character in
151 static int isConsonant(const char *z){
167 return isConsonant(z + 1);
192 while( isConsonant(z) ){ z++; }
202 while( isConsonant(z) ){ z++; }
206 while( isConsonant(z) ){ z++; }
216 while( isConsonant(z) ){ z++; }
220 while( isConsonant(z) ){ z++; }
228 while( isConsonant(z) ){ z++; }
239 return isConsonant(z) && z[0]==z[1]
    [all...]
  /external/icu/icu4c/source/layout/
IndicReordering.h 111 inline le_bool isConsonant(LEUnicode ch) const;
128 inline static le_bool isConsonant(CharClass charClass);
206 inline le_bool IndicClassTable::isConsonant(CharClass charClass)
288 inline le_bool IndicClassTable::isConsonant(LEUnicode ch) const
290 return isConsonant(getCharClass(ch));
IndicReordering.cpp 606 if ( IndicClassTable::isConsonant(charClass) ) {
769 while (lastConsonant > baseLimit && !classTable->isConsonant(chars[lastConsonant])) {
801 if (IndicClassTable::isConsonant(charClass)) {
860 if (IndicClassTable::isConsonant(charClass)) {
    [all...]

Completed in 138 milliseconds