Home
last modified time | relevance | path

Searched refs:bool (Results 1 – 25 of 492) sorted by relevance

12345678910>>...20

/openbsd/src/gnu/llvm/libcxx/include/
Dlimits23 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 …]
Dfilesystem81 friend bool operator==(const path& lhs, const path& rhs) noexcept;
82 … friend bool operator!=(const path& lhs, const path& rhs) noexcept; // removed in C++20
83 … friend bool operator< (const path& lhs, const path& rhs) noexcept; // removed in C++20
84 … friend bool operator<=(const path& lhs, const path& rhs) noexcept; // removed in C++20
85 … friend bool operator> (const path& lhs, const path& rhs) noexcept; // removed in C++20
86 … friend bool operator>=(const path& lhs, const path& rhs) noexcept; // removed in C++20
129 [[nodiscard]] bool empty() const noexcept;
130 bool has_root_name() const;
131 bool has_root_directory() const;
132 bool has_root_path() const;
[all …]
Dcompare23 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; }
73 friend constexpr bool operator==(partial_ordering v, unspecified) noexcept;
74 friend constexpr bool operator==(partial_ordering v, partial_ordering w) noexcept = default;
75 friend constexpr bool operator< (partial_ordering v, unspecified) noexcept;
76 friend constexpr bool operator> (partial_ordering v, unspecified) noexcept;
[all …]
Dtype_traits21 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 …]
Doptional31 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 …]
Dshared_mutex32 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 …]
Dsystem_error30 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; // removed in C++20
36 bool operator<(const error_category& rhs) const noexcept; // removed in C++20
50 inline constexpr bool is_error_condition_enum_v = is_error_condition_enum<_Tp>::value; // C++17
53 inline constexpr bool is_error_code_enum_v = is_error_code_enum<_Tp>::value; // C++17
75 explicit operator bool() const noexcept;
102 explicit operator bool() const noexcept;
127 bool operator==(const error_code& lhs, const error_code& rhs) noexcept;
[all …]
Dtypeindex25 bool operator==(const type_index& rhs) const noexcept;
26 bool operator!=(const type_index& rhs) const noexcept; // removed in C++20
27 bool operator< (const type_index& rhs) const noexcept;
28 bool operator<=(const type_index& rhs) const noexcept;
29 bool operator> (const type_index& rhs) const noexcept;
30 bool operator>=(const type_index& rhs) const noexcept;
71 bool operator==(const type_index& __y) const _NOEXCEPT
75 bool operator!=(const type_index& __y) const _NOEXCEPT
79 bool operator< (const type_index& __y) const _NOEXCEPT
82 bool operator<=(const type_index& __y) const _NOEXCEPT
[all …]
D__debug73 virtual bool __dereferenceable(const void*) const = 0;
74 virtual bool __decrementable(const void*) const = 0;
75 virtual bool __addable(const void*, ptrdiff_t) const = 0;
76 virtual bool __subscriptable(const void*, ptrdiff_t) const = 0;
89 bool __dereferenceable(const void*) const override;
90 bool __decrementable(const void*) const override;
91 bool __addable(const void*, ptrdiff_t) const override;
92 bool __subscriptable(const void*, ptrdiff_t) const override;
96 inline bool
106 inline bool
[all …]
Drandom55 bool
60 bool
119 bool
127 bool
177 bool
183 bool
232 bool
238 bool
284 bool
290 bool
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/
Dapidoc.fnc18 Amd||__ASSERT_|bool expr
19 Amd||ASSUME|bool expr
32 Amd|SV *|boolSV|bool b
38 Amd|bool|cBOOL|bool expr
39 Amd|bool|ckWARN|U32 w
40 Amd|bool|ckWARN2|U32 w1|U32 w2
41 Amd|bool|ckWARN2_d|U32 w1|U32 w2
42 Amd|bool|ckWARN3|U32 w1|U32 w2|U32 w3
43 Amd|bool|ckWARN3_d|U32 w1|U32 w2|U32 w3
44 Amd|bool|ckWARN4|U32 w1|U32 w2|U32 w3|U32 w4
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Tools/
DTiny.pm28 my ($bool, $name, @diag) = @_;
31 return $ctx->pass_and_release($name) if $bool;
39 my $bool;
41 $bool = "$got" eq "$want";
44 $bool = 0;
47 $bool = 1;
50 return $ctx->pass_and_release($name) if $bool;
66 my $bool;
68 $bool = "$got" ne "$want";
71 $bool = 1;
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_flags.inc18 // 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_APPLE,
71 COMMON_FLAG(bool, strip_env, true,
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/msan/
Dmsan_flags.inc23 MSAN_FLAG(bool, poison_heap_with_zeroes, false, "")
24 MSAN_FLAG(bool, poison_stack_with_zeroes, false, "")
25 MSAN_FLAG(bool, poison_in_malloc, true, "")
26 MSAN_FLAG(bool, poison_in_free, true, "")
27 MSAN_FLAG(bool, poison_in_dtor, true, "")
28 MSAN_FLAG(bool, report_umrs, true, "")
29 MSAN_FLAG(bool, wrap_signals, true, "")
30 MSAN_FLAG(bool, print_stats, false, "")
31 MSAN_FLAG(bool, halt_on_error, !&__msan_keep_going, "")
32 MSAN_FLAG(bool, atexit, false, "")
/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/rtl/
Dtsan_flags.inc19 TSAN_FLAG(bool, enable_annotations, true,
23 TSAN_FLAG(bool, suppress_equal_stacks, true,
26 TSAN_FLAG(bool, report_bugs, true,
28 TSAN_FLAG(bool, report_thread_leaks, true, "Report thread leaks at exit?")
29 TSAN_FLAG(bool, report_destroy_locked, true,
31 TSAN_FLAG(bool, report_mutex_bugs, true,
33 TSAN_FLAG(bool, report_signal_unsafe, true,
36 TSAN_FLAG(bool, report_atomic_races, true,
39 bool, force_seq_cst_atomics, false,
42 TSAN_FLAG(bool, force_background_thread, false,
[all …]
/openbsd/src/gnu/llvm/libcxx/include/experimental/
Dpropagate_const26 template <class T> constexpr bool operator==(const propagate_const<T>& pt, nullptr_t);
27 template <class T> constexpr bool operator==(nullptr_t, const propagate_const<T>& pu);
28 template <class T> constexpr bool operator!=(const propagate_const<T>& pt, nullptr_t);
29 template <class T> constexpr bool operator!=(nullptr_t, const propagate_const<T>& pu);
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 propagat…
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 propagate…
34 …template <class T, class U> constexpr bool operator<=(const propagate_const<T>& pt, const propagat…
35 …template <class T, class U> constexpr bool operator>=(const propagate_const<T>& pt, const propagat…
[all …]
Dcoroutine29 bool operator==(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
30 bool operator!=(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
31 bool operator<(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
32 bool operator<=(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
33 bool operator>=(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
34 bool operator>(coroutine_handle<> x, coroutine_handle<> y) _NOEXCEPT;
120 _LIBCPP_CONSTEXPR explicit operator bool() const _NOEXCEPT { return __handle_; }
142 bool done() const {
162 template <class _Tp, bool _CallIsValid = false>
170 bool __is_suspended() const _NOEXCEPT {
[all …]
/openbsd/src/gnu/gcc/libstdc++-v3/include/tr1/
Dhashtable83 // a bool-like value that is true if the two objects are considered equal.
112 // __cache_hash_code: bool. true if we store the value of the hash
117 // __constant_iterators: bool. true if iterator and const_iterator are
121 // __unique_keys: bool. true if the return value of _Hashtable::count(k)
130 bool __cache_hash_code,
131 bool __constant_iterators,
132 bool __unique_keys>
269 bool
367 std::pair<iterator, bool>, iterator>::__type
384 std::pair<iterator, bool>
[all …]
Dtype_traits63 static const bool __value = sizeof(__test<_Tp>(0)) == 1;
67 : public integral_constant<bool, _Value> { };
98 typedef integral_constant<bool, true> true_type;
99 typedef integral_constant<bool, false> false_type;
113 _DEFINE_SPEC(0, is_integral, bool, true)
175 : public integral_constant<bool, !(is_fundamental<_Tp>::value
192 : public integral_constant<bool, !(__in_array<_Tp>::__value
201 : public integral_constant<bool, (is_integral<_Tp>::value
207 : public integral_constant<bool, (is_arithmetic<_Tp>::value
213 : public integral_constant<bool, !(is_function<_Tp>::value
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/
Dasan_flags.inc37 bool, debug, false,
44 ASAN_FLAG(bool, check_initialization_order, false,
47 bool, replace_str, true,
50 ASAN_FLAG(bool, replace_intrin, true,
52 ASAN_FLAG(bool, detect_stack_use_after_return,
60 ASAN_FLAG(bool, uar_noreserve, false,
74 ASAN_FLAG(bool, allow_user_poisoning, true,
90 ASAN_FLAG(bool, check_malloc_usable_size, true,
93 ASAN_FLAG(bool, unmap_shadow_on_exit, false,
95 ASAN_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap")
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/lsan/
Dlsan_flags.inc19 LSAN_FLAG(bool, report_objects, false,
28 LSAN_FLAG(bool, use_globals, true,
30 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks")
31 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers")
32 LSAN_FLAG(bool, use_tls, true,
34 LSAN_FLAG(bool, use_root_regions, true,
36 LSAN_FLAG(bool, use_ld_allocations, true,
41 LSAN_FLAG(bool, use_unaligned, false, "Consider unaligned pointers valid.")
42 LSAN_FLAG(bool, use_poisoned, false,
44 LSAN_FLAG(bool, log_pointers, false, "Debug logging")
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DFPOptions.def17 OPTION(RoundingMath, bool, 1, FPContractMode)
20 OPTION(AllowFEnvAccess, bool, 1, SpecifiedExceptionMode)
21 OPTION(AllowFPReassociate, bool, 1, AllowFEnvAccess)
22 OPTION(NoHonorNaNs, bool, 1, AllowFPReassociate)
23 OPTION(NoHonorInfs, bool, 1, NoHonorNaNs)
24 OPTION(NoSignedZero, bool, 1, NoHonorInfs)
25 OPTION(AllowReciprocal, bool, 1, NoSignedZero)
26 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal)
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/
DContext.pm512 my ($bool, $name) = @_;
515 if ($bool) {
523 return $bool;
531 my ($bool, $name) = @_;
535 my $out = my_ok($bool, $name);
717 my ($bool, $name) = @_;
719 return $ctx->pass_and_release($name) if $bool;
725 my ($bool, $name) = @_;
728 if ($bool) {
760 my ($bool, $name) = @_;
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/hwasan/
Dhwasan_flags.inc19 HWASAN_FLAG(bool, verbose_threads, false,
21 HWASAN_FLAG(bool, tag_in_malloc, true, "")
22 HWASAN_FLAG(bool, tag_in_free, true, "")
23 HWASAN_FLAG(bool, print_stats, false, "")
24 HWASAN_FLAG(bool, halt_on_error, true, "")
25 HWASAN_FLAG(bool, atexit, false, "")
29 HWASAN_FLAG(bool, disable_allocator_tagging, false, "")
33 HWASAN_FLAG(bool, random_tags, true, "")
40 HWASAN_FLAG(bool, free_checks_tail_magic, 1,
56 HWASAN_FLAG(bool, export_memory_stats, true,
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/
DAnalyzerOptions.def85 ANALYZER_OPTION(bool, ShouldIncludeImplicitDtorsInCFG, "cfg-implicit-dtors",
90 ANALYZER_OPTION(bool, ShouldIncludeTemporaryDtorsInCFG, "cfg-temporary-dtors",
96 bool, ShouldIncludeLifetimeInCFG, "cfg-lifetime",
100 ANALYZER_OPTION(bool, ShouldIncludeLoopExitInCFG, "cfg-loopexit",
105 ANALYZER_OPTION(bool, ShouldIncludeRichConstructorsInCFG,
112 bool, ShouldIncludeScopesInCFG, "cfg-scopes",
115 ANALYZER_OPTION(bool, ShouldIncludeDefaultInitForAggregates,
122 bool, MayInlineTemplateFunctions, "c++-template-inlining",
125 ANALYZER_OPTION(bool, MayInlineCXXStandardLibrary, "c++-stdlib-inlining",
130 ANALYZER_OPTION(bool, MayInlineCXXAllocator, "c++-allocator-inlining",
[all …]

12345678910>>...20