Lines Matching refs:immutable
621 immutable len = s.length; in CodePoints()
769 immutable E c = read(); in GenericEncoder()
770 immutable d = (c >= m_charMapStart && c <= m_charMapEnd) ? charMap[c-m_charMapStart] : c; in GenericEncoder()
795 alias AsciiString = immutable(AsciiChar)[];
851 immutable c = read(); in safeDecodeViaRead()
878 alias Latin1String = immutable(Latin1Char)[];
955 alias Latin2String = immutable(Latin2Char)[];
969 private static immutable dchar m_charMapStart = 0xa1;
970 private static immutable dchar m_charMapEnd = 0xff;
972 private immutable wstring charMap =
986 private immutable Tuple!(wchar, char)[] bstMap = [
1035 alias Windows1250String = immutable(Windows1250Char)[];
1049 private static immutable dchar m_charMapStart = 0x80;
1050 private static immutable dchar m_charMapEnd = 0xff;
1052 private immutable wstring charMap =
1070 private immutable Tuple!(wchar, char)[] bstMap = [
1128 alias Windows1252String = immutable(Windows1252Char)[];
1142 private static immutable dchar m_charMapStart = 0x80;
1143 private static immutable dchar m_charMapEnd = 0x9f;
1145 private immutable wstring charMap =
1151 private immutable Tuple!(wchar, char)[] bstMap = [
1173 alias EString = immutable(char)[];
1190 immutable ubyte[128] tailTable =
1284 immutable err = in safeDecodeViaRead()
1317 immutable mask = n == 0 ? 0x3F : (1 << (6 - n)) - 1; in decodeReverseViaRead()
1339 alias EString = immutable(wchar)[];
1382 immutable c = read(); in skipViaRead()
1436 alias EString = immutable(dchar)[];
1480 immutable c = read(); in safeDecodeViaRead()
1687 immutable(E)[] sanitize(E)(immutable(E)[] s) in immutable() function
1700 immutable c = EncoderInstance!(E).safeDecode(t); in immutable()
1714 immutable c = EncoderInstance!(E).safeDecode(t); in immutable()
1723 return cast(immutable(E)[])array[0 .. offset]; in immutable()
2169 CodePoints!(E) codePoints(E)(immutable(E)[] s)
2260 static if (is(Src == Dst) && is(Src == immutable))
2272 immutable minReservePlace = 2;
2276 immutable minReservePlace = 1;
2280 immutable minReservePlace = 6;
2359 foreach (O; AliasSeq!(Latin1Char, const Latin1Char, immutable Latin1Char))
2371 immutable char[] immutInput = "übc";
2578 abstract @property immutable(ubyte)[] replacementSequence();
2628 immutable(ubyte)[] sanitize()(immutable(ubyte)[] s) in immutable() function
2641 immutable c = safeDecode(t); in immutable()
2655 immutable c = safeDecode(t); in immutable()
2664 return cast(immutable(ubyte)[])array[0 .. offset]; in immutable()
2823 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
2825 return cast(immutable(ubyte)[])"?"; in immutable()
2907 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
2909 return cast(immutable(ubyte)[])"?"; in immutable()
2983 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
2985 return cast(immutable(ubyte)[])"?"; in immutable()
3051 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3053 return cast(immutable(ubyte)[])"?"; in immutable()
3119 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3121 return cast(immutable(ubyte)[])"?"; in immutable()
3187 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3189 return cast(immutable(ubyte)[])"\uFFFD"; in immutable()
3266 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3268 return cast(immutable(ubyte)[])"\uFFFD"w; in immutable()
3362 override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc in immutable() function
3364 return cast(immutable(ubyte)[])"\uFFFD"d; in immutable()
3392 void transcodeReverse(Src,Dst)(immutable(Src)[] s, out immutable(Dst)[] r) in version()
3524 immutable bomTable = [
3555 immutable(BOMSeq) getBOM(Range)(Range input)