Searched refs:other (Results 1 - 25 of 513) sorted by relevance

1234567891011>>

/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-var-literal.exp0 other ${VALUE} $$$$
H A Dopt-var-expanded.exp0 other value $$
H A Dopt-ignore.exp6 other 1
8 other 2
/freebsd-current/crypto/openssh/regress/
H A Dallow-deny-users.sh11 other="nobody"
37 test_auth "$other $me" "" false "user in DenyUsers allowed"
38 test_auth "$me $other" "" false "user in DenyUsers allowed"
39 test_auth "" "$other" false "user not in AllowUsers allowed"
40 test_auth "" "$other $me" true "user in AllowUsers denied"
41 test_auth "" "$me $other" true "user in AllowUsers denied"
42 test_auth "$me $other" "$me $other" false "user in both DenyUsers and AllowUsers allowed"
43 test_auth "$other $me" "$other
[all...]
/freebsd-current/contrib/googletest/googletest/src/
H A Dgtest-assertion-result.cc12 // in the documentation and/or other materials provided with the
45 AssertionResult::AssertionResult(const AssertionResult& other) argument
46 : success_(other.success_),
47 message_(other.message_ != nullptr
48 ? new ::std::string(*other.message_)
52 void AssertionResult::swap(AssertionResult& other) { argument
54 swap(success_, other.success_);
55 swap(message_, other.message_);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSupportFile.h28 SupportFile(const SupportFile &other) = delete; member in class:lldb_private::SupportFile
29 SupportFile(SupportFile &&other) = default; member in class:lldb_private::SupportFile
33 bool operator==(const SupportFile &other) const {
34 return m_file_spec == other.m_file_spec && m_checksum == other.m_checksum;
37 bool operator!=(const SupportFile &other) const { return !(*this == other); }
H A DXcodeSDK.h52 bool operator<(const Info &other) const;
53 bool operator==(const Info &other) const;
70 void Merge(const XcodeSDK &other);
72 XcodeSDK &operator=(const XcodeSDK &other);
74 bool operator==(const XcodeSDK &other) const;
/freebsd-current/contrib/kyua/utils/fs/
H A Ddirectory.cpp12 // documentation and/or other materials provided with the distribution.
62 /// \param other The entry to compare to.
66 fs::directory_entry::operator==(const directory_entry& other) const
68 return name == other.name;
74 /// \param other The entry to compare to.
78 fs::directory_entry::operator!=(const directory_entry& other) const
80 return !(*this == other);
86 /// \param other The entry to compare to.
88 /// \return True if this entry sorts before the other entry; false otherwise.
90 fs::directory_entry::operator<(const directory_entry& other) cons
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.h40 bool operator==(const VersionType &other) const {
41 return major == other.major && minor == other.minor;
43 bool operator>=(const VersionType &other) const {
44 return major > other.major ||
45 (major == other.major && minor >= other.minor);
47 bool operator<(const VersionType &other) const { return !(*this >= other); }
/freebsd-current/contrib/kyua/utils/
H A Ddatetime.cpp12 // documentation and/or other materials provided with the distribution.
118 /// \param other The object to compare to.
122 datetime::delta::operator==(const datetime::delta& other) const
124 return seconds == other.seconds && useconds == other.useconds;
130 /// \param other The object to compare to.
134 datetime::delta::operator!=(const datetime::delta& other) const
136 return !(*this == other);
142 /// \param other The object to compare to.
144 /// \return True if this time delta is shorter than other; fals
211 operator +=(const datetime::delta& other) argument
549 operator +=(const datetime::delta& other) argument
575 operator -=(const datetime::delta& other) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DWatchdog.h31 Watchdog(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
32 Watchdog &operator=(const Watchdog &other) = delete; member in class:llvm::sys::Watchdog
/freebsd-current/contrib/kyua/model/
H A Dcontext.cpp12 // documentation and/or other materials provided with the distribution.
61 /// \param other The object to compare to.
65 operator==(const impl& other) const
67 return _cwd == other._cwd && _env == other._env;
111 /// \param other The other object to compare this one to.
113 /// \return True if this object and other are equal; false otherwise.
115 model::context::operator==(const context& other) const
117 return *_pimpl == *other
[all...]
H A Dtest_case.cpp12 // documentation and/or other materials provided with the distribution.
99 /// \param other The other object to compare this one to.
101 /// \return True if this object and other are equal; false otherwise.
103 operator==(const impl& other) const
105 return (name == other.name &&
106 get_metadata() == other.get_metadata() &&
107 fake_result == other.fake_result);
254 /// \param other The other objec
[all...]
H A Dtest_result.cpp12 // documentation and/or other materials provided with the distribution.
93 /// \param other The test result to compare to.
95 /// \return True if the other object is equal to this one, false otherwise.
97 model::test_result::operator==(const test_result& other) const
99 return _type == other._type && _reason == other._reason;
105 /// \param other The test result to compare to.
107 /// \return True if the other object is different from this one, false
110 model::test_result::operator!=(const test_result& other) const
112 return !(*this == other);
[all...]
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointNameExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
H A DSBBroadcastExtensions.i6 def __eq__(self, other):
7 return not self.__ne__(other)
H A DSBBreakpointLocationExtensions.i8 def __eq__(self, other):
9 return not self.__ne__(other)
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DVisibility.h94 void mergeLinkage(LinkageInfo other) { argument
95 mergeLinkage(other.getLinkage());
129 void mergeVisibility(LinkageInfo other) { argument
130 mergeVisibility(other.getVisibility(), other.isVisibilityExplicit());
134 void merge(LinkageInfo other) { argument
135 mergeLinkage(other);
136 mergeVisibility(other);
140 void mergeMaybeWithVisibility(LinkageInfo other, bool withVis) { argument
141 mergeLinkage(other);
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Initialization/
H A DSystemLifetimeManager.h36 SystemLifetimeManager(const SystemLifetimeManager &other) = delete; member in class:lldb_private::SystemLifetimeManager
37 SystemLifetimeManager &operator=(const SystemLifetimeManager &other) = delete; member in class:lldb_private::SystemLifetimeManager
/freebsd-current/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cpp30 u32 ChainedOriginDepotGet(u32 id, u32 *other) { argument
31 return chainedOriginDepot.Get(id, other);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/pid/
H A Dtst.branch.s52 be other
60 ENTRY(other)
63 SET_SIZE(other)
/freebsd-current/contrib/libcxxrt/
H A Dtypeinfo.cc12 * and/or other materials provided with the distribution.
36 bool type_info::operator==(const type_info &other) const
38 return __type_name == other.__type_name;
40 bool type_info::operator!=(const type_info &other) const
42 return __type_name != other.__type_name;
44 bool type_info::before(const type_info &other) const
46 return __type_name < other.__type_name;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/delegate/
H A Dzfs_allow_005_pos.ksh66 for other in $EVERYONE; do
70 if [[ $other == $user ]]; then
73 log_must verify_noperm $childfs $perms $other
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp125 // to that routine as well as other places where we write
350 // with the same name defined in other ELF executable or DSO.
386 void Symbol::mergeProperties(const Symbol &other) { argument
387 if (other.exportDynamic)
391 if (!other.isShared() && other.visibility() != STV_DEFAULT) {
392 uint8_t v = visibility(), ov = other.visibility();
397 void Symbol::resolve(const Undefined &other) { argument
398 if (other.visibility() != STV_DEFAULT) {
399 uint8_t v = visibility(), ov = other
577 resolve(const CommonSymbol &other) argument
615 resolve(const Defined &other) argument
626 resolve(const LazySymbol &other) argument
665 resolve(const SharedSymbol &other) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.branch.s62 jz other
69 ENTRY(other)
73 SET_SIZE(other)

Completed in 164 milliseconds

1234567891011>>