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

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 27 public class StrSegment {
38 public StrSegment() {
47 public StrSegment(String str) {
56 public StrSegment(char[] chars) {
67 public StrSegment(String str, int from, int to) {
StrSegmentClause.java 20 * The container class of {@link StrSegment} which includes a clause information for Japanese IME.
24 public class StrSegmentClause extends StrSegment {
ComposingText.java 61 protected ArrayList<StrSegment>[] mStringLayer;
72 mStringLayer[i] = new ArrayList<StrSegment>();
85 for (Iterator<StrSegment> it = mStringLayer[i].iterator(); it.hasNext();) {
86 StrSegment ss = it.next();
94 * Get a {@link StrSegment} at the position specified.
101 public StrSegment getStrSegment(int layer, int pos) {
103 ArrayList<StrSegment> strLayer = mStringLayer[layer];
127 ArrayList<StrSegment> strLayer = mStringLayer[layer];
130 StrSegment ss = strLayer.get(i);
164 ArrayList<StrSegment> strUplayer = mStringLayer[uplayer]
    [all...]
OpenWnnJAJP.java     [all...]
OpenWnnEN.java 215 StrSegment seg = new StrSegment(chars);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
RomkanFullKatakana.java 21 import jp.co.omronsoft.openwnn.StrSegment;
173 StrSegment[] str = new StrSegment[MAX_LENGTH];
192 StrSegment[] out;
194 out = new StrSegment[1];
195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to);
198 out = new StrSegment[2];
199 out[0] = new StrSegment(match.substring(0, match.length() - 1),
201 out[1] = new StrSegment(match.substring(match.length() - 1),
Romkan.java 169 StrSegment[] str = new StrSegment[MAX_LENGTH];
188 StrSegment[] out;
190 out = new StrSegment[1];
191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to);
194 out = new StrSegment[2];
195 out[0] = new StrSegment(match.substring(0, match.length() - 1),
197 out[1] = new StrSegment(match.substring(match.length() - 1),

Completed in 1614 milliseconds