Lines Matching refs:immutable

312     void transcodeReverse(Src,Dst)(immutable(Src)[] s, out immutable(Dst)[] r)  in transcodeReverse()
679 immutable len = s.length; in CodePoints()
827 immutable E c = read(); in GenericEncoder()
828 immutable d = (c >= m_charMapStart && c <= m_charMapEnd) ? charMap[c-m_charMapStart] : c; in GenericEncoder()
853 alias AsciiString = immutable(AsciiChar)[];
909 immutable c = read(); in safeDecodeViaRead()
936 alias Latin1String = immutable(Latin1Char)[];
1013 alias Latin2String = immutable(Latin2Char)[];
1027 private static immutable dchar m_charMapStart = 0xa1;
1028 private static immutable dchar m_charMapEnd = 0xff;
1030 private immutable wstring charMap =
1044 private immutable Tuple!(wchar, char)[] bstMap = [
1093 alias Windows1250String = immutable(Windows1250Char)[];
1107 private static immutable dchar m_charMapStart = 0x80;
1108 private static immutable dchar m_charMapEnd = 0xff;
1110 private immutable wstring charMap =
1128 private immutable Tuple!(wchar, char)[] bstMap = [
1186 alias Windows1251String = immutable(Windows1251Char)[];
1200 private static immutable dchar m_charMapStart = 0x80;
1201 private static immutable dchar m_charMapEnd = 0xff;
1203 private immutable wstring charMap =
1221 private immutable Tuple!(wchar, char)[] bstMap = [
1281 alias Windows1252String = immutable(Windows1252Char)[];
1295 private static immutable dchar m_charMapStart = 0x80;
1296 private static immutable dchar m_charMapEnd = 0x9f;
1298 private immutable wstring charMap =
1304 private immutable Tuple!(wchar, char)[] bstMap = [
1326 alias EString = immutable(char)[];
1343 immutable ubyte[128] tailTable =
1437 immutable err = in safeDecodeViaRead()
1470 immutable mask = n == 0 ? 0x3F : (1 << (6 - n)) - 1; in decodeReverseViaRead()
1492 alias EString = immutable(wchar)[];
1535 immutable c = read(); in skipViaRead()
1589 alias EString = immutable(dchar)[];
1633 immutable c = read(); in safeDecodeViaRead()
1846 immutable(E)[] sanitize(E)(immutable(E)[] s) in immutable() function
1859 immutable c = EncoderInstance!(E).safeDecode(t); in immutable()
1873 immutable c = EncoderInstance!(E).safeDecode(t); in immutable()
1882 return cast(immutable(E)[])array[0 .. offset]; in immutable()
2178 static if (is(immutable E == immutable char))
2211 else static if (is(immutable E == immutable wchar))
2222 else static if (is(immutable E == immutable dchar))
2328 CodePoints!(E) codePoints(E)(immutable(E)[] s)
2419 static if (is(Src == Dst) && is(Src == immutable))
2423 else static if (is(immutable Src == immutable AsciiChar))
2429 static if (is(immutable Dst == immutable wchar))
2431 immutable minReservePlace = 2;
2433 else static if (is(immutable Dst == immutable dchar))
2435 immutable minReservePlace = 1;
2439 immutable minReservePlace = 6;
2518 static foreach (O; AliasSeq!(Latin1Char, const Latin1Char, immutable Latin1Char))
2530 immutable char[] immutInput = "übc";
2738 abstract @property immutable(ubyte)[] replacementSequence();
2788 immutable(ubyte)[] sanitize()(immutable(ubyte)[] s) in immutable() function
2801 immutable c = safeDecode(t); in immutable()
2815 immutable c = safeDecode(t); in immutable()
2824 return cast(immutable(ubyte)[])array[0 .. offset]; in immutable()
2983 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
2985 return cast(immutable(ubyte)[])"?"; in immutable()
3067 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3069 return cast(immutable(ubyte)[])"?"; in immutable()
3143 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3145 return cast(immutable(ubyte)[])"?"; in immutable()
3211 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3213 return cast(immutable(ubyte)[])"?"; in immutable()
3279 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3281 return cast(immutable(ubyte)[])"?"; in immutable()
3347 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3349 return cast(immutable(ubyte)[])"?"; in immutable()
3418 assert(scheme.replacementSequence() == cast(immutable(ubyte)[])"?");
3484 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3486 return cast(immutable(ubyte)[])"\uFFFD"; in immutable()
3563 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3565 return cast(immutable(ubyte)[])"\uFFFD"w; in immutable()
3659 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3661 return cast(immutable(ubyte)[])"\uFFFD"d; in immutable()
3716 immutable bomTable = [
3747 immutable(BOMSeq) getBOM(Range)(Range input)
3748 if (isForwardRange!Range && is(immutable ElementType!Range == immutable ubyte))