Searched refs:equivalent (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-current/contrib/llvm-project/libcxx/src/
H A Derror_category.cpp29 bool error_category::equivalent(int code, const error_condition& condition) const noexcept {
33 bool error_category::equivalent(const error_code& code, int condition) const noexcept {
/freebsd-current/contrib/llvm-project/libcxx/include/__compare/
H A Dcommon_comparison_category.h63 return partial_ordering::equivalent;
65 return weak_ordering::equivalent;
67 return strong_ordering::equivalent;
H A Dordering.h57 static const partial_ordering equivalent; member in class:_OrdResult::_NCmpResult::partial_ordering
115 inline constexpr partial_ordering partial_ordering::equivalent(_OrdResult::__equiv);
126 static const weak_ordering equivalent; member in class:_OrdResult::_NCmpResult::weak_ordering
130 return __value_ == 0 ? partial_ordering::equivalent
186 inline constexpr weak_ordering weak_ordering::equivalent(_OrdResult::__equiv);
197 static const strong_ordering equivalent; member in class:_OrdResult::_NCmpResult::strong_ordering
202 return __value_ == 0 ? partial_ordering::equivalent
207 return __value_ == 0 ? weak_ordering::equivalent : (__value_ < 0 ? weak_ordering::less : weak_ordering::greater);
265 inline constexpr strong_ordering strong_ordering::equivalent(_OrdResult::__equiv);
H A Dcompare_weak_order_fallback.h42 std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? weak_ordering::equivalent member in class:__compare_weak_order_fallback::__fn::weak_ordering
46 -> decltype(std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? weak_ordering::equivalent
50 return std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? weak_ordering::equivalent
H A Dsynth_three_way.h46 return weak_ordering::equivalent;
H A Dcompare_partial_order_fallback.h42 std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? partial_ordering::equivalent member in class:__compare_partial_order_fallback::__fn::partial_ordering
47 -> decltype(std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? partial_ordering::equivalent
52 return std::forward<_Tp>(__t) == std::forward<_Up>(__u) ? partial_ordering::equivalent
H A Dweak_order.h48 } else if (__po == partial_ordering::equivalent) {
49 return weak_ordering::equivalent;
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/
H A DFileMatchTrie.h29 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
50 /// \c llvm::sys::fs::equivalent() (injected as \c PathComparator). There might
52 /// equivalent to the input file. Three cases are distinguished:
53 /// 0 equivalent files: Continue with the next suffix length.
54 /// 1 equivalent file: Best match found, return it.
55 /// >1 equivalent files: Match is ambiguous, return error.
72 /// Returns file name stored in this trie that is equivalent to 'FileName'
/freebsd-current/contrib/llvm-project/libcxx/include/__system_error/
H A Derror_category.h42 virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT;
43 virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT;
H A Derror_code.h97 return __x.category().equivalent(__x.value(), __y) || __y.category().equivalent(__x, __y.value());
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp27 /// Default \c PathComparator using \c llvm::sys::fs::equivalent().
29 bool equivalent(StringRef FileA, StringRef FileB) const override {
30 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB);
95 /// whether the stored path is equivalent to 'p'. If yes, the best match is
101 /// equivalent, continue with the parent node as if 'n' didn't exist. If one
102 /// is equivalent, the best match is found. Otherwise, report and ambigiuity
114 Comparator.equivalent(StringRef(Path), FileName))
140 if (Comparator.equivalent(Child, FileName)) {
/freebsd-current/contrib/libarchive/cat/
H A Dcmdline.c53 * The symbolic names for options that lack a short equivalent are
62 int equivalent; /* Equivalent short option. */ member in struct:bsdcat_option
284 return (match->equivalent);
/freebsd-current/contrib/libarchive/unzip/
H A Dcmdline.c53 * The symbolic names for options that lack a short equivalent are
62 int equivalent; /* Equivalent short option. */ member in struct:bsdunzip_option
249 return (match->equivalent);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DProcess.cpp56 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); }))
/freebsd-current/share/mk/
H A Dsrc.lua.mk22 # flua is currently equivalent to Lua 5.3, with the following modules:
/freebsd-current/contrib/libarchive/cpio/
H A Dcmdline.c61 int equivalent; /* Equivalent short option. */ member in struct:option
281 return (match->equivalent);
/freebsd-current/contrib/libarchive/tar/
H A Dcmdline.c54 * The symbolic names for options that lack a short equivalent are
63 int equivalent; /* Equivalent short option. */ member in struct:bsdtar_option
422 return (match->equivalent);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h890 // and the value is the equivalent hardware topology type in the
893 kmp_hw_t equivalent[KMP_HW_LAST]; member in class:kmp_topology_t
929 // Set the last level cache equivalent type
982 // returns KMP_HW_UNKNOWN when there is no equivalent type
986 return equivalent[type];
992 kmp_hw_t real_type2 = equivalent[type2];
995 equivalent[type1] = real_type2;
997 // be equivalent to type1. They all must be checked and reset to type2.
999 if (equivalent[type] == type1) {
1000 equivalent[typ
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h16 // category. However, they shall be equivalent to any error conditions listed
227 friend bool equivalent(file_status A, file_status B);
488 bool equivalent(file_status A, file_status B);
497 /// inode (or equivalent).
500 std::error_code equivalent(const Twine &A, const Twine &B, bool &result);
502 /// Simpler version of equivalent for clients that don't need to
504 inline bool equivalent(const Twine &A, const Twine &B) { function in namespace:llvm::sys::fs
506 return !equivalent(A, B, result) && result;
1007 /// of bytes actually read. On Unix, this is equivalent to `return ::read(FD,
/freebsd-current/contrib/bmake/unit-tests/
H A Dcond-undef-lint.mk72 # nested variables into empty strings, as an equivalent to the :U modifier.
/freebsd-current/contrib/bmake/mk/
H A Dsys.clean-env.mk95 # We are going to set this to the equivalent of the shell's
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dfilesystem.inc74 using std::filesystem::equivalent;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp191 if (llvm::sys::fs::equivalent(file_spec.GetPath(),
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp39 // system if they're equivalent. But if the source isn't present on disk
41 if (llvm::sys::fs::equivalent(main, other))
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DTest.pm842 C<ok_nofips> is equivalent to using C<ok> when the environment variable
843 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<not ok>. This can be
854 C<is_nofips> is equivalent to using C<is> when the environment variable
855 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<isnt>. This can be
866 C<isnt_nofips> is equivalent to using C<isnt> when the environment variable
867 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<is>. This can be

Completed in 147 milliseconds

12