Home
last modified time | relevance | path

Searched refs:is_function (Results 1 – 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/dialog/
HDdlg_keys.c532 make_binding(char *widget, int curses_key, int is_function, int dialog_key) in make_binding() argument
548 data[0].is_function_key = is_function; in make_binding()
599 int is_function = FALSE; in dlg_parse_bindkey() local
647 is_function = TRUE; in dlg_parse_bindkey()
652 is_function = (curses_key >= KEY_MIN); in dlg_parse_bindkey()
672 && make_binding(widget, curses_key, is_function, dialog_key) != 0) { in dlg_parse_bindkey()
/freebsd-11-stable/contrib/libstdc++/include/tr1/
Dfunctional_iterate.h125 && !is_function<_Functor>::value
126 && !is_function<typename remove_pointer<_Functor>::type>::value),
137 && !is_function<_Functor>::value
138 && !is_function<typename remove_pointer<_Functor>::type>::value),
151 && is_function<typename remove_pointer<_Functor>::type>::value),
Dtype_traits165 !is_function<_Tp>::value)
171 is_function<_Tp>::value)
180 || is_function<_Tp>::value
191 struct is_function
213 : public integral_constant<bool, !(is_function<_Tp>::value
495 || is_function<_To>::value || is_array<_To>::value
Dtype_traits_fwd.h86 struct is_function;
Dfunctional190 template<typename _Tp, bool _IsFunctionType = is_function<_Tp>::value>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
HDJITSymbol.h63 std::is_function<typename std::remove_pointer<T>::type>::value, in jitTargetAddressToFunction()
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
HDtype_traits47 template <class T> struct is_function;
270 = is_function<T>::value; // C++17
898 // is_function
900 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_function
913 = is_function<_Tp>::value;
926 __is_func = is_function<_Tp>::value,
982 !is_function<_Tp>::value > {};
1354 is_function<_Up>::value,
1449 bool _IsFunction = is_function<_Tp>::value,
2237 : public __destructible_false<_Tp, _VSTD::is_function<_Tp>::value> {};
[all …]
HDnew351 static_assert (!(is_function<_Tp>::value), "can't launder functions" );
HDany662 __p, is_function<_ValueType>{});
HDmemory1123 static_assert(!is_function<_Tp>::value, "_Tp is a function type");
2345 static_assert(!is_function<_Tp>::value,
3874 template <class _Yp, bool = is_function<_Yp>::value>
/freebsd-11-stable/contrib/gcc/
HDmips-tfile.c2769 int is_function = 0; /* != 0 if function */ in parse_def() local
3039 is_function = 1; in parse_def()
3197 if (is_function) in parse_def()
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/
HDpropagate_const144 static_assert(!(is_pointer<_Tp>::value && is_function<typename remove_pointer<_Tp>::type>::value),
/freebsd-11-stable/contrib/libstdc++/
DChangeLog-2005977 (is_function): Use it, don't use __conv_helper.
986 * testsuite/tr1/4_metaprogramming/primary_type_categories/is_function/
4561 * include/tr1/type_traits (is_function): Don't mistake references
4564 is_function/is_function.cc: Add testcase.
4908 * include/tr1/type_traits (is_function): Minor consistency tweaks.
4950 * include/tr1/type_traits (is_function): Rewrite, use the conversion
4953 is_function/is_function.cc: Add a test for tricky AbstractClass.
DChangeLog-2004339 * include/tr1/type_traits: Implement is_function.
346 is_function/is_function.cc: Likewise.
348 is_function/typedefs.cc: Likewise.