Searched refs:rhs (Results 1 - 25 of 600) sorted by relevance

1234567891011>>

/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/20_util/
H A Dcomparisons.cc30 bool operator==(const gnu_obj& rhs) const { return i == rhs.i; }
31 bool operator!=(const gnu_obj& rhs) const { return i != rhs.i; }
32 bool operator<(const gnu_obj& rhs) const { return i < rhs.i; }
41 bool operator==(const gnu_t& rhs) const { return b == rhs.b; }
42 bool operator!=(const gnu_t& rhs) const { return b != rhs
[all...]
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DVMRange.cpp42 bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) {
43 return lhs.GetBaseAddress() == rhs.GetBaseAddress() &&
44 lhs.GetEndAddress() == rhs.GetEndAddress();
47 bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) {
48 return !(lhs == rhs);
51 bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) {
52 if (lhs.GetBaseAddress() < rhs.GetBaseAddress())
54 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress())
56 return lhs.GetEndAddress() < rhs.GetEndAddress();
59 bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) {
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp9068.C13 void foo (ostream& lhs, const C& rhs) argument
15 lhs << rhs.i; // ERROR - no such i for any opr << ()
/openbsd-current/gnu/llvm/lldb/tools/lldb-vscode/
H A DSourceBreakpoint.h30 const SourceBreakpoint &rhs) {
31 if (lhs.line == rhs.line)
32 return lhs.column < rhs.column;
33 return lhs.line < rhs.line;
29 operator <(const SourceBreakpoint &lhs, const SourceBreakpoint &rhs) argument
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DModuleChild.cpp18 const ModuleChild &ModuleChild::operator=(const ModuleChild &rhs) { argument
19 if (this != &rhs)
20 m_module_wp = rhs.m_module_wp;
H A DSourceLocationSpec.cpp27 bool SourceLocationSpec::operator==(const SourceLocationSpec &rhs) const {
28 return m_declaration == rhs.m_declaration &&
29 m_check_inlines == rhs.GetCheckInlines() &&
30 m_exact_match == rhs.GetExactMatch();
33 bool SourceLocationSpec::operator!=(const SourceLocationSpec &rhs) const {
34 return !(*this == rhs);
37 bool SourceLocationSpec::operator<(const SourceLocationSpec &rhs) const {
38 return SourceLocationSpec::Compare(*this, rhs) < 0;
47 const SourceLocationSpec &rhs) {
48 return Declaration::Compare(lhs.m_declaration, rhs
46 Compare(const SourceLocationSpec &lhs, const SourceLocationSpec &rhs) argument
51 Equal(const SourceLocationSpec &lhs, const SourceLocationSpec &rhs, bool full) argument
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DStackID.h26 StackID(const StackID &rhs) argument
27 : m_pc(rhs.m_pc), m_cfa(rhs.m_cfa), m_symbol_scope(rhs.m_symbol_scope) {}
54 const StackID &operator=(const StackID &rhs) { argument
55 if (this != &rhs) {
56 m_pc = rhs.m_pc;
57 m_cfa = rhs.m_cfa;
58 m_symbol_scope = rhs.m_symbol_scope;
91 bool operator==(const StackID &lhs, const StackID &rhs);
[all...]
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBTypeFilter.cpp26 SBTypeFilter::SBTypeFilter(const lldb::SBTypeFilter &rhs) argument
27 : m_opaque_sp(rhs.m_opaque_sp) {
28 LLDB_INSTRUMENT_VA(this, rhs);
113 lldb::SBTypeFilter &SBTypeFilter::operator=(const lldb::SBTypeFilter &rhs) { argument
114 LLDB_INSTRUMENT_VA(this, rhs);
116 if (this != &rhs) {
117 m_opaque_sp = rhs.m_opaque_sp;
122 bool SBTypeFilter::operator==(lldb::SBTypeFilter &rhs) { argument
123 LLDB_INSTRUMENT_VA(this, rhs);
126 return !rhs
131 IsEqualTo(lldb::SBTypeFilter &rhs) argument
148 operator !=(lldb::SBTypeFilter &rhs) argument
[all...]
H A DSBTypeNameSpecifier.cpp45 SBTypeNameSpecifier::SBTypeNameSpecifier(const lldb::SBTypeNameSpecifier &rhs) argument
46 : m_opaque_sp(rhs.m_opaque_sp) {
47 LLDB_INSTRUMENT_VA(this, rhs);
114 operator=(const lldb::SBTypeNameSpecifier &rhs) { argument
115 LLDB_INSTRUMENT_VA(this, rhs);
117 if (this != &rhs) {
118 m_opaque_sp = rhs.m_opaque_sp;
123 bool SBTypeNameSpecifier::operator==(lldb::SBTypeNameSpecifier &rhs) { argument
124 LLDB_INSTRUMENT_VA(this, rhs);
127 return !rhs
131 IsEqualTo(lldb::SBTypeNameSpecifier &rhs) argument
145 operator !=(lldb::SBTypeNameSpecifier &rhs) argument
[all...]
H A DSBBroadcaster.cpp31 SBBroadcaster::SBBroadcaster(const SBBroadcaster &rhs) argument
32 : m_opaque_sp(rhs.m_opaque_sp), m_opaque_ptr(rhs.m_opaque_ptr) {
33 LLDB_INSTRUMENT_VA(this, rhs);
36 const SBBroadcaster &SBBroadcaster::operator=(const SBBroadcaster &rhs) { argument
37 LLDB_INSTRUMENT_VA(this, rhs);
39 if (this != &rhs) {
40 m_opaque_sp = rhs.m_opaque_sp;
41 m_opaque_ptr = rhs.m_opaque_ptr;
143 bool SBBroadcaster::operator==(const SBBroadcaster &rhs) cons
[all...]
H A DSBTypeEnumMember.cpp32 SBTypeEnumMember::SBTypeEnumMember(const SBTypeEnumMember &rhs) { argument
33 LLDB_INSTRUMENT_VA(this, rhs);
35 m_opaque_sp = clone(rhs.m_opaque_sp);
38 SBTypeEnumMember &SBTypeEnumMember::operator=(const SBTypeEnumMember &rhs) { argument
39 LLDB_INSTRUMENT_VA(this, rhs);
41 if (this != &rhs)
42 m_opaque_sp = clone(rhs.m_opaque_sp);
109 SBTypeEnumMemberList::SBTypeEnumMemberList(const SBTypeEnumMemberList &rhs) argument
111 LLDB_INSTRUMENT_VA(this, rhs);
114 rhs_size = const_cast<SBTypeEnumMemberList &>(rhs)
130 operator =(const SBTypeEnumMemberList &rhs) argument
[all...]
H A DSBCommandInterpreterRunOptions.cpp28 const SBCommandInterpreterRunOptions &rhs) {
29 LLDB_INSTRUMENT_VA(this, rhs);
31 m_opaque_up = std::make_unique<CommandInterpreterRunOptions>(rhs.ref());
37 const SBCommandInterpreterRunOptions &rhs) {
38 LLDB_INSTRUMENT_VA(this, rhs);
40 if (this == &rhs)
42 *m_opaque_up = *rhs.m_opaque_up;
185 const SBCommandInterpreterRunResult &rhs)
187 LLDB_INSTRUMENT_VA(this, rhs);
189 *m_opaque_up = *rhs
27 SBCommandInterpreterRunOptions( const SBCommandInterpreterRunOptions &rhs) argument
36 operator =( const SBCommandInterpreterRunOptions &rhs) argument
184 SBCommandInterpreterRunResult( const SBCommandInterpreterRunResult &rhs) argument
192 SBCommandInterpreterRunResult( const CommandInterpreterRunResult &rhs) argument
199 operator =( const SBCommandInterpreterRunResult &rhs) argument
[all...]
H A DSBTypeSynthetic.cpp41 SBTypeSynthetic::SBTypeSynthetic(const lldb::SBTypeSynthetic &rhs) argument
42 : m_opaque_sp(rhs.m_opaque_sp) {
43 LLDB_INSTRUMENT_VA(this, rhs);
128 operator=(const lldb::SBTypeSynthetic &rhs) { argument
129 LLDB_INSTRUMENT_VA(this, rhs);
131 if (this != &rhs) {
132 m_opaque_sp = rhs.m_opaque_sp;
137 bool SBTypeSynthetic::operator==(lldb::SBTypeSynthetic &rhs) { argument
138 LLDB_INSTRUMENT_VA(this, rhs);
141 return !rhs
145 IsEqualTo(lldb::SBTypeSynthetic &rhs) argument
163 operator !=(lldb::SBTypeSynthetic &rhs) argument
[all...]
/openbsd-current/gnu/llvm/libcxx/src/
H A Dios.cpp283 ios_base::copyfmt(const ios_base& rhs) argument
291 if (__event_cap_ < rhs.__event_size_)
293 size_t newesize = sizeof(event_callback) * rhs.__event_size_;
298 size_t newisize = sizeof(int) * rhs.__event_size_;
303 if (__iarray_cap_ < rhs.__iarray_size_)
305 size_t newsize = sizeof(long) * rhs.__iarray_size_;
310 if (__parray_cap_ < rhs.__parray_size_)
312 size_t newsize = sizeof(void*) * rhs.__parray_size_;
318 __fmtflags_ = rhs.__fmtflags_;
319 __precision_ = rhs
356 move(ios_base& rhs) argument
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.martin/
H A Dsts_vectini.C20 XTVec& operator+=(XTVec& lhs, XTVec& rhs){ argument
21 lhs[0]+=rhs[0];
22 lhs[1]+=rhs[1];
23 lhs[2]+=rhs[2];
28 XTVec operator+(XTVec& lhs, XTVec& rhs){ argument
30 return result += rhs;
/openbsd-current/gnu/llvm/lldb/source/Symbol/
H A DCompilerDecl.cpp40 const lldb_private::CompilerDecl &rhs) {
41 return lhs.GetTypeSystem() == rhs.GetTypeSystem() &&
42 lhs.GetOpaqueDecl() == rhs.GetOpaqueDecl();
46 const lldb_private::CompilerDecl &rhs) {
47 return lhs.GetTypeSystem() != rhs.GetTypeSystem() ||
48 lhs.GetOpaqueDecl() != rhs.GetOpaqueDecl();
39 operator ==(const lldb_private::CompilerDecl &lhs, const lldb_private::CompilerDecl &rhs) argument
45 operator !=(const lldb_private::CompilerDecl &lhs, const lldb_private::CompilerDecl &rhs) argument
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DRegularExpression.h38 RegularExpression(const RegularExpression &rhs);
39 RegularExpression(RegularExpression &&rhs) = default; member in class:lldb_private::RegularExpression
41 RegularExpression &operator=(RegularExpression &&rhs) = default; member in class:lldb_private::RegularExpression
42 RegularExpression &operator=(const RegularExpression &rhs) = default; member in class:lldb_private::RegularExpression
81 bool operator==(const RegularExpression &rhs) const {
82 return GetText() == rhs.GetText();
H A DUserID.h68 bool operator()(const UserID &rhs) const { return m_uid == rhs.GetID(); }
80 inline bool operator==(const UserID &lhs, const UserID &rhs) { argument
81 return lhs.GetID() == rhs.GetID();
84 inline bool operator!=(const UserID &lhs, const UserID &rhs) { argument
85 return lhs.GetID() != rhs.GetID();
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DRegisterNumber.cpp46 const RegisterNumber &RegisterNumber::operator=(const RegisterNumber &rhs) { argument
47 m_reg_ctx_sp = rhs.m_reg_ctx_sp;
48 m_regnum = rhs.m_regnum;
49 m_kind = rhs.m_kind;
50 for (auto it : rhs.m_kind_regnum_map)
52 m_name = rhs.m_name;
56 bool RegisterNumber::operator==(RegisterNumber &rhs) { argument
57 if (IsValid() != rhs.IsValid())
60 if (m_kind == rhs.m_kind) {
61 return m_regnum == rhs
73 operator !=(RegisterNumber &rhs) argument
[all...]
H A DStackID.cpp33 bool lldb_private::operator==(const StackID &lhs, const StackID &rhs) { argument
34 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
38 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
42 return lhs.GetPC() == rhs.GetPC();
47 bool lldb_private::operator!=(const StackID &lhs, const StackID &rhs) { argument
48 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
52 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
55 return lhs.GetPC() != rhs.GetPC();
60 bool lldb_private::operator<(const StackID &lhs, const StackID &rhs) { argument
62 const lldb::addr_t rhs_cfa = rhs
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h29 UniqueDWARFASTType(const UniqueDWARFASTType &rhs) argument
30 : m_type_sp(rhs.m_type_sp), m_die(rhs.m_die),
31 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {}
35 UniqueDWARFASTType &operator=(const UniqueDWARFASTType &rhs) { argument
36 if (this != &rhs) {
37 m_type_sp = rhs.m_type_sp;
38 m_die = rhs.m_die;
39 m_declaration = rhs
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dsingleton.C22 singleton( const singleton& rhs );
23 void operator=( const singleton& rhs );
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DCFBundle.h22 CFBundle(const CFBundle &rhs);
23 CFBundle &operator=(const CFBundle &rhs);
/openbsd-current/gnu/llvm/lldb/source/Host/macosx/cfcpp/
H A DCFCData.h18 CFCData(const CFCData &rhs);
19 CFCData &operator=(const CFCData &rhs);
/openbsd-current/gnu/gcc/gcc/
H A Dtree-stdarg.c117 va_list_counter_bump (struct stdarg_info *si, tree counter, tree rhs, argument
135 orig_lhs = lhs = rhs;
156 rhs = TREE_OPERAND (stmt, 1);
157 if (TREE_CODE (rhs) == WITH_SIZE_EXPR)
158 rhs = TREE_OPERAND (rhs, 0);
160 if (TREE_CODE (rhs) == SSA_NAME)
162 lhs = rhs;
166 if ((TREE_CODE (rhs) == NOP_EXPR
167 || TREE_CODE (rhs)
445 check_va_list_escapes(struct stdarg_info *si, tree lhs, tree rhs) argument
528 tree rhs = TREE_OPERAND (stmt, 1); local
753 tree phi, lhs, rhs; local
813 tree rhs = TREE_OPERAND (stmt, 1); local
[all...]

Completed in 240 milliseconds

1234567891011>>