Home
last modified time | relevance | path

Searched refs:nullValue (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtypecons.d2897 struct Nullable(T, T nullValue)
2899 private T _value = nullValue;
2939 static if (is(CommonType!(T, typeof(null)) == T) && nullValue is null)
2941 return _value is nullValue;
2947 return _value is nullValue;
2951 return _value == nullValue;
2990 _value = nullValue;
3077 auto nullable(alias nullValue, T)(T t)
3078 if (is (typeof(nullValue) == T))
3080 return Nullable!(T, nullValue)(t);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtypecons.d3765 struct Nullable(T, T nullValue)
3767 private T _value = nullValue;
3828 static if (is(CommonType!(T, typeof(null)) == T) && nullValue is null)
3830 return _value is nullValue;
3834 …c if (__traits(isFloating, T) || __traits(compiles, { static assert(!(nullValue == nullValue)); }))
3836 return _value is nullValue;
3840 return _value == nullValue;
3887 _value = nullValue;
3977 auto nullable(alias nullValue, T)(T t)
3978 if (is (typeof(nullValue) == T))
[all …]
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c18187 char nullValue[20]; /* The text to print when a NULL comes back from member
18882 oputf("%s",p->nullValue); in output_csv()
19259 azArg[i] ? azArg[i] : p->nullValue, p->rowSeparator); in shell_callback()
19313 utf8_width_print(w, zVal ? zVal : p->nullValue); in shell_callback()
19397 if( z==0 ) z = p->nullValue; in shell_callback()
19417 output_html_string(azArg[i] ? azArg[i] : p->nullValue); in shell_callback()
19433 output_c_string(azArg[i] ? azArg[i] : p->nullValue); in shell_callback()
19609 oputz(azArg[i] ? azArg[i] : p->nullValue); in shell_callback()
20618 const char *zShowNull = p->nullValue; in exec_prepared_stmt_columnar()
20775 if( z==0 ) z = p->nullValue; in exec_prepared_stmt_columnar()
[all …]