Searched refs:unformatElement (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/ |
H A D | read.d | 320 result[i++] = unformatElement!(typeof(T.init[0]))(input, fmt); in unformatRange() 325 result ~= unformatElement!(WideElementType!T)(input, fmt); in unformatRange() 329 auto key = unformatElement!(typeof(T.init.keys[0]))(input, fmt); in unformatRange() 332 result[key] = unformatElement!(typeof(T.init.values[0]))(input, fmt); in unformatRange() 370 T unformatElement(T, Range, Char)(ref Range input, scope const ref FormatSpec!Char spec)
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/ |
H A D | package.d | 726 T unformatElement(T, Range, Char)(ref Range input, scope const ref FormatSpec!Char spec) in unformatElement() function 729 import std.format.internal.read : ue = unformatElement; in unformatElement()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | format.d | 5220 result[i++] = unformatElement!(typeof(T.init[0]))(input, fmt); 5224 result ~= unformatElement!(ElementType!T)(input, fmt); 5228 auto key = unformatElement!(typeof(T.init.keys[0]))(input, fmt); 5231 result[key] = unformatElement!(typeof(T.init.values[0]))(input, fmt); 5277 T unformatElement(T, Range, Char)(ref Range input, const ref FormatSpec!Char spec)
|