Searched refs:rhs (Results 226 - 250 of 572) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h25 const ValueObjectList &operator=(const ValueObjectList &rhs);
H A DDisassembler.h201 static Operand BuildSum(const Operand &lhs, const Operand &rhs);
202 static Operand BuildProduct(const Operand &lhs, const Operand &rhs);
485 bool operator==(const SourceLine &rhs) const {
486 return file == rhs.file && line == rhs.line && rhs.column == column;
489 bool operator!=(const SourceLine &rhs) const {
490 return file != rhs.file || line != rhs.line || column != rhs
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DSharingPtr.h498 IntrusiveSharingPtr(const IntrusiveSharingPtr &rhs) : ptr_(rhs.ptr_) { argument
503 IntrusiveSharingPtr(const IntrusiveSharingPtr<X> &rhs) : ptr_(rhs.get()) { argument
507 IntrusiveSharingPtr &operator=(const IntrusiveSharingPtr &rhs) { argument
508 reset(rhs.get());
513 IntrusiveSharingPtr &operator=(const IntrusiveSharingPtr<X> &rhs) { argument
514 reset(rhs.get());
536 void swap(IntrusiveSharingPtr &rhs) { argument
537 std::swap(ptr_, rhs
576 operator ==(const IntrusiveSharingPtr<T> &lhs, const IntrusiveSharingPtr<U> &rhs) argument
582 operator !=(const IntrusiveSharingPtr<T> &lhs, const IntrusiveSharingPtr<U> &rhs) argument
588 operator ==(const IntrusiveSharingPtr<T> &lhs, U *rhs) argument
593 operator !=(const IntrusiveSharingPtr<T> &lhs, U *rhs) argument
598 operator ==(T *lhs, const IntrusiveSharingPtr<U> &rhs) argument
603 operator !=(T *lhs, const IntrusiveSharingPtr<U> &rhs) argument
[all...]
H A DFileSpec.h84 /// Tests if this object is equal to \a rhs.
86 /// \param[in] rhs
91 /// \b true if this object is equal to \a rhs, \b false
93 bool operator==(const FileSpec &rhs) const;
97 /// Tests if this object is not equal to \a rhs.
99 /// \param[in] rhs
104 /// \b true if this object is equal to \a rhs, \b false
106 bool operator!=(const FileSpec &rhs) const;
110 /// Tests if this object is less than \a rhs.
112 /// \param[in] rhs
[all...]
H A DStringLexer.h45 StringLexer &operator=(const StringLexer &rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp505 bool RegisterValue::CopyValue(const RegisterValue &rhs) { argument
506 if (this == &rhs)
507 return rhs.m_type != eTypeInvalid;
509 m_type = rhs.m_type;
521 m_scalar = rhs.m_scalar;
524 assert(rhs.buffer.length <= kMaxRegisterByteSize);
525 ::memcpy(buffer.bytes, rhs.buffer.bytes, kMaxRegisterByteSize);
526 buffer.length = rhs.buffer.length;
527 buffer.byte_order = rhs.buffer.byte_order;
795 bool RegisterValue::operator==(const RegisterValue &rhs) cons
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpoint.h23 SBBreakpoint(const lldb::SBBreakpoint &rhs);
29 const lldb::SBBreakpoint &operator=(const lldb::SBBreakpoint &rhs);
32 // opaque breakpoint object in "rhs".
33 bool operator==(const lldb::SBBreakpoint &rhs);
35 bool operator!=(const lldb::SBBreakpoint &rhs);
H A DSBCommandReturnObject.h32 SBCommandReturnObject(const lldb::SBCommandReturnObject &rhs);
37 operator=(const lldb::SBCommandReturnObject &rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBPlatform.i17 SBPlatformConnectOptions (const SBPlatformConnectOptions &rhs);
50 SBPlatformShellCommand (const SBPlatformShellCommand &rhs);
H A DSBError.i62 SBError (const lldb::SBError &rhs);
H A DSBStructuredData.i22 SBStructuredData(const lldb::SBStructuredData &rhs);
H A DSBUnixSignals.i19 SBUnixSignals (const lldb::SBUnixSignals &rhs);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSValBuilder.h118 NonLoc lhs, NonLoc rhs, QualType resultTy) = 0;
123 Loc lhs, Loc rhs, QualType resultTy) = 0;
129 Loc lhs, NonLoc rhs, QualType resultTy) = 0;
142 NonLoc lhs, NonLoc rhs, QualType resultTy);
145 SVal lhs, SVal rhs, QualType type);
147 /// \return Whether values in \p lhs and \p rhs are equal at \p state.
148 ConditionTruthVal areEqual(ProgramStateRef state, SVal lhs, SVal rhs);
150 SVal evalEQ(ProgramStateRef state, SVal lhs, SVal rhs);
153 DefinedOrUnknownSVal rhs);
323 const llvm::APSInt& rhs, QualTyp
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Darch-utils.h59 extern int core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs);
60 extern int core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs);
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dvarmisc.exp15 :? only rhs when value false
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dtime.h75 timespec_sub(struct timespec lhs, struct timespec rhs) argument
81 timespecsub(&ts, &rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnixSignals.h123 UnixSignals(const UnixSignals &rhs);
125 const UnixSignals &operator=(const UnixSignals &rhs) = delete; member in class:lldb_private::UnixSignals
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManagerInternals.h66 inline bool operator<(const LineEntry &lhs, const LineEntry &rhs) { argument
68 return lhs.FileOffset < rhs.FileOffset;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp31 ListEntry(const ListEntry &rhs) = default; member in class:__anon1457::ListEntry
65 bool operator==(const ListEntry &rhs) const { return value() == rhs.value(); }
67 bool operator!=(const ListEntry &rhs) const { return !(*this == rhs); }
78 ListIterator(const ListIterator &rhs) = default; member in class:__anon1457::ListIterator
99 bool operator==(const ListIterator &rhs) const {
100 return (rhs.m_entry == m_entry);
H A DLibCxxMap.cpp29 MapEntry(const MapEntry &rhs) = default; member in class:MapEntry
77 bool operator==(const MapEntry &rhs) const {
78 return (rhs.m_entry_sp.get() == m_entry_sp.get());
92 MapIterator(const MapIterator &rhs) argument
93 : m_entry(rhs.m_entry), m_max_depth(rhs.m_max_depth), m_error(false) {}
163 MapEntry rhs(x.parent());
164 rhs.SetEntry(rhs.left());
165 return x.value() == rhs
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFBaseDIE.h126 bool operator==(const DWARFBaseDIE &lhs, const DWARFBaseDIE &rhs);
127 bool operator!=(const DWARFBaseDIE &lhs, const DWARFBaseDIE &rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBStructuredData.cpp31 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) argument
32 : m_impl_up(new StructuredDataImpl(*rhs.m_impl_up.get())) {
34 rhs);
51 operator=(const lldb::SBStructuredData &rhs) { argument
54 SBStructuredData, operator=,(const lldb::SBStructuredData &), rhs);
56 *m_impl_up = *rhs.m_impl_up;
H A DSBTypeCategory.cpp38 SBTypeCategory::SBTypeCategory(const lldb::SBTypeCategory &rhs) argument
39 : m_opaque_sp(rhs.m_opaque_sp) {
40 LLDB_RECORD_CONSTRUCTOR(SBTypeCategory, (const lldb::SBTypeCategory &), rhs);
611 operator=(const lldb::SBTypeCategory &rhs) { argument
614 rhs);
616 if (this != &rhs) {
617 m_opaque_sp = rhs.m_opaque_sp;
622 bool SBTypeCategory::operator==(lldb::SBTypeCategory &rhs) { argument
624 rhs);
627 return !rhs
632 operator !=(lldb::SBTypeCategory &rhs) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dipa-pure-const.c194 indirect reference that occurs on the rhs disqualifies the
419 tree rhs = TREE_OPERAND (t, 1); local
424 /* Next check the operands on the rhs to see if they are ok. */
425 switch (TREE_CODE_CLASS (TREE_CODE (rhs)))
429 tree op0 = TREE_OPERAND (rhs, 0);
430 tree op1 = TREE_OPERAND (rhs, 1);
437 tree op0 = TREE_OPERAND (rhs, 0);
443 check_rhs_var (local, rhs);
446 check_rhs_var (local, rhs);
449 switch (TREE_CODE (rhs))
[all...]
H A Dtree-complex.c193 tree orig_stmt, stmt, rhs = NULL; local
215 rhs = TREE_OPERAND (stmt, 1);
219 rhs = TREE_OPERAND (stmt, 0);
226 if (rhs)
227 switch (TREE_CODE (rhs))
231 rhs = TREE_OPERAND (rhs, 0);
244 if (TREE_CODE (TREE_TYPE (rhs)) == COMPLEX_TYPE)
268 tree lhs, rhs; local
274 rhs
728 expand_complex_move(block_stmt_iterator *bsi, tree stmt, tree type, tree lhs, tree rhs) argument
1330 tree rhs, type, inner_type; local
1388 tree rhs = TREE_OPERAND (stmt, 1); local
[all...]

Completed in 129 milliseconds

1234567891011>>