HomeSort by relevance Sort by last modified time
    Searched defs:sLength (Results 1 - 5 of 5) sorted by null

  /external/icu4c/i18n/
decnumstr.cpp 44 int32_t sLength = str.length();
45 if (ensureCapacity(fLength + sLength + 1, status) == FALSE) {
48 uprv_memcpy(&fText[fLength], str.data(), sLength);
49 fLength += sLength;
  /external/icu4c/common/unicode/
uniset.h     [all...]
  /external/icu4c/test/cintltst/
ucsdetst.c 123 int32_t byteLength = 0, sLength = 0, dLength = 0;
130 sLength = u_unescape(ss, s, sizeof(ss));
131 bytes = extractBytes(s, sLength, "UTF-8", &byteLength);
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
148 if (u_strCompare(detected, dLength, s, sLength, FALSE) != 0) {
284 int32_t sLength = 0;
292 sLength = u_unescape(ss, s, sizeof(ss));
293 bytes = extractBytes(s, sLength, "ISO-8859-1", &byteLength);
bocu1tst.c 736 int32_t c, i, sLength;
738 i=sLength=0;
746 UTF_APPEND_CHAR_UNSAFE(s, sLength, c);
749 return sLength;
  /external/icu4c/test/intltest/
csdetest.cpp 127 int32_t sLength = source.length();
130 length = source.extract(0, sLength, NULL, codepage);
134 source.extract(0, sLength, bytes, codepage);
276 int32_t byteLength = 0, sLength = s.length();
280 UChar *detected = NEW_ARRAY(UChar, sLength);
290 ucsdet_getUChars(match, detected, sLength, &status);
292 if (s.compare(detected, sLength) != 0) {

Completed in 282 milliseconds