• 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()
261 localConverter = (UConverter*) stackBuffer; in ucnv_safeClone()
268 uprv_memcpy(localConverter, cnv, sizeof(UConverter)); in ucnv_safeClone()
304 if(localConverter == (UConverter*)stackBuffer) { in ucnv_safeClone()
326 ucnv_close (UConverter * converter) in ucnv_close()
419 ucnv_getSubstChars (const UConverter * converter, in ucnv_getSubstChars()
444 ucnv_setSubstChars (UConverter * converter, in ucnv_setSubstChars()
474 ucnv_setSubstString(UConverter *cnv, in ucnv_setSubstString()
478 alignas(UConverter) char cloneBuffer[U_CNV_SAFECLONE_BUFFERSIZE]; in ucnv_setSubstString()
481 UConverter *clone; in ucnv_setSubstString()
563 static void _reset(UConverter *converter, UConverterResetChoice choice, in _reset()
628 ucnv_reset(UConverter *converter) in ucnv_reset()
634 ucnv_resetToUnicode(UConverter *converter) in ucnv_resetToUnicode()
640 ucnv_resetFromUnicode(UConverter *converter) in ucnv_resetFromUnicode()
646 ucnv_getMaxCharSize (const UConverter * converter) in ucnv_getMaxCharSize()
653 ucnv_getMinCharSize (const UConverter * converter) in ucnv_getMinCharSize()
659 ucnv_getName (const UConverter * converter, UErrorCode * err) in ucnv_getName()
673 ucnv_getCCSID(const UConverter * converter, in ucnv_getCCSID()
697 ucnv_getPlatform (const UConverter * converter, in ucnv_getPlatform()
707 ucnv_getToUCallBack (const UConverter * converter, in ucnv_getToUCallBack()
716 ucnv_getFromUCallBack (const UConverter * converter, in ucnv_getFromUCallBack()
725 ucnv_setToUCallBack (UConverter * converter, in ucnv_setToUCallBack()
741 ucnv_setFromUCallBack (UConverter * converter, in ucnv_setFromUCallBack()
828 UConverter *cnv; in _fromUnicodeWithCallback()
1117 ucnv_outputOverflowFromUnicode(UConverter *cnv, in ucnv_outputOverflowFromUnicode()
1170 ucnv_fromUnicode(UConverter *cnv, in ucnv_fromUnicode()
1273 UConverter *cnv; in _toUnicodeWithCallback()
1563 ucnv_outputOverflowToUnicode(UConverter *cnv, in ucnv_outputOverflowToUnicode()
1616 ucnv_toUnicode(UConverter *cnv, in ucnv_toUnicode()
1717 ucnv_fromUChars(UConverter *cnv, in ucnv_fromUChars()
1773 ucnv_toUChars(UConverter *cnv, in ucnv_toUChars()
1833 ucnv_getNextUChar(UConverter *cnv, in ucnv_getNextUChar()
2038 ucnv_convertEx(UConverter *targetCnv, UConverter *sourceCnv, in ucnv_convertEx()
2397 ucnv_internalConvert(UConverter *outConverter, UConverter *inConverter, in ucnv_internalConvert()
2474 UConverter in, out; /* stack-allocated */ in ucnv_convert()
2475 UConverter *inConverter, *outConverter; in ucnv_convert()
2521 UConverter *cnv, in ucnv_convertAlgorithmic()
2525 UConverter algoConverterStatic; /* stack-allocated */ in ucnv_convertAlgorithmic()
2526 UConverter *algoConverter, *to, *from; in ucnv_convertAlgorithmic()
2577 UConverter *cnv, in ucnv_toAlgorithmic()
2588 ucnv_fromAlgorithmic(UConverter *cnv, in ucnv_fromAlgorithmic()
2600 ucnv_getType(const UConverter* converter) in ucnv_getType()
2612 ucnv_getStarters(const UConverter* converter, in ucnv_getStarters()
2627 static const UAmbiguousConverter *ucnv_getAmbiguous(const UConverter *cnv) in ucnv_getAmbiguous()
2655 ucnv_fixFileSeparator(const UConverter *cnv, in ucnv_fixFileSeparator()
2676 ucnv_isAmbiguous(const UConverter *cnv) { in ucnv_isAmbiguous()
2681 ucnv_setFallback(UConverter *cnv, UBool usesFallback) in ucnv_setFallback()
2687 ucnv_usesFallback(const UConverter *cnv) in ucnv_usesFallback()
2693 ucnv_getInvalidChars (const UConverter * converter, in ucnv_getInvalidChars()
2719 ucnv_getInvalidUChars (const UConverter * converter, in ucnv_getInvalidUChars()
2836 ucnv_fromUCountPending(const UConverter* cnv, UErrorCode* status) in ucnv_fromUCountPending()
2858 ucnv_toUCountPending(const UConverter* cnv, UErrorCode* status){ in ucnv_toUCountPending()
2879 ucnv_isFixedWidth(UConverter *cnv, UErrorCode *status){ in ucnv_isFixedWidth()