Searched defs:tail (Results 1 - 3 of 3) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnSentence.java117 * @param tail The following sentence
119 public WnnSentence(WnnClause head, WnnSentence tail) { argument
120 if (tail == null) {
133 this.candidate = head.candidate + tail.candidate;
134 this.stroke = head.stroke + tail.stroke;
135 this.frequency = head.frequency + tail.frequency;
136 this.partOfSpeech = new WnnPOS(head.partOfSpeech.left, tail.partOfSpeech.right);
141 this.elements.addAll(tail.elements);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java59 protected int tail; field in class:UnboundedFifoByteBuffer
86 tail = 0;
97 if (tail < head) {
98 size = buffer.length - head + tail;
100 size = tail - head;
127 for (int i = head; i != tail;) {
140 tail = j;
143 buffer[tail] = b;
144 tail++;
145 if (tail >
[all...]
/packages/inputmethods/PinyinIME/jni/include/
H A Duserdict.h257 uint16 head, tail; member in struct:ime_pinyin::UserDict::UserDictMissCache
265 uint16 head, tail; member in struct:ime_pinyin::UserDict::UserDictCache

Completed in 164 milliseconds