Lines Matching refs:encodingName
860 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
943 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1022 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1102 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1195 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1290 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1328 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1494 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1591 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1683 @property string encodingName(T)() in encodingName() function
1685 return EncoderInstance!(T).encodingName; in encodingName()
1691 assert(encodingName!(char) == "UTF-8");
1692 assert(encodingName!(wchar) == "UTF-16");
1693 assert(encodingName!(dchar) == "UTF-32");
1694 assert(encodingName!(AsciiChar) == "ASCII");
1695 assert(encodingName!(Latin1Char) == "ISO-8859-1");
1696 assert(encodingName!(Latin2Char) == "ISO-8859-2");
1697 assert(encodingName!(Windows1250Char) == "windows-1250");
1698 assert(encodingName!(Windows1251Char) == "windows-1251");
1699 assert(encodingName!(Windows1252Char) == "windows-1252");
2590 foreach (encodingName;scheme.names())
2592 supported[toLower(encodingName)] = () => new Klass();
2602 foreach (encodingName;scheme.names())
2604 supportedFactories[toLower(encodingName)] = className;
2620 static EncodingScheme create(string encodingName) in create() argument
2639 encodingName = toLower(encodingName); in create()
2641 if (auto p = encodingName in supported) in create()
2644 auto p = encodingName in supportedFactories; in create()
2646 throw new EncodingException("Unrecognized Encoding: "~encodingName); in create()