Home
last modified time | relevance | path

Searched refs:vowels (Results 1 – 25 of 1253) sorted by relevance

12345678910>>...51

/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/lang/
H A Dmorph_en.py606 vowels = "aeiouy" variable
627 (r"[%s].*(ous)" % vowels, "ly,ness"),
654 (r"[%s].*ment(s)" % vowels, ",*"),
656 (r"[%s].*er(s)" % vowels, ",*"),
658 (r"[%s].*[%s][%s][bdglmnprt](s)" % (vowels, cons, vowels), ",*"),
662 (r"[%s].*ing(s)" % vowels, ",*"),
664 (r"[%s].*ll(s)" % vowels, ",*"),
668 (r"[%s].*[%s].*(s)" % (vowels, cons), ",*"),
827 (r"[%s].*dg(ment)" % vowels, "*e"),
852 (r"[%s].*ful(ly)" % vowels, ",*"),
[all …]
H A Ddmetaphone.py13 vowels = frozenset("AEIOUY") variable
34 if ch in vowels:
48 … if (pos > (first + 1) and text[pos - 2] not in vowels and text[pos - 1:pos + 2] == 'ACH' and \
133 if pos > first and text[pos - 1] not in vowels:
155 if pos == (first + 1) and text[first] in vowels and not slavo_germanic:
193 if (pos == first or text[pos - 1] in vowels) and text[pos + 1] in vowels:
208 if text[pos - 1] in vowels and not slavo_germanic \
315 … if pos == first and text[first + 3] not in vowels and text[first + 3] != 'W':
357 elif pos == first and (text[pos + 1] in vowels or text[pos:pos + 2] == 'WH'):
359 if text[pos + 1] in vowels:
[all …]
/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/lang/snowball/
H A Dbases.py12 def _r1_scandinavian(self, word, vowels): argument
35 if word[i] not in vowels and word[i - 1] in vowels:
53 def _r1r2_standard(self, word, vowels): argument
84 if word[i] not in vowels and word[i - 1] in vowels:
89 if r1[i] not in vowels and r1[i - 1] in vowels:
95 def _rv_standard(self, word, vowels): argument
119 if word[1] not in vowels:
121 if word[i] in vowels:
125 elif word[:2] in vowels:
127 if word[i] not in vowels:
/dports/editors/yudit/yudit-3.0.7/bin/kmap/
H A DGurmukhi.kmap.pl120 %vowels = (
144 foreach $vowel (sort keys %vowels) {
145 printf ("\"%s%s=%s%s\",\n",$cons,$vowel,$consonants{$cons},$vowels{$vowel});
154 foreach $vowel (sort keys %vowels) {
155 …printf ("\"%s%s%s=%s%s%s\",\n",$doubles{$cons},$cons,$vowel,$mod,$consonants{$cons},$vowels{$vowel…
164 foreach $vowel (sort keys %vowels) {
165 …printf ("\"%s%s%s=%s%s%s\",\n",$nasals{$cons},$cons,$vowel,$mod,$consonants{$cons},$vowels{$vowel}…
168 foreach $vowel (sort keys %vowels) {
169 …("\"%s%s%s=%s%s%s\",\n",$alt{$nasals{$cons}},$cons,$vowel,$mod,$consonants{$cons},$vowels{$vowel});
/dports/textproc/groff/groff-1.22.4/contrib/gpinyin/
H A Dsubs.pl440 my $vowels = $2;
442 unless ( $vowels ) {
455 if ( $vowels =~ /^[aeiouAEIOU]$/ ) { # only 1 vowel
457 $vowel = $vowels;
458 } elsif ( $vowels eq 'ü' ) {
459 $vowel = $vowels;
460 } elsif ( $vowels eq 'Ü' ) {
461 $vowel = $vowels;
462 } elsif ( $vowels =~ /^([^aeAE]*)([aeAE])(.*)$/ ) { # a, A, e or E
466 } elsif ( $vowels =~ /^([^oO]*)(oO)(.*)$/ ) { # o or O
[all …]
/dports/devel/py-pyparsing2/pyparsing-2.4.7/examples/
H A DlistAllMatches.py19 vowels = oneOf(list("aeiouy"), caseless=True)("vowels") variable
22 letters = OneOrMore(cons | vowels | other) + StringEnd()
26 print(results.vowels)
34 vowels = oneOf(list("aeiouy"), caseless=True)("vowels*") variable
38 letters = OneOrMore(cons | vowels | other)
44 print(results.vowels)
45 print(sorted(set(results.vowels)))
/dports/devel/py-pyparsing/pyparsing-3.0.6/examples/
H A DlistAllMatches.py19 vowels = oneOf(list("aeiouy"), caseless=True)("vowels") variable
22 letters = OneOrMore(cons | vowels | other) + StringEnd()
26 print(results.vowels)
34 vowels = oneOf(list("aeiouy"), caseless=True)("vowels*") variable
38 letters = OneOrMore(cons | vowels | other)
44 print(results.vowels)
45 print(sorted(set(results.vowels)))
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/lang/clang-mesa/clang-13.0.1.src/test/CXX/expr/expr.const/
H A Dp3-0x.cpp20 constexpr char vowels[] = "aeiou"; in a() local
22 case vowels[0]: in a()
23 case vowels[1]: in a()
24 case vowels[2]: in a()
25 case vowels[3]: in a()
26 case vowels[4]: in a()
27 static_assert(!vowels[5], "unexpected number of vowels"); in a()
/dports/textproc/redet/redet-8.26/
H A DSampleClasses.utf81 +voc ɑɒɔɘɚɛɜɝɤɨɩɪɯɵɶɷʉʊʌʏʚeiouæy The vowels
6 +back ou The back vowels
7 -back iey The front vowels
8 +hi iuyɯ The high vowels
/dports/lang/ruby26/ruby-2.6.9/ext/digest/bubblebabble/
H A Dbubblebabble.c27 static const char vowels[] = { in bubblebabble_str_new() local
53 p[j++] = vowels[seed % 6]; in bubblebabble_str_new()
55 p[j++] = vowels[seed / 6]; in bubblebabble_str_new()
60 p[j++] = vowels[(((byte1 >> 6) & 3) + seed) % 6]; in bubblebabble_str_new()
62 p[j++] = vowels[((byte1 & 3) + (seed / 6)) % 6]; in bubblebabble_str_new()

12345678910>>...51