Lines Matching refs:encodingName
802 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
885 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
964 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1044 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1137 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1175 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1341 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1438 @property string encodingName() @safe pure nothrow @nogc in encodingName() function
1530 @property string encodingName(T)() in encodingName() function
1532 return EncoderInstance!(T).encodingName; in encodingName()
1538 assert(encodingName!(char) == "UTF-8");
1539 assert(encodingName!(wchar) == "UTF-16");
1540 assert(encodingName!(dchar) == "UTF-32");
1541 assert(encodingName!(AsciiChar) == "ASCII");
1542 assert(encodingName!(Latin1Char) == "ISO-8859-1");
1543 assert(encodingName!(Latin2Char) == "ISO-8859-2");
1544 assert(encodingName!(Windows1250Char) == "windows-1250");
1545 assert(encodingName!(Windows1252Char) == "windows-1252");
2431 foreach (encodingName;scheme.names())
2433 supported[toLower(encodingName)] = () => new Klass();
2443 foreach (encodingName;scheme.names())
2445 supportedFactories[toLower(encodingName)] = className;
2461 static EncodingScheme create(string encodingName) in create() argument
2479 encodingName = toLower(encodingName); in create()
2481 if (auto p = encodingName in supported) in create()
2484 auto p = encodingName in supportedFactories; in create()
2486 throw new EncodingException("Unrecognized Encoding: "~encodingName); in create()