• Home
  • Raw
  • Download

Lines Matching refs:UConverter

72 U_CAPI UConverter* U_EXPORT2
76 UConverter *r; in ucnv_open()
86 U_CAPI UConverter* U_EXPORT2
93 U_CAPI UConverter* U_EXPORT2
135 U_CAPI UConverter* U_EXPORT2
157 U_CAPI UConverter* U_EXPORT2
158 ucnv_safeClone(const UConverter* cnv, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status) in ucnv_safeClone()
160 UConverter *localConverter, *allocatedConverter; in ucnv_safeClone()
213 bufferSizeNeeded = sizeof(UConverter); in ucnv_safeClone()
233 uintptr_t aligned_p = (p + alignof(UConverter) - 1) & ~(alignof(UConverter) - 1); in ucnv_safeClone()
248 localConverter = allocatedConverter = (UConverter *) uprv_malloc (bufferSizeNeeded); in ucnv_safeClone()
264 localConverter = (UConverter*) stackBuffer; in ucnv_safeClone()
271 uprv_memcpy(localConverter, cnv, sizeof(UConverter)); in ucnv_safeClone()
307 if(localConverter == (UConverter*)stackBuffer) { in ucnv_safeClone()
323 U_CAPI UConverter* U_EXPORT2
324 ucnv_clone(const UConverter* cnv, UErrorCode *status) in ucnv_clone()
333 ucnv_close (UConverter * converter) in ucnv_close()
426 ucnv_getSubstChars (const UConverter * converter, in ucnv_getSubstChars()
451 ucnv_setSubstChars (UConverter * converter, in ucnv_setSubstChars()
481 ucnv_setSubstString(UConverter *cnv, in ucnv_setSubstString()
485 alignas(UConverter) char cloneBuffer[U_CNV_SAFECLONE_BUFFERSIZE]; in ucnv_setSubstString()
488 UConverter *clone; in ucnv_setSubstString()
570 static void _reset(UConverter *converter, UConverterResetChoice choice, in _reset()
635 ucnv_reset(UConverter *converter) in ucnv_reset()
641 ucnv_resetToUnicode(UConverter *converter) in ucnv_resetToUnicode()
647 ucnv_resetFromUnicode(UConverter *converter) in ucnv_resetFromUnicode()
653 ucnv_getMaxCharSize (const UConverter * converter) in ucnv_getMaxCharSize()
660 ucnv_getMinCharSize (const UConverter * converter) in ucnv_getMinCharSize()
666 ucnv_getName (const UConverter * converter, UErrorCode * err) in ucnv_getName()
680 ucnv_getCCSID(const UConverter * converter, in ucnv_getCCSID()
704 ucnv_getPlatform (const UConverter * converter, in ucnv_getPlatform()
714 ucnv_getToUCallBack (const UConverter * converter, in ucnv_getToUCallBack()
723 ucnv_getFromUCallBack (const UConverter * converter, in ucnv_getFromUCallBack()
732 ucnv_setToUCallBack (UConverter * converter, in ucnv_setToUCallBack()
748 ucnv_setFromUCallBack (UConverter * converter, in ucnv_setFromUCallBack()
835 UConverter *cnv; in _fromUnicodeWithCallback()
1124 ucnv_outputOverflowFromUnicode(UConverter *cnv, in ucnv_outputOverflowFromUnicode()
1177 ucnv_fromUnicode(UConverter *cnv, in ucnv_fromUnicode()
1280 UConverter *cnv; in _toUnicodeWithCallback()
1570 ucnv_outputOverflowToUnicode(UConverter *cnv, in ucnv_outputOverflowToUnicode()
1623 ucnv_toUnicode(UConverter *cnv, in ucnv_toUnicode()
1724 ucnv_fromUChars(UConverter *cnv, in ucnv_fromUChars()
1780 ucnv_toUChars(UConverter *cnv, in ucnv_toUChars()
1840 ucnv_getNextUChar(UConverter *cnv, in ucnv_getNextUChar()
2045 ucnv_convertEx(UConverter *targetCnv, UConverter *sourceCnv, in ucnv_convertEx()
2404 ucnv_internalConvert(UConverter *outConverter, UConverter *inConverter, in ucnv_internalConvert()
2481 UConverter in, out; /* stack-allocated */ in ucnv_convert()
2482 UConverter *inConverter, *outConverter; in ucnv_convert()
2528 UConverter *cnv, in ucnv_convertAlgorithmic()
2532 UConverter algoConverterStatic; /* stack-allocated */ in ucnv_convertAlgorithmic()
2533 UConverter *algoConverter, *to, *from; in ucnv_convertAlgorithmic()
2584 UConverter *cnv, in ucnv_toAlgorithmic()
2595 ucnv_fromAlgorithmic(UConverter *cnv, in ucnv_fromAlgorithmic()
2612 ucnv_getType(const UConverter* converter) in ucnv_getType()
2624 ucnv_getStarters(const UConverter* converter, in ucnv_getStarters()
2639 static const UAmbiguousConverter *ucnv_getAmbiguous(const UConverter *cnv) in ucnv_getAmbiguous()
2667 ucnv_fixFileSeparator(const UConverter *cnv, in ucnv_fixFileSeparator()
2688 ucnv_isAmbiguous(const UConverter *cnv) { in ucnv_isAmbiguous()
2693 ucnv_setFallback(UConverter *cnv, UBool usesFallback) in ucnv_setFallback()
2699 ucnv_usesFallback(const UConverter *cnv) in ucnv_usesFallback()
2705 ucnv_getInvalidChars (const UConverter * converter, in ucnv_getInvalidChars()
2731 ucnv_getInvalidUChars (const UConverter * converter, in ucnv_getInvalidUChars()
2848 ucnv_fromUCountPending(const UConverter* cnv, UErrorCode* status) in ucnv_fromUCountPending()
2870 ucnv_toUCountPending(const UConverter* cnv, UErrorCode* status){ in ucnv_toUCountPending()
2891 ucnv_isFixedWidth(UConverter *cnv, UErrorCode *status){ in ucnv_isFixedWidth()