Home
last modified time | relevance | path

Searched refs:word_boundary (Results 1 – 20 of 20) sorted by relevance

/external/icu/icu4c/source/data/translit/
Dpl_FONIPA_ja.txt11 $word_boundary = [-\ $] ;
49 b } $word_boundary → プ;
72 d } $word_boundary → ト;
93 h } $word_boundary → ;
103 g } $word_boundary → ク;
211 #tʂ } $word_boundary → チ;
246 t \u0361 ʂ } $word_boundary → チ;
260 v } $word_boundary → フ;
285 ʐ } $word_boundary → ジュ;
302 z } $word_boundary → ス;
Dcs_FONIPA_ja.txt10 $word_boundary = [-\ $] ;
46 b } $word_boundary → プ;
60 d } $word_boundary → ト;
75 h } $word_boundary → ;
83 g } $word_boundary → ク; # not backed by data
203 v } $word_boundary → フ;
220 z } $word_boundary → ス;
Dru_ja.txt10 $word_boundary = [-\ $];
19 $vowel { го } $word_boundary → во;
Des_FONIPA_ja.txt10 $word_boundary = [-\ $] ;
51 d } $word_boundary → ー;
99 m } $word_boundary → ム ;
Des_FONIPA_zh.txt11 $word_boundary = [-\ $];
35 [^$word_boundary] { m } [bp] → n; # GB/T 17693.5-2009, 5.3.2
130 d } $word_boundary → ;
162 f } $word_boundary → 夫 ;
524 $word_boundary { 东 → 栋 ;
525 $word_boundary { 南 → 楠 ;
526 $word_boundary { 西 → 锡 ;
527 海 } $word_boundary → 亥 ;
Dro_FONIPA_ja.txt10 $word_boundary = [-\ $] ;
21 ul } $word_boundary → u ;
/external/rust/crates/regex/tests/
Dtest_backtrack.rs57 mod word_boundary; module
Dtest_backtrack_bytes.rs56 mod word_boundary; module
Dtest_nfa.rs51 mod word_boundary; module
Dtest_nfa_bytes.rs56 mod word_boundary; module
Dtest_backtrack_utf8bytes.rs59 mod word_boundary; module
Dtest_nfa_utf8bytes.rs55 mod word_boundary; module
Dtest_default_bytes.rs76 mod word_boundary; module
Dbytes.rs12 mat!(word_boundary, r"(?-u) \b", " δ", None);
Dtest_default.rs61 mod word_boundary; module
/external/rust/crates/regex/src/
Ddfa.rs403 word_boundary: bool, field
928 flags.word_boundary = true; in exec_byte()
1095 WordBoundaryAscii if flags.word_boundary => { in follow_epsilons()
1103 WordBoundary if flags.word_boundary => { in follow_epsilons()
1384 | ((empty_flags.word_boundary as u8) << 4) in start_state()
1428 empty_flags.word_boundary = true; in start_flags()
1458 empty_flags.word_boundary = true; in start_flags_reverse()
/external/rust/crates/regex-syntax/src/hir/
Dmod.rs325 pub fn word_boundary(word_boundary: WordBoundary) -> Hir { in word_boundary() method
339 info.set_match_empty(word_boundary.is_negated()); in word_boundary()
341 if let WordBoundary::AsciiNegate = word_boundary { in word_boundary()
344 Hir { kind: HirKind::WordBoundary(word_boundary), info: info } in word_boundary()
Dtranslate.rs751 Hir::word_boundary(if unicode { in hir_assertion()
758 Hir::word_boundary(if unicode { in hir_assertion()
1355 Hir::word_boundary(wb) in hir_word()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dre2.h674 bool word_boundary() const { return word_boundary_; } in word_boundary() function
Dre2.cc162 if (word_boundary()) in ParseFlags()