Home | History | Annotate | Download | only in text

Lines Matching refs:registrar

38 void TextCodecUTF16::registerEncodingNames(EncodingNameRegistrar registrar)
40 registrar("UTF-16LE", "UTF-16LE");
41 registrar("UTF-16BE", "UTF-16BE");
43 registrar("ISO-10646-UCS-2", "UTF-16LE");
44 registrar("UCS-2", "UTF-16LE");
45 registrar("UTF-16", "UTF-16LE");
46 registrar("Unicode", "UTF-16LE");
47 registrar("csUnicode", "UTF-16LE");
48 registrar("unicodeFEFF", "UTF-16LE");
50 registrar("unicodeFFFE", "UTF-16BE");
63 void TextCodecUTF16::registerCodecs(TextCodecRegistrar registrar)
65 registrar("UTF-16LE", newStreamingTextDecoderUTF16LE, 0);
66 registrar("UTF-16BE", newStreamingTextDecoderUTF16BE, 0);