| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
| H A D | limits | 23 static constexpr bool is_specialized = false; 31 static constexpr bool is_signed = false; 32 static constexpr bool is_integer = false; 33 static constexpr bool is_exact = false; 43 static constexpr bool has_infinity = false; 44 static constexpr bool has_quiet_NaN = false; 45 static constexpr bool has_signaling_NaN = false; 47 static constexpr bool has_denorm_loss = false; 53 static constexpr bool is_iec559 = false; 54 static constexpr bool is_bounded = false; [all …]
|
| H A D | compare | 23 constexpr bool is_eq (partial_ordering cmp) noexcept { return cmp == 0; } 24 constexpr bool is_neq (partial_ordering cmp) noexcept { return cmp != 0; } 25 constexpr bool is_lt (partial_ordering cmp) noexcept { return cmp < 0; } 26 constexpr bool is_lteq(partial_ordering cmp) noexcept { return cmp <= 0; } 27 constexpr bool is_gt (partial_ordering cmp) noexcept { return cmp > 0; } 28 constexpr bool is_gteq(partial_ordering cmp) noexcept { return cmp >= 0; } 53 friend constexpr bool operator==(partial_ordering v, unspecified) noexcept; 54 friend constexpr bool operator==(partial_ordering v, partial_ordering w) noexcept = default; 55 friend constexpr bool operator< (partial_ordering v, unspecified) noexcept; 56 friend constexpr bool operator> (partial_ordering v, unspecified) noexcept; [all …]
|
| H A D | optional | 31 constexpr bool operator==(const optional<T>&, const optional<U>&); 33 constexpr bool operator!=(const optional<T>&, const optional<U>&); 35 constexpr bool operator<(const optional<T>&, const optional<U>&); 37 constexpr bool operator>(const optional<T>&, const optional<U>&); 39 constexpr bool operator<=(const optional<T>&, const optional<U>&); 41 constexpr bool operator>=(const optional<T>&, const optional<U>&); 44 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 45 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; 46 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; 47 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; [all …]
|
| H A D | system_error | 30 virtual bool equivalent(int code, const error_condition& condition) const noexcept; 31 virtual bool equivalent(const error_code& code, int condition) const noexcept; 34 bool operator==(const error_category& rhs) const noexcept; 35 bool operator!=(const error_category& rhs) const noexcept; 36 bool operator<(const error_category& rhs) const noexcept; 74 explicit operator bool() const noexcept; 78 bool operator<(const error_code& lhs, const error_code& rhs) noexcept; 102 explicit operator bool() const noexcept; 105 bool operator<(const error_condition& lhs, const error_condition& rhs) noexcept; 129 bool operator==(const error_code& lhs, const error_code& rhs) noexcept; [all …]
|
| H A D | shared_mutex | 32 bool try_lock(); 37 bool try_lock_shared(); 55 bool try_lock(); 57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 64 bool try_lock_shared(); 66 bool 69 bool 101 bool try_lock(); 103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); [all …]
|
| H A D | type_traits | 21 typedef integral_constant<bool, true> true_type; // C++11 22 typedef integral_constant<bool, false> false_type; // C++11 24 template <bool B> // C++14 25 using bool_constant = integral_constant<bool, B>; // C++14 30 template <bool, class T = void> struct enable_if; 31 template <bool, class T, class F> struct conditional; 150 template <typename From, typename To> inline constexpr bool is_nothrow_convertible_v; // C++20 207 inline constexpr bool is_bounded_array_v 209 inline constexpr bool is_unbounded_array_v 227 template <bool b, class T=void> [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| H A D | limits | 49 // bool (1) 206 static _GLIBCXX_USE_CONSTEXPR bool is_specialized = false; 223 static _GLIBCXX_USE_CONSTEXPR bool is_signed = false; 226 static _GLIBCXX_USE_CONSTEXPR bool is_integer = false; 231 static _GLIBCXX_USE_CONSTEXPR bool is_exact = false; 255 static _GLIBCXX_USE_CONSTEXPR bool has_infinity = false; 259 static _GLIBCXX_USE_CONSTEXPR bool has_quiet_NaN = false; 263 static _GLIBCXX_USE_CONSTEXPR bool has_signaling_NaN = false; 270 static _GLIBCXX_USE_CONSTEXPR bool has_denorm_loss = false; 274 static _GLIBCXX_USE_CONSTEXPR bool is_iec559 = false; [all …]
|
| H A D | atomic | 59 /// atomic<bool> 62 struct atomic<bool> 64 using value_type = bool; 67 __atomic_base<bool> _M_base; 76 constexpr atomic(bool __i) noexcept : _M_base(__i) { } 78 bool 79 operator=(bool __i) noexcept 82 bool 83 operator=(bool __i) volatile noexcept 86 operator bool() const noexcept [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
| H A D | limits | 49 // bool (1) 206 static _GLIBCXX_USE_CONSTEXPR bool is_specialized = false; 223 static _GLIBCXX_USE_CONSTEXPR bool is_signed = false; 226 static _GLIBCXX_USE_CONSTEXPR bool is_integer = false; 231 static _GLIBCXX_USE_CONSTEXPR bool is_exact = false; 255 static _GLIBCXX_USE_CONSTEXPR bool has_infinity = false; 259 static _GLIBCXX_USE_CONSTEXPR bool has_quiet_NaN = false; 263 static _GLIBCXX_USE_CONSTEXPR bool has_signaling_NaN = false; 270 static _GLIBCXX_USE_CONSTEXPR bool has_denorm_loss = false; 274 static _GLIBCXX_USE_CONSTEXPR bool is_iec559 = false; [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | type_traits | 56 constexpr bool is_void_v = is_void<_Tp>::value; 58 constexpr bool is_null_pointer_v = is_null_pointer<_Tp>::value; 60 constexpr bool is_integral_v = is_integral<_Tp>::value; 62 constexpr bool is_floating_point_v = is_floating_point<_Tp>::value; 64 constexpr bool is_array_v = is_array<_Tp>::value; 66 constexpr bool is_pointer_v = is_pointer<_Tp>::value; 68 constexpr bool is_lvalue_reference_v = is_lvalue_reference<_Tp>::value; 70 constexpr bool is_rvalue_reference_v = is_rvalue_reference<_Tp>::value; 72 constexpr bool is_member_object_pointer_v = 75 constexpr bool is_member_function_pointer_v = [all …]
|
| H A D | propagate_const | 118 is_convertible<_Up&&, _Tp>>::value, bool 126 bool>::type=false> 135 >::value, bool>::type=true> 144 >::value, bool>::type=false> 173 explicit constexpr operator bool() const 175 return bool(_M_t); 187 >::value, bool>::type = true> 213 >::value, bool>::type = true> 243 constexpr bool 250 constexpr bool [all …]
|
| /netbsd-src/external/bsd/jemalloc/dist/include/jemalloc/ |
| H A D | jemalloc_typedefs.h.in | 6 * size_t alignment, bool *zero, bool *commit, unsigned arena_ind); 8 typedef void *(extent_alloc_t)(extent_hooks_t *, void *, size_t, size_t, bool *, 9 bool *, unsigned); 12 * bool 14 * bool committed, unsigned arena_ind); 16 typedef bool (extent_dalloc_t)(extent_hooks_t *, void *, size_t, bool, 22 * bool committed, unsigned arena_ind); 24 typedef void (extent_destroy_t)(extent_hooks_t *, void *, size_t, bool, 28 * bool 32 typedef bool (extent_commit_t)(extent_hooks_t *, void *, size_t, size_t, size_t, [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | type_traits | 71 constexpr bool is_void_v = is_void<_Tp>::value; 73 constexpr bool is_null_pointer_v = is_null_pointer<_Tp>::value; 75 constexpr bool is_integral_v = is_integral<_Tp>::value; 77 constexpr bool is_floating_point_v = is_floating_point<_Tp>::value; 79 constexpr bool is_array_v = is_array<_Tp>::value; 81 constexpr bool is_pointer_v = is_pointer<_Tp>::value; 83 constexpr bool is_lvalue_reference_v = is_lvalue_reference<_Tp>::value; 85 constexpr bool is_rvalue_reference_v = is_rvalue_reference<_Tp>::value; 87 constexpr bool is_member_object_pointer_v = 90 constexpr bool is_member_function_pointer_v = [all …]
|
| H A D | propagate_const | 119 is_convertible<_Up&&, _Tp>>::value, bool 128 bool>::type=false> 138 >::value, bool>::type=true> 148 >::value, bool>::type=false> 177 explicit constexpr operator bool() const 179 return bool(_M_t); 191 >::value, bool>::type = true> 217 >::value, bool>::type = true> 247 constexpr bool 254 constexpr bool [all …]
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/ |
| H A D | filesystem | 21 bool operator==(const path& lhs, const path& rhs) noexcept; 22 bool operator!=(const path& lhs, const path& rhs) noexcept; 23 bool operator< (const path& lhs, const path& rhs) noexcept; 24 bool operator<=(const path& lhs, const path& rhs) noexcept; 25 bool operator> (const path& lhs, const path& rhs) noexcept; 26 bool operator>=(const path& lhs, const path& rhs) noexcept; 90 bool copy_file(const path& from, const path& to); 91 bool copy_file(const path& from, const path& to, error_code& ec); 92 bool copy_file(const path& from, const path& to, copy_options option); 93 bool copy_file(const path& from, const path& to, copy_options option, [all …]
|
| H A D | propagate_const | 25 template <class T> constexpr bool operator==(const propagate_const<T>& pt, nullptr_t); 26 template <class T> constexpr bool operator==(nullptr_t, const propagate_const<T>& pu); 27 template <class T> constexpr bool operator!=(const propagate_const<T>& pt, nullptr_t); 28 template <class T> constexpr bool operator!=(nullptr_t, const propagate_const<T>& pu); 29 …template <class T, class U> constexpr bool operator==(const propagate_const<T>& pt, const propagat… 30 …template <class T, class U> constexpr bool operator!=(const propagate_const<T>& pt, const propagat… 31 …template <class T, class U> constexpr bool operator<(const propagate_const<T>& pt, const propagate… 32 …template <class T, class U> constexpr bool operator>(const propagate_const<T>& pt, const propagate… 33 …template <class T, class U> constexpr bool operator<=(const propagate_const<T>& pt, const propagat… 34 …template <class T, class U> constexpr bool operator>=(const propagate_const<T>& pt, const propagat… [all …]
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 19 // Supported types: bool, const char *, int, uptr. 24 bool, symbolize, true, 32 bool, allow_addr2line, false, 38 COMMON_FLAG(bool, fast_unwind_on_check, false, 41 COMMON_FLAG(bool, fast_unwind_on_fatal, false, 44 COMMON_FLAG(bool, fast_unwind_on_malloc, true, 47 COMMON_FLAG(bool, handle_ioctl, false, "Intercept and handle ioctl requests.") 55 bool, log_exe_name, false, 59 bool, log_to_syslog, (bool)SANITIZER_ANDROID || (bool)SANITIZER_MAC, 65 COMMON_FLAG(bool, strip_env, 1, [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 17 // Supported types: bool, const char *, int, uptr. 22 bool, symbolize, true, 30 bool, allow_addr2line, true, 36 COMMON_FLAG(bool, fast_unwind_on_check, false, 39 COMMON_FLAG(bool, fast_unwind_on_fatal, false, 42 COMMON_FLAG(bool, fast_unwind_on_malloc, true, 45 COMMON_FLAG(bool, handle_ioctl, false, "Intercept and handle ioctl requests.") 53 bool, log_exe_name, false, 57 bool, log_to_syslog, (bool)SANITIZER_ANDROID || (bool)SANITIZER_MAC, 63 COMMON_FLAG(bool, strip_env, 1, [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 18 // Supported types: bool, const char *, int, uptr. 23 bool, symbolize, true, 31 bool, allow_addr2line, false, 37 COMMON_FLAG(bool, fast_unwind_on_check, false, 40 COMMON_FLAG(bool, fast_unwind_on_fatal, false, 47 COMMON_FLAG(bool, fast_unwind_on_malloc, 51 COMMON_FLAG(bool, handle_ioctl, false, "Intercept and handle ioctl requests.") 59 bool, log_exe_name, false, 65 bool, log_to_syslog, (bool)SANITIZER_ANDROID || (bool)SANITIZER_MAC, 71 COMMON_FLAG(bool, strip_env, 1, [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr2/ |
| H A D | bool_set | 49 * The implicit conversion to bool is slippery! I may use the new 51 * so that in contexts requiring a bool the conversion happens 61 /// Constructor from bool. 62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { } 65 bool contains(bool_set __b) const 69 bool equals(bool_set __b) const 73 bool is_emptyset() const 77 bool is_indeterminate() const 81 bool is_singleton() const 84 /// Conversion to bool. [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr2/ |
| H A D | bool_set | 49 * The implicit conversion to bool is slippery! I may use the new 51 * so that in contexts requiring a bool the conversion happens 61 /// Constructor from bool. 62 constexpr bool_set(bool __t) : _M_b(_Bool_set_val(__t)) { } 65 bool contains(bool_set __b) const 69 bool equals(bool_set __b) const 73 bool is_emptyset() const 77 bool is_indeterminate() const 81 bool is_singleton() const 84 /// Conversion to bool. [all …]
|
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/ |
| H A D | networkconfig.ui | 141 <bool>false</bool> 164 <bool>false</bool> 178 <bool>false</bool> 195 <bool>false</bool> 215 <bool>false</bool> 222 <bool>true</bool> 231 <bool>false</bool> 241 <bool>false</bool> 251 <bool>false</bool> 261 <bool>false</bool> [all …]
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| H A D | msan_flags.inc | 24 MSAN_FLAG(bool, poison_heap_with_zeroes, false, "") 25 MSAN_FLAG(bool, poison_stack_with_zeroes, false, "") 26 MSAN_FLAG(bool, poison_in_malloc, true, "") 27 MSAN_FLAG(bool, poison_in_free, true, "") 28 MSAN_FLAG(bool, poison_in_dtor, false, "") 29 MSAN_FLAG(bool, report_umrs, true, "") 30 MSAN_FLAG(bool, wrap_signals, true, "") 31 MSAN_FLAG(bool, print_stats, false, "") 32 MSAN_FLAG(bool, halt_on_error, !&__msan_keep_going, "") 33 MSAN_FLAG(bool, atexit, false, "")
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| H A D | tsan_flags.inc | 18 TSAN_FLAG(bool, enable_annotations, true, 22 TSAN_FLAG(bool, suppress_equal_stacks, true, 25 TSAN_FLAG(bool, suppress_equal_addresses, true, 29 TSAN_FLAG(bool, report_bugs, true, 31 TSAN_FLAG(bool, report_thread_leaks, true, "Report thread leaks at exit?") 32 TSAN_FLAG(bool, report_destroy_locked, true, 34 TSAN_FLAG(bool, report_mutex_bugs, true, 36 TSAN_FLAG(bool, report_signal_unsafe, true, 39 TSAN_FLAG(bool, report_atomic_races, true, 42 bool, force_seq_cst_atomics, false, [all …]
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| H A D | tsan_flags.inc | 20 TSAN_FLAG(bool, enable_annotations, true, 24 TSAN_FLAG(bool, suppress_equal_stacks, true, 27 TSAN_FLAG(bool, suppress_equal_addresses, true, 31 TSAN_FLAG(bool, report_bugs, true, 33 TSAN_FLAG(bool, report_thread_leaks, true, "Report thread leaks at exit?") 34 TSAN_FLAG(bool, report_destroy_locked, true, 36 TSAN_FLAG(bool, report_mutex_bugs, true, 38 TSAN_FLAG(bool, report_signal_unsafe, true, 41 TSAN_FLAG(bool, report_atomic_races, true, 44 bool, force_seq_cst_atomics, false, [all …]
|