Searched refs:rhs (Results 151 - 175 of 572) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h52 bool Union(const Range &rhs) { argument
53 if (DoesAdjoinOrIntersect(rhs)) {
54 auto new_end = std::max<BaseType>(GetRangeEnd(), rhs.GetRangeEnd());
55 base = std::min<BaseType>(base, rhs.base);
91 bool DoesAdjoinOrIntersect(const Range &rhs) const {
93 const BaseType rhs_base = rhs.GetRangeBase();
95 const BaseType rhs_end = rhs.GetRangeEnd();
101 bool DoesIntersect(const Range &rhs) const {
103 const BaseType rhs_base = rhs.GetRangeBase();
105 const BaseType rhs_end = rhs
257 BaseLessThan(const Entry &lhs, const Entry &rhs) argument
492 BaseLessThan(const Entry &lhs, const Entry &rhs) argument
699 BaseLessThan(const Entry &lhs, const Entry &rhs) argument
884 BaseLessThan(const Entry &lhs, const Entry &rhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h110 InferiorSizedWord operator>>(int rhs) const {
112 return InferiorSizedWord(thirty_two >> rhs, 4);
113 return InferiorSizedWord(sixty_four >> rhs, 8);
116 InferiorSizedWord operator<<(int rhs) const {
118 return InferiorSizedWord(thirty_two << rhs, 4);
119 return InferiorSizedWord(sixty_four << rhs, 8);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DExecutionContext.h78 ExecutionContextRef(const ExecutionContextRef &rhs);
125 /// Copy all weak references in \a rhs.
126 ExecutionContextRef &operator=(const ExecutionContextRef &rhs);
297 ExecutionContext(const ExecutionContext &rhs);
344 ExecutionContext &operator=(const ExecutionContext &rhs);
346 bool operator==(const ExecutionContext &rhs) const;
348 bool operator!=(const ExecutionContext &rhs) const;
H A DPathMappingList.h29 PathMappingList(const PathMappingList &rhs);
33 const PathMappingList &operator=(const PathMappingList &rhs);
38 void Append(const PathMappingList &rhs, bool notify);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBExecutionContext.cpp27 SBExecutionContext::SBExecutionContext(const lldb::SBExecutionContext &rhs) argument
28 : m_exe_ctx_sp(rhs.m_exe_ctx_sp) {
30 (const lldb::SBExecutionContext &), rhs);
72 operator=(const lldb::SBExecutionContext &rhs) { argument
75 SBExecutionContext, operator=,(const lldb::SBExecutionContext &), rhs);
77 m_exe_ctx_sp = rhs.m_exe_ctx_sp;
H A DSBBreakpointName.cpp49 bool operator==(const SBBreakpointNameImpl &rhs);
50 bool operator!=(const SBBreakpointNameImpl &rhs);
90 bool SBBreakpointNameImpl::operator==(const SBBreakpointNameImpl &rhs) { argument
91 return m_name == rhs.m_name && m_target_wp.lock() == rhs.m_target_wp.lock();
94 bool SBBreakpointNameImpl::operator!=(const SBBreakpointNameImpl &rhs) { argument
95 return m_name != rhs.m_name || m_target_wp.lock() != rhs.m_target_wp.lock();
150 SBBreakpointName::SBBreakpointName(const SBBreakpointName &rhs) { argument
152 rhs);
164 operator =(const SBBreakpointName &rhs) argument
179 operator ==(const lldb::SBBreakpointName &rhs) argument
186 operator !=(const lldb::SBBreakpointName &rhs) argument
[all...]
H A DSBSection.cpp27 SBSection::SBSection(const SBSection &rhs) : m_opaque_wp(rhs.m_opaque_wp) { argument
28 LLDB_RECORD_CONSTRUCTOR(SBSection, (const lldb::SBSection &), rhs);
39 const SBSection &SBSection::operator=(const SBSection &rhs) { argument
41 SBSection, operator=,(const lldb::SBSection &), rhs);
43 m_opaque_wp = rhs.m_opaque_wp;
253 bool SBSection::operator==(const SBSection &rhs) { argument
255 rhs);
258 SectionSP rhs_section_sp(rhs.GetSP());
264 bool SBSection::operator!=(const SBSection &rhs) { argument
[all...]
H A DSBWatchpoint.cpp36 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs) argument
37 : m_opaque_wp(rhs.m_opaque_wp) {
38 LLDB_RECORD_CONSTRUCTOR(SBWatchpoint, (const lldb::SBWatchpoint &), rhs);
41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) { argument
43 SBWatchpoint, operator=,(const lldb::SBWatchpoint &), rhs);
45 m_opaque_wp = rhs.m_opaque_wp;
73 bool SBWatchpoint::operator==(const SBWatchpoint &rhs) const {
75 bool, SBWatchpoint, operator==,(const SBWatchpoint &), rhs);
77 return GetSP() == rhs.GetSP();
80 bool SBWatchpoint::operator!=(const SBWatchpoint &rhs) cons
[all...]
H A DSBEvent.cpp45 SBEvent::SBEvent(const SBEvent &rhs) argument
46 : m_event_sp(rhs.m_event_sp), m_opaque_ptr(rhs.m_opaque_ptr) {
47 LLDB_RECORD_CONSTRUCTOR(SBEvent, (const lldb::SBEvent &), rhs);
50 const SBEvent &SBEvent::operator=(const SBEvent &rhs) { argument
52 SBEvent, operator=,(const lldb::SBEvent &), rhs);
54 if (this != &rhs) {
55 m_event_sp = rhs.m_event_sp;
56 m_opaque_ptr = rhs.m_opaque_ptr;
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBFunction.i50 SBFunction (const lldb::SBFunction &rhs);
109 operator == (const lldb::SBFunction &rhs) const;
112 operator != (const lldb::SBFunction &rhs) const;
H A DSBSection.i45 SBSection (const lldb::SBSection &rhs);
112 operator == (const lldb::SBSection &rhs);
115 operator != (const lldb::SBSection &rhs);
H A DSBModuleSpec.i17 SBModuleSpec (const lldb::SBModuleSpec &rhs);
103 SBModuleSpecList (const SBModuleSpecList &rhs);
H A DSBTypeEnumMember.i21 SBTypeEnumMember (const SBTypeEnumMember& rhs);
84 SBTypeEnumMemberList(const SBTypeEnumMemberList& rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAttribute.h37 bool operator==(const DWARFAttribute &rhs) const {
38 return m_attr == rhs.m_attr && m_form == rhs.m_form;
H A DDWARFDeclContext.cpp54 bool DWARFDeclContext::operator==(const DWARFDeclContext &rhs) const {
55 if (m_entries.size() != rhs.m_entries.size())
63 collection::const_iterator rhs_begin = rhs.m_entries.begin();
/freebsd-11-stable/contrib/gcc/
H A Dtree-object-size.c697 tree rhs = TREE_OPERAND (stmt, 1), arg; local
698 STRIP_NOPS (rhs);
700 if (TREE_CODE (rhs) == CALL_EXPR)
702 arg = pass_through_call (rhs);
704 rhs = arg;
707 if (TREE_CODE (rhs) == SSA_NAME
708 && POINTER_TYPE_P (TREE_TYPE (rhs)))
709 reexamine = merge_object_sizes (osi, var, rhs, 0);
711 else if (TREE_CODE (rhs) == PLUS_EXPR)
712 reexamine = plus_expr_object_size (osi, var, rhs);
743 tree rhs = PHI_ARG_DEF (stmt, i); local
823 tree rhs = TREE_OPERAND (stmt, 1), arg; local
867 tree rhs = PHI_ARG_DEF (stmt, i); local
901 tree rhs = TREE_OPERAND (stmt, 1), arg; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h21 SBFrame(const lldb::SBFrame &rhs);
23 const lldb::SBFrame &operator=(const lldb::SBFrame &rhs);
134 bool operator==(const lldb::SBFrame &rhs) const;
136 bool operator!=(const lldb::SBFrame &rhs) const;
H A DSBModule.h24 SBModule(const SBModule &rhs);
28 const SBModule &operator=(const SBModule &rhs);
107 bool operator==(const lldb::SBModule &rhs) const;
109 bool operator!=(const lldb::SBModule &rhs) const;
H A DSBAttachInfo.h61 SBAttachInfo(const SBAttachInfo &rhs);
65 SBAttachInfo &operator=(const SBAttachInfo &rhs);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompactUnwindInfo.h69 bool operator<(const CompactUnwindInfo::UnwindIndex &rhs) const {
70 return function_offset < rhs.function_offset;
73 bool operator==(const CompactUnwindInfo::UnwindIndex &rhs) const {
74 return function_offset == rhs.function_offset;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h162 friend bool operator<(const Bookmark &lhs, const Bookmark &rhs) { argument
164 std::tie(rhs.section, rhs.offset);
191 CompUnitData(const CompUnitData &rhs) : bookmark(rhs.bookmark) {} argument
192 CompUnitData &operator=(const CompUnitData &rhs) { argument
193 bookmark = rhs.bookmark;
198 friend bool operator<(const CompUnitData &lhs, const CompUnitData &rhs) { argument
199 return lhs.bookmark < rhs.bookmark;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp22 SectionLoadList::SectionLoadList(const SectionLoadList &rhs) argument
24 std::lock_guard<std::recursive_mutex> guard(rhs.m_mutex);
25 m_addr_to_sect = rhs.m_addr_to_sect;
26 m_sect_to_addr = rhs.m_sect_to_addr;
29 void SectionLoadList::operator=(const SectionLoadList &rhs) { argument
30 std::lock(m_mutex, rhs.m_mutex);
32 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.m_mutex, std::adopt_lock);
33 m_addr_to_sect = rhs.m_addr_to_sect;
34 m_sect_to_addr = rhs.m_sect_to_addr;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatVariadic.h96 formatv_object_base(formatv_object_base const &rhs) = delete; member in class:llvm::formatv_object_base
98 formatv_object_base(formatv_object_base &&rhs) argument
99 : Fmt(std::move(rhs.Fmt)),
101 Replacements(std::move(rhs.Replacements)) {
102 Adapters.reserve(rhs.Adapters.size());
161 formatv_object(formatv_object const &rhs) = delete; member in class:llvm::formatv_object
163 formatv_object(formatv_object &&rhs) argument
164 : formatv_object_base(std::move(rhs)),
165 Parameters(std::move(rhs.Parameters)) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp68 const llvm::APSInt& rhs, QualType type) {
74 return nonloc::SymbolVal(SymMgr.getSymIntExpr(lhs, op, rhs, type));
78 BinaryOperator::Opcode op, const SymExpr *rhs,
80 assert(rhs);
82 return nonloc::SymbolVal(SymMgr.getIntSymExpr(lhs, op, rhs, type));
86 const SymExpr *rhs, QualType type) {
87 assert(lhs && rhs);
89 return nonloc::SymbolVal(SymMgr.getSymSymExpr(lhs, op, rhs, type));
405 SVal lhs, SVal rhs, QualType type) {
406 if (lhs.isUndef() || rhs
67 makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op, const llvm::APSInt& rhs, QualType type) argument
77 makeNonLoc(const llvm::APSInt& lhs, BinaryOperator::Opcode op, const SymExpr *rhs, QualType type) argument
85 makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op, const SymExpr *rhs, QualType type) argument
404 evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op, SVal lhs, SVal rhs, QualType type) argument
437 areEqual(ProgramStateRef state, SVal lhs, SVal rhs) argument
442 evalEQ(ProgramStateRef state, SVal lhs, SVal rhs) argument
446 evalEQ(ProgramStateRef state, DefinedOrUnknownSVal lhs, DefinedOrUnknownSVal rhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DSymbolTable.h69 static bool isEqual(StringRef const lhs, StringRef const rhs) { argument
70 return lhs.equals(rhs);

Completed in 125 milliseconds

1234567891011>>