Lines Matching refs:ucs2Length
269 …int ucs2Length = Utf8ToUcs2(reinterpret_cast<uint8_t *>(pUcs2Text), maxUcs2Length * sizeof(WCHAR),… in Utf8ToGsm7bit() local
270 … return Ucs2ToGsm7bit(dest, maxLength, reinterpret_cast<uint8_t *>(pUcs2Text), ucs2Length, langId); in Utf8ToGsm7bit()
314 …int ucs2Length = Utf8ToUcs2(reinterpret_cast<uint8_t *>(pUcs2Text), maxUcs2Length * sizeof(WCHAR),… in GsmUtf8ToAuto() local
316 if (ucs2Length < 0) { in GsmUtf8ToAuto()
325 … = Ucs2ToGsm7bitAuto(dest, maxLength, reinterpret_cast<uint8_t *>(pUcs2Text), ucs2Length, unknown); in GsmUtf8ToAuto()
328 if (ucs2Length <= 0) { in GsmUtf8ToAuto()
331 tempTextLen = (ucs2Length > maxLength) ? maxLength : ucs2Length; in GsmUtf8ToAuto()
358 …int ucs2Length = Utf8ToUcs2(reinterpret_cast<uint8_t *>(pUcs2Text), maxUcs2Length * sizeof(WCHAR),… in CdmaUtf8ToAuto() local
360 if (ucs2Length < 0) { in CdmaUtf8ToAuto()
369 …Length = Ucs2ToAscii(dest, maxLength, reinterpret_cast<uint8_t *>(pUcs2Text), ucs2Length, unknown); in CdmaUtf8ToAuto()
372 if (ucs2Length <= 0) { in CdmaUtf8ToAuto()
375 tempTextLen = (ucs2Length > maxLength) ? maxLength : ucs2Length; in CdmaUtf8ToAuto()
411 int ucs2Length = in Gsm7bitToUtf8() local
413 if (ucs2Length > maxLength) { in Gsm7bitToUtf8()
417 return Ucs2ToUtf8(dest, maxLength, reinterpret_cast<uint8_t *>(pUcs2Text), ucs2Length); in Gsm7bitToUtf8()