Searched defs:trail (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DIntTrie.java97 * This method does not guarantee correct results for trail surrogates.
109 * and a trail surrogate.
112 * @param trail surrogate
113 * @return trie data value associated with the trail character
116 public final int getTrailValue(int leadvalue, char trail) argument
125 (char)(trail & SURROGATE_MASK_))];
154 * @param trail trailing surrogate
158 protected final int getSurrogateOffset(char lead, char trail) argument
164 // get fold position for the next trail surrogate
167 // get the real data from the folded lead/trail unit
[all...]
H A DUCharacter.java263 * @param trail the trail char
269 public static int getCodePoint(char lead, char trail) argument
271 if (UTF16.isLeadSurrogate(lead) && UTF16.isTrailSurrogate(trail)) {
272 return UCharacterProperty.getRawSupplementary(lead, trail);
419 // trail forms the ends of it.
H A DCharTrie.java215 * This method does not guarantee correct results for trail surrogates.
228 * @param trail a trail surrogate
231 public final char getSurrogateValue(char lead, char trail) argument
233 int offset = getSurrogateOffset(lead, trail);
242 * and a trail surrogate.</p>
246 * @param trail surrogate
247 * @return trie data value associated with the trail character
250 public final char getTrailValue(int leadvalue, char trail) argument
259 (char)(trail
292 getSurrogateOffset(char lead, char trail) argument
[all...]
H A DTrie.java189 /** Number of bits of a trail surrogate that are used in index table lookups. */
193 * Same as number of index entries for 1024 trail surrogates,
230 * @param trail trailing surrogate
233 protected abstract int getSurrogateOffset(char lead, char trail); argument
256 * surrogates lead and trail. Then we would have to call getRawOffset()
318 // trail forms the ends of it.
H A DUCharacterProperty.java141 // trail forms the ends of it.
211 * @param trail trailing surrogate character
214 public static int getRawSupplementary(char lead, char trail) argument
216 return (lead << LEAD_SURROGATE_SHIFT_) + trail + SURROGATE_OFFSET_;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingQueue.java521 * Unlinks interior Node p with predecessor trail.
523 void unlink(Node<E> p, Node<E> trail) { argument
528 trail.next = p.next;
530 last = trail;
550 for (Node<E> trail = head, p = trail.next;
552 trail = p, p = p.next) {
554 unlink(p, trail);
846 for (Node<E> trail = head, p = trail
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DHangulLayoutEngine.cpp136 static le_int32 compose(LEUnicode lead, LEUnicode vowel, LEUnicode trail, LEUnicode &syllable) argument
140 le_int32 tIndex = trail - TJMO_FIRST;
157 static le_int32 decompose(LEUnicode syllable, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument
167 trail = TJMO_FIRST + (sIndex % TJMO_COUNT);
169 if (trail == TJMO_FIRST) {
176 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) argument
180 trail = TJMO_FIRST;
193 trail = ch;
197 le_int32 c = decompose(ch, lead, vowel, trail);
207 trail
275 LEUnicode trail = 0; local
335 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST; local
[all...]

Completed in 28 milliseconds