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 25 byte subCharLen; /* +76: 1 */
50 subCharLen = subCharLen_;
CharsetICU.java 82 byte subCharLen; /* +76: 1 */
UConverterDataReader.java 454 sd.subCharLen = byteBuffer.get();
CharsetMBCS.java 189 subCharLen = sharedData.staticData.subCharLen;
191 fromUSubstitution = new byte[sharedData.staticData.subCharLen];
192 System.arraycopy(sharedData.staticData.subChar, 0, fromUSubstitution, 0, sharedData.staticData.subCharLen);
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
makeconv.cpp 437 staticData->subCharLen=0;
463 staticData->subCharLen=length;
526 if(staticData->subCharLen==0) {
527 staticData->subCharLen=prototype->subCharLen;
528 if(prototype->subCharLen>0) {
529 uprv_memcpy(staticData->subChar, prototype->subChar, prototype->subCharLen);
656 staticData->subChar, staticData->subCharLen)
749 if(staticData->subCharLen==0) {
751 staticData->subCharLen=baseData.staticData.subCharLen
    [all...]
  /external/icu/icu4c/source/common/
ucnv_bld.h 80 int8_t subCharLen; /* +76: 1 */
168 * Pointer to charset bytes for substitution string if subCharLen>0,
169 * or pointer to Unicode string (UChar *) if subCharLen<0.
170 * subCharLen==0 is equivalent to using a skip callback.
212 int8_t subCharLen; /* length of the codepage specific character sequence */
ucnv_cb.c 186 length = converter->subCharLen;
ucnv.c 425 if (converter->subCharLen <= 0) {
431 if (*len < converter->subCharLen) /*not enough space in subChars */
437 uprv_memcpy (mySubChar, converter->subChars, converter->subCharLen); /*fills in the subchars */
438 *len = converter->subCharLen; /*store # of bytes copied to buffer */
459 converter->subCharLen = len; /*sets the new len */
544 cnv->subCharLen = 0;
548 cnv->subCharLen = (int8_t)length8;
550 cnv->subCharLen = (int8_t)-length;
    [all...]
ucnv2022.cpp 591 cnv->subCharLen = myConverterData->currentConverter->subCharLen;
    [all...]
ucnv_bld.cpp 1003 myUConverter->subCharLen = mySharedConverterData->staticData->subCharLen;
1005 uprv_memcpy(myUConverter->subChars, mySharedConverterData->staticData->subChar, myUConverter->subCharLen);
    [all...]
ucnvscsu.c 214 cnv->subCharLen=-1;
    [all...]
ucnvmbcs.cpp     [all...]

Completed in 132 milliseconds