Home
last modified time | relevance | path

Searched refs:numCodeUnits (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dutf.d1084 decodes them. If $(D numCodeUnits) is passed in, it gets set to the number
1090 numCodeUnits = set to number of code units processed
1103 ref S str, out size_t numCodeUnits)
1120 numCodeUnits = 1;
1129 immutable retval = decodeImpl!(canIndex, useReplacementDchar)(str, numCodeUnits);
1133 str = str[numCodeUnits .. str.length];
1140 ref S str, out size_t numCodeUnits) @trusted pure
1154 numCodeUnits = 1;
1161 immutable retval = decodeImpl!(true, useReplacementDchar)(str, numCodeUnits);
1162 str = str[numCodeUnits .. $];
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dutf.d1227 decodes them. If `numCodeUnits` is passed in, it gets set to the number
1233 numCodeUnits = set to number of code units processed
1246 ref S str, out size_t numCodeUnits)
1263 numCodeUnits = 1;
1274 immutable retval = decodeImpl!(canIndex, useReplacementDchar)(str, numCodeUnits);
1278 str = str[numCodeUnits .. str.length];
1286 ref scope S str, out size_t numCodeUnits) @trusted pure
1300 numCodeUnits = 1;
1307 … immutable retval = decodeImpl!(true, useReplacementDchar)(cast(const(C)[]) str, numCodeUnits);
1308 str = str[numCodeUnits .. $];
[all …]