HomeSort by relevance Sort by last modified time
    Searched refs:trail (Results 76 - 100 of 152) sorted by null

1 2 34 5 6 7

  /external/icu/icu4c/source/i18n/
utf8collationiterator.cpp 51 // ASCII 00..7F; trail bytes 80..BF map to error values.
160 // ASCII 00..7F; trail bytes 80..BF map to error values.
249 UChar trail;
250 if(U16_IS_TRAIL(trail = normalized[pos])) { ++pos; }
251 return trail;
collationiterator.cpp 409 UChar trail; local
410 if(U16_IS_TRAIL(trail = handleGetTrailSurrogate())) {
411 c = U16_GET_SUPPLEMENTARY(c, trail);
    [all...]
  /external/opencv3/3rdparty/jinja2/
utils.py 20 '^(?P<lead>(?:%s)*)(?P<middle>.*?)(?P<trail>(?:%s)*)$' % (
205 lead, middle, trail = match.groups()
225 if lead + middle + trail != word:
226 words[i] = lead + middle + trail
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Trie.java 219 /** Number of bits of a trail surrogate that are used in index table lookups. */
223 * Same as number of index entries for 1024 trail surrogates,
260 * @param trail trailing surrogate
263 protected abstract int getSurrogateOffset(char lead, char trail);
286 * surrogates lead and trail. Then we would have to call getRawOffset()
348 // trail forms the ends of it.
  /external/icu/icu4c/source/common/
ucnv2022.cpp 1541 uint8_t trail; local
1723 UChar trail=(UChar) *source; local
2501 UChar trail=(UChar) *source; local
2973 UChar trail=(UChar) *source; local
    [all...]
ucnvbocu.cpp 66 /* adjust trail byte counts for the use of some C0 control byte values */
70 /* number of trail bytes */
144 * but are also used as trail bytes in difference encoding
152 * to trail byte values 0..19 (0..0x13) as used in the difference calculation.
153 * External byte values that are illegal as trail bytes are mapped to -1.
175 * from trail byte values 0..19 (0..0x13) as used in the difference calculation
486 UChar trail=*source; local
487 if(U16_IS_TRAIL(trail)) {
490 c=U16_GET_SUPPLEMENTARY(c, trail);
721 UChar trail=*source local
    [all...]
ucnv_ct.c 361 /*look ahead to find the trail surrogate*/
364 UChar trail=(UChar) *source; local
365 if(U16_IS_TRAIL(trail)) {
367 sourceChar=U16_GET_SUPPLEMENTARY(sourceChar, trail);
384 /* this is an unmatched trail code unit (2nd surrogate) */
ucnvlat1.c 273 UChar trail=*source; local
274 if(U16_IS_TRAIL(trail)) {
276 cp=U16_GET_SUPPLEMENTARY(cp, trail);
289 /* this is an unmatched trail code unit (2nd surrogate) */
363 * For Latin-1, adjust sourceLimit only for 1 trail byte because
utext.cpp 181 // never on the trail half of a surrogate pair.
203 UChar32 trail = 0; local
206 // The trail surrogate is in the same chunk.
207 trail = ut->chunkContents[ut->chunkOffset+1];
209 // The trail surrogate is in a different chunk.
211 // into the new chunk, get the trail surrogate, then revert the chunk back to the
214 // leading surrogate. The attempt to access the trail will fail, but
219 trail = ut->chunkContents[ut->chunkOffset];
229 if (U16_IS_TRAIL(trail)) {
230 supplementaryC = U16_GET_SUPPLEMENTARY(c, trail);
289 UChar32 trail = ut->chunkContents[ut->chunkOffset]; local
    [all...]
ucnvmbcs.cpp 279 * at least two states for the trail bytes:
280 * One trail byte state that results in code points, and one that only
3498 UChar trail=*source; local
3703 UChar trail=*source; local
3952 UChar trail=*source; local
4382 UChar trail=*source; local
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetISO2022.java 1665 short trail; local
1763 char trail = source.get(); local
2268 char trail = source.get(); local
2765 char trail = source.get(); local
    [all...]
CharsetCompoundText.java 380 /* look ahead to find the trail surrogate */
383 char trail = source.get(); local
385 if (UTF16.isTrailSurrogate(trail)) {
387 sourceChar = UCharacter.getCodePoint((char)sourceChar, trail);
404 /* this is an unmatched trail code unit (2nd surrogate) */
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie.java 218 /** Number of bits of a trail surrogate that are used in index table lookups. */
222 * Same as number of index entries for 1024 trail surrogates,
259 * @param trail trailing surrogate
262 protected abstract int getSurrogateOffset(char lead, char trail);
285 * surrogates lead and trail. Then we would have to call getRawOffset()
347 // trail forms the ends of it.
  /external/mesa3d/src/mapi/glapi/gen/
extension_helper.py 303 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:")
gl_procs.py 194 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:c")
gl_table.py 233 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:c:")
gl_x86-64_asm.py 318 (args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
remap_helper.py 175 (args, trail) = getopt.getopt(sys.argv[1:], "f:c:")
glX_doc.py 269 (args, trail) = getopt.getopt(sys.argv[1:], "f:")
gl_apitemp.py 313 (args, trail) = getopt.getopt(sys.argv[1:], "f:c")
glX_server_table.py 390 (args, trail) = getopt.getopt(sys.argv[1:], "f:m")
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 1436 Node trail = null; local
    [all...]
AbstractQueuedSynchronizer.java 1905 Node trail = null; local
    [all...]
  /external/icu/icu4c/source/samples/uciter8/
uit_len8.c 411 UChar trail=U16_TRAIL(iter->reservedField); local
416 return trail;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationIterator.java 410 * Returns the trail surrogate in that case and advances past it,
411 * if a trail surrogate follows the lead surrogate.
601 char trail; local
602 if(Character.isLowSurrogate(trail = handleGetTrailSurrogate())) {
603 c = Character.toCodePoint((char)c, trail);
    [all...]

Completed in 4340 milliseconds

1 2 34 5 6 7