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

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterStaticData.java 27 byte subCharLen; /* +76: 1 */
52 subCharLen = subCharLen_;
CharsetICU.java 84 byte subCharLen; /* +76: 1 */
UConverterDataReader.java 457 sd.subCharLen = byteBuffer.get();
CharsetMBCS.java 188 subCharLen = sharedData.staticData.subCharLen;
190 fromUSubstitution = new byte[sharedData.staticData.subCharLen];
191 System.arraycopy(sharedData.staticData.subChar, 0, fromUSubstitution, 0, sharedData.staticData.subCharLen);
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
makeconv.cpp 439 staticData->subCharLen=0;
465 staticData->subCharLen=length;
528 if(staticData->subCharLen==0) {
529 staticData->subCharLen=prototype->subCharLen;
530 if(prototype->subCharLen>0) {
531 uprv_memcpy(staticData->subChar, prototype->subChar, prototype->subCharLen);
658 staticData->subChar, staticData->subCharLen)
751 if(staticData->subCharLen==0) {
753 staticData->subCharLen=baseData.staticData.subCharLen
    [all...]
  /external/icu/icu4c/source/common/
ucnv_bld.h 82 int8_t subCharLen; /* +76: 1 */
170 * Pointer to charset bytes for substitution string if subCharLen>0,
171 * or pointer to Unicode string (UChar *) if subCharLen<0.
172 * subCharLen==0 is equivalent to using a skip callback.
214 int8_t subCharLen; /* length of the codepage specific character sequence */
ucnv_cb.c 188 length = converter->subCharLen;
ucnv.c 427 if (converter->subCharLen <= 0) {
433 if (*len < converter->subCharLen) /*not enough space in subChars */
439 uprv_memcpy (mySubChar, converter->subChars, converter->subCharLen); /*fills in the subchars */
440 *len = converter->subCharLen; /*store # of bytes copied to buffer */
461 converter->subCharLen = len; /*sets the new len */
546 cnv->subCharLen = 0;
550 cnv->subCharLen = (int8_t)length8;
552 cnv->subCharLen = (int8_t)-length;
    [all...]
ucnv2022.cpp 576 cnv->subCharLen = myConverterData->currentConverter->subCharLen;
    [all...]
ucnv_bld.cpp 1005 myUConverter->subCharLen = mySharedConverterData->staticData->subCharLen;
1007 uprv_memcpy(myUConverter->subChars, mySharedConverterData->staticData->subChar, myUConverter->subCharLen);
    [all...]
ucnvscsu.c 216 cnv->subCharLen=-1;
    [all...]
ucnvmbcs.cpp     [all...]

Completed in 1252 milliseconds