| 699 | } |
| 700 | |
| 701 | ConversionResult ConvertUTF8toUTF32Partial(const UTF8 **sourceStart, |
| 702 | const UTF8 *sourceEnd, |
| 703 | UTF32 **targetStart, |
| 704 | UTF32 *targetEnd, |
| 705 | ConversionFlags flags) { |
| 706 | return ConvertUTF8toUTF32Impl(sourceStart, sourceEnd, targetStart, targetEnd, |
| 707 | flags, /*InputIsPartial=*/true); |
| 708 | } |
| 709 | |
| 710 | ConversionResult ConvertUTF8toUTF32(const UTF8 **sourceStart, |
| 711 | const UTF8 *sourceEnd, UTF32 **targetStart, |
nothing calls this directly
no test coverage detected