Home | History | Annotate | Download | only in text

Lines Matching refs:registrar

36 void TextCodecUTF16::registerEncodingNames(EncodingNameRegistrar registrar)
38 registrar("UTF-16LE", "UTF-16LE");
39 registrar("UTF-16BE", "UTF-16BE");
41 registrar("ISO-10646-UCS-2", "UTF-16LE");
42 registrar("UCS-2", "UTF-16LE");
43 registrar("UTF-16", "UTF-16LE");
44 registrar("Unicode", "UTF-16LE");
45 registrar("csUnicode", "UTF-16LE");
46 registrar("unicodeFEFF", "UTF-16LE");
48 registrar("unicodeFFFE", "UTF-16BE");
61 void TextCodecUTF16::registerCodecs(TextCodecRegistrar registrar)
63 registrar("UTF-16LE", newStreamingTextDecoderUTF16LE, 0);
64 registrar("UTF-16BE", newStreamingTextDecoderUTF16BE, 0);