Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Email/src/org/apache/james/mime4j/decoder/
DUnboundedFifoByteBuffer.java59 protected int tail; field in UnboundedFifoByteBuffer
86 tail = 0; in UnboundedFifoByteBuffer()
97 if (tail < head) { in size()
98 size = buffer.length - head + tail; in size()
100 size = tail - head; in size()
127 for (int i = head; i != tail;) { in add()
140 tail = j; in add()
143 buffer[tail] = b; in add()
144 tail++; in add()
145 if (tail >= buffer.length) { in add()
[all …]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DWnnSentence.java119 public WnnSentence(WnnClause head, WnnSentence tail) { in WnnSentence() argument
120 if (tail == null) { in WnnSentence()
133 this.candidate = head.candidate + tail.candidate; in WnnSentence()
134 this.stroke = head.stroke + tail.stroke; in WnnSentence()
135 this.frequency = head.frequency + tail.frequency; in WnnSentence()
136 this.partOfSpeech = new WnnPOS(head.partOfSpeech.left, tail.partOfSpeech.right); in WnnSentence()
141 this.elements.addAll(tail.elements); in WnnSentence()
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
DBuilder.java193 Token tail = node.lastToken; in buildString() local
196 while (head != tail) { in buildString()
202 out.append(tail.image); in buildString()
/packages/inputmethods/PinyinIME/jni/include/
Duserdict.h257 uint16 head, tail; member
265 uint16 head, tail; member
/packages/inputmethods/PinyinIME/jni/share/
Duserdict.cpp1365 if (cache->head == cache->tail) in _get_lpis()
1380 if (i == cache->tail) in _get_lpis()
1394 uint16 next = cache->tail; in _get_lpis()
1413 cache->tail = next; in _get_lpis()
1422 if (cache->head == cache->tail) in _get_lpis()
1437 if (i == cache->tail) in _get_lpis()
1448 uint16 next = cache->tail; in _get_lpis()
1465 cache->tail = next; in _get_lpis()
/packages/apps/Settings/src/com/android/settings/applications/
DRunningState.java710 int tail = label.lastIndexOf('.'); in makeLabel() local
711 if (tail >= 0) { in makeLabel()
712 label = label.substring(tail+1, label.length()); in makeLabel()