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

1 2 34 5 6 7 8 91011

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Trie.java 32 * for lead surrogate codepoints, while the fromLead() method get special
33 * "folded" offsets for lead surrogate code units if there is relevant data
40 * that offset from the folded value for the lead surrogate unit.</p>
62 * Called by android.icu.impl.Trie to extract from a lead surrogate's
64 * the index array offset of the indexes for that lead surrogate.
67 * @return data offset or 0 if there is no data for the lead surrogate
197 * Lead surrogate code points' index displacement in the index array.
227 * Number of index (stage 1) entries per lead surrogate.
264 * @param lead lead surrogat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie.java 31 * for lead surrogate codepoints, while the fromLead() method get special
32 * "folded" offsets for lead surrogate code units if there is relevant data
39 * that offset from the folded value for the lead surrogate unit.</p>
61 * Called by com.ibm.icu.impl.Trie to extract from a lead surrogate's
63 * the index array offset of the indexes for that lead surrogate.
66 * @return data offset or 0 if there is no data for the lead surrogate
196 * Lead surrogate code points' index displacement in the index array.
226 * Number of index (stage 1) entries per lead surrogate.
263 * @param lead lead surrogat
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetASCII.java 326 * if the character is a lead surrogate, we need to call encodeTrail to attempt to match
334 private final CoderResult encodeTrail(CharBuffer source, char lead, boolean flush) {
339 CoderResult cr = handleSurrogates(source, lead);
CharsetSCSU.java 621 private char lead, trail; field in class:CharsetSCSU.CharsetEncoderSCSU
    [all...]
  /external/icu/icu4c/source/i18n/
collationdatabuilder.cpp     [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 438 String lead = res[0]; local
541 if (!lead.equals("//")) {
543 line = line.substring(lead.length());
610 * leadKeyValue contains the three strings lead, key, and value.
611 * 'lead' is the portion before the #ifdef directive. 'key' is
    [all...]
  /external/icu/icu4c/source/common/
utrie2.h 44 * - Still separate data for lead surrogate code _units_ vs. code _points_,
45 * but the lead surrogate code unit values are not required any more
50 * in the lead surrogate data for the associated supplementary code points.
58 * Starting with ICU 60, C0 and C1 are not recognized as UTF-8 lead bytes any more at all,
505 * A UTrie2 stores separate values for lead surrogate code _units_ vs. code _points_.
512 * code points associated with a lead surrogate.
514 * lead surrogate code _unit_, with utrie2_set32ForLeadSurrogateCodeUnit().
518 * data and the code unit is a lead surrogate, then check if a trail surrogate
521 * or UTRIE2_GET32_FROM_SUPP(); otherwise reset the lead
524 * If there is only trivial data for lead and trail surrogates, then processin
    [all...]
normalizer2impl.h 47 JAMO_L_BASE=0x1100, /* "lead" jamo */
307 * Might skip only a lead surrogate rather than the whole surrogate pair if none of
308 * the supplementary code points associated with the lead surrogate have non-zero FCD data.
350 /** Returns TRUE if the single-or-lead code unit c might have non-zero FCD data. */
351 UBool singleLeadMightHaveNonZeroFCD16(UChar32 lead) const {
352 // 0<=lead<=0xffff
353 uint8_t bits=smallFCD[lead>>8];
355 return (UBool)((bits>>((lead>>5)&7))&1);
759 * Gets the 16-bit FCD value (lead & trail CCs) for a code point, for u_getIntPropertyValue().
    [all...]
  /external/icu/icu4c/source/samples/uciter8/
uit_len8.c 454 UChar lead=U16_LEAD(iter->reservedField); local
460 return lead;
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
e.go 82 // Recursive type declarations must not lead to endless recursion.
  /prebuilts/go/darwin-x86/src/math/
pow.go 97 // yi is a large even int that will lead to overflow (or underflow to 0)
  /prebuilts/go/linux-x86/src/go/doc/testdata/
e.go 82 // Recursive type declarations must not lead to endless recursion.
  /prebuilts/go/linux-x86/src/math/
pow.go 97 // yi is a large even int that will lead to overflow (or underflow to 0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 380 for pre or a pointer to a constant. lead and tail
383 char *lead = ""; local
410 lead = "(";
415 len = strlen(lead) + strlen(re) + strlen(im) + strlen(tail) + 2;
421 PyOS_snprintf(buf, len, "%s%s%sj%s", lead, re, im, tail);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 376 for pre or a pointer to a constant. lead and tail
379 char *lead = ""; local
406 lead = "(";
411 len = strlen(lead) + strlen(re) + strlen(im) + strlen(tail) + 2;
417 PyOS_snprintf(buf, len, "%s%s%sj%s", lead, re, im, tail);
    [all...]
  /external/python/cpython2/Objects/
complexobject.c 380 for pre or a pointer to a constant. lead and tail
383 char *lead = ""; local
410 lead = "(";
415 len = strlen(lead) + strlen(re) + strlen(im) + strlen(tail) + 2;
421 PyOS_snprintf(buf, len, "%s%s%sj%s", lead, re, im, tail);
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue.go 23 // If several sigsends and signal_recv execute concurrently, it can lead to
24 // unnecessary rechecks of sig.mask, but it cannot lead to missed signals
  /prebuilts/go/linux-x86/src/runtime/
sigqueue.go 23 // If several sigsends and signal_recv execute concurrently, it can lead to
24 // unnecessary rechecks of sig.mask, but it cannot lead to missed signals
  /external/icu/android_icu4j/src/main/java/android/icu/math/
BigDecimal.java 2098 int lead = 0; local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java 2146 int lead = 0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java 2152 int lead = 0; local
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
conversions.go 71 // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
  /prebuilts/go/linux-x86/src/go/types/
conversions.go 71 // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
  /external/python/cpython3/Objects/
complexobject.c 343 for pre or a pointer to a constant. lead and tail
346 char *lead = ""; local
376 lead = "(";
379 result = PyUnicode_FromFormat("%s%s%sj%s", lead, re, im, tail);
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestCharset.java 67 char lead = UTF16.getLeadSurrogate(c); local
69 if(!UTF16.isLeadSurrogate(lead)){
70 errln("lead is not lead!"+lead+" for cp: \\U"+Integer.toHexString(c));
77 us.put(lead);
79 bs1.put((byte)(lead>>8));
80 bs1.put((byte)(lead&0xFF));
84 bs2.put((byte)(lead&0xFF));
85 bs2.put((byte)(lead>>8))
160 char lead = UTF16.getLeadSurrogate(c); local
417 String lead = "\\ud888"; local
774 String lead = "\\ud835"; local
    [all...]

Completed in 731 milliseconds

1 2 34 5 6 7 8 91011