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

  /external/icu/icu4c/source/common/
charstr.cpp 58 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) {
62 if(sLength<-1 || (s==NULL && sLength!=0)) {
66 if(sLength<0) {
67 sLength=uprv_strlen(s);
69 if(sLength>0) {
72 if(sLength>=(buffer.getCapacity()-len)) {
76 buffer[len+=sLength]=0;
79 sLength>=(buffer.getCapacity()-len)
83 return append(CharString(s, sLength, errorCode), errorCode)
    [all...]
charstr.h 50 CharString(const char *s, int32_t sLength, UErrorCode &errorCode) : len(0) {
52 append(s, sLength, errorCode);
85 CharString &append(const char *s, int32_t sLength, UErrorCode &status);
bytestrie.cpp 207 BytesTrie::next(const char *s, int32_t sLength) {
208 if(sLength<0 ? *s==0 : sLength==0) {
219 // Continue a linear-match node without rechecking sLength<0.
221 if(sLength<0) {
243 if(sLength==0) {
251 --sLength;
272 if(sLength<0) {
277 if(sLength==0) {
281 --sLength;
    [all...]
ucharstrie.cpp 176 UCharsTrie::next(const UChar *s, int32_t sLength) {
177 if(sLength<0 ? *s==0 : sLength==0) {
188 // Continue a linear-match node without rechecking sLength<0.
190 if(sLength<0) {
212 if(sLength==0) {
220 --sLength;
241 if(sLength<0) {
246 if(sLength==0) {
250 --sLength;
    [all...]
  /external/icu/icu4c/source/common/unicode/
uniset.h     [all...]
  /external/icu/icu4c/source/i18n/
collationfastlatin.cpp 812 const uint8_t *s8, int32_t &sIndex, int32_t sLength) {
816 if(i2 < sLength || sLength < 0) {
    [all...]
collationfastlatin.h 222 const uint8_t *s8, int32_t &sIndex, int32_t sLength);
227 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength);
msgfmt.cpp 194 void append(const UChar* s, const int32_t sLength) {
195 app.appendString(s, sLength);
196 len += sLength;
    [all...]
  /external/icu/icu4c/source/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 735 int32_t c, i, sLength;
737 i=sLength=0;
745 U16_APPEND_UNSAFE(s, sLength, c);
748 return sLength;
  /external/icu/icu4c/source/test/intltest/
csdetest.cpp 139 int32_t sLength = source.length();
142 length = source.extract(0, sLength, NULL, codepage);
146 source.extract(0, sLength, bytes, codepage);
327 int32_t byteLength = 0, sLength = s.length();
331 UChar *detected = NEW_ARRAY(UChar, sLength);
341 ucsdet_getUChars(match, detected, sLength, &status);
343 if (s.compare(detected, sLength) != 0) {
    [all...]
collationtest.cpp     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationTest.java     [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationTest.java     [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 

Completed in 2932 milliseconds