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

1234567891011>>

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DModuleChild.cpp19 ModuleChild::ModuleChild (const ModuleChild& rhs) : argument
20 m_module_wp(rhs.m_module_wp)
29 ModuleChild::operator= (const ModuleChild& rhs) argument
31 if (this != &rhs)
32 m_module_wp = rhs.m_module_wp;
H A DVMRange.cpp62 lldb_private::operator== (const VMRange& lhs, const VMRange& rhs) argument
64 return lhs.GetBaseAddress() == rhs.GetBaseAddress() && lhs.GetEndAddress() == rhs.GetEndAddress();
68 lldb_private::operator!= (const VMRange& lhs, const VMRange& rhs) argument
70 return lhs.GetBaseAddress() != rhs.GetBaseAddress() || lhs.GetEndAddress() != rhs.GetEndAddress();
74 lldb_private::operator< (const VMRange& lhs, const VMRange& rhs) argument
76 if (lhs.GetBaseAddress() < rhs.GetBaseAddress())
78 else if (lhs.GetBaseAddress() > rhs.GetBaseAddress())
80 return lhs.GetEndAddress() < rhs
84 operator <=(const VMRange& lhs, const VMRange& rhs) argument
94 operator >(const VMRange& lhs, const VMRange& rhs) argument
104 operator >=(const VMRange& lhs, const VMRange& rhs) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBTypeNameSpecifier.cpp42 SBTypeNameSpecifier::SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs) : argument
43 m_opaque_sp(rhs.m_opaque_sp)
96 SBTypeNameSpecifier::operator = (const lldb::SBTypeNameSpecifier &rhs) argument
98 if (this != &rhs)
100 m_opaque_sp = rhs.m_opaque_sp;
106 SBTypeNameSpecifier::operator == (lldb::SBTypeNameSpecifier &rhs) argument
109 return !rhs.IsValid();
110 return m_opaque_sp == rhs.m_opaque_sp;
114 SBTypeNameSpecifier::IsEqualTo (lldb::SBTypeNameSpecifier &rhs) argument
117 return !rhs
128 operator !=(lldb::SBTypeNameSpecifier &rhs) argument
[all...]
H A DSBTypeFormat.cpp32 SBTypeFormat::SBTypeFormat (const lldb::SBTypeFormat &rhs) : argument
33 m_opaque_sp(rhs.m_opaque_sp)
91 SBTypeFormat::operator = (const lldb::SBTypeFormat &rhs) argument
93 if (this != &rhs)
95 m_opaque_sp = rhs.m_opaque_sp;
101 SBTypeFormat::operator == (lldb::SBTypeFormat &rhs) argument
104 return !rhs.IsValid();
105 return m_opaque_sp == rhs.m_opaque_sp;
109 SBTypeFormat::IsEqualTo (lldb::SBTypeFormat &rhs) argument
112 return !rhs
121 operator !=(lldb::SBTypeFormat &rhs) argument
[all...]
H A DSBTypeSynthetic.cpp44 SBTypeSynthetic::SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs) : argument
45 m_opaque_sp(rhs.m_opaque_sp)
131 SBTypeSynthetic::operator = (const lldb::SBTypeSynthetic &rhs) argument
133 if (this != &rhs)
135 m_opaque_sp = rhs.m_opaque_sp;
141 SBTypeSynthetic::operator == (lldb::SBTypeSynthetic &rhs) argument
144 return !rhs.IsValid();
145 return m_opaque_sp == rhs.m_opaque_sp;
149 SBTypeSynthetic::IsEqualTo (lldb::SBTypeSynthetic &rhs) argument
152 return !rhs
168 operator !=(lldb::SBTypeSynthetic &rhs) argument
[all...]
H A DSBTypeFilter.cpp31 SBTypeFilter::SBTypeFilter (const lldb::SBTypeFilter &rhs) : argument
32 m_opaque_sp(rhs.m_opaque_sp)
119 SBTypeFilter::operator = (const lldb::SBTypeFilter &rhs) argument
121 if (this != &rhs)
123 m_opaque_sp = rhs.m_opaque_sp;
129 SBTypeFilter::operator == (lldb::SBTypeFilter &rhs) argument
132 return !rhs.IsValid();
134 return m_opaque_sp == rhs.m_opaque_sp;
138 SBTypeFilter::IsEqualTo (lldb::SBTypeFilter &rhs) argument
141 return !rhs
156 operator !=(lldb::SBTypeFilter &rhs) argument
[all...]
H A DSBStringList.cpp29 SBStringList::SBStringList (const SBStringList &rhs) : argument
32 if (rhs.IsValid())
33 m_opaque_ap.reset (new lldb_private::StringList(*rhs));
38 SBStringList::operator = (const SBStringList &rhs) argument
40 if (this != &rhs)
42 if (rhs.IsValid())
43 m_opaque_ap.reset(new lldb_private::StringList(*rhs));
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackID.h43 StackID (const StackID& rhs) : argument
44 m_pc (rhs.m_pc),
45 m_cfa (rhs.m_cfa),
46 m_symbol_scope (rhs.m_symbol_scope)
99 operator=(const StackID& rhs) argument
101 if (this != &rhs)
103 m_pc = rhs.m_pc;
104 m_cfa = rhs.m_cfa;
105 m_symbol_scope = rhs.m_symbol_scope;
141 bool operator== (const StackID& lhs, const StackID& rhs);
[all...]
/freebsd-10.0-release/contrib/libc++/src/
H A Dios.cpp294 ios_base::copyfmt(const ios_base& rhs) argument
302 if (__event_cap_ < rhs.__event_size_)
304 new_callbacks.reset((event_callback*)malloc(sizeof(event_callback) * rhs.__event_size_));
309 new_ints.reset((int*)malloc(sizeof(int) * rhs.__event_size_));
315 if (__iarray_cap_ < rhs.__iarray_size_)
317 new_longs.reset((long*)malloc(sizeof(long) * rhs.__iarray_size_));
323 if (__parray_cap_ < rhs.__parray_size_)
325 new_pointers.reset((void**)malloc(sizeof(void*) * rhs.__parray_size_));
332 __fmtflags_ = rhs.__fmtflags_;
333 __precision_ = rhs
370 move(ios_base& rhs) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUserID.h96 operator () (const UserID& rhs) const { return m_uid == rhs.GetID(); }
113 inline bool operator== (const UserID& lhs, const UserID& rhs) argument
115 return lhs.GetID() == rhs.GetID();
118 inline bool operator!= (const UserID& lhs, const UserID& rhs) argument
120 return lhs.GetID() != rhs.GetID();
H A DConstString.h53 /// Copies the string value in \a rhs into this object.
55 /// @param[in] rhs
58 ConstString (const ConstString& rhs) : argument
59 m_string (rhs.m_string)
127 /// the C string value in \a rhs, \b false otherwise.
129 bool operator()(const char* lhs, const char* rhs) const
131 return lhs == rhs;
159 /// Assigns the string in this object with the value from \a rhs.
161 /// @param[in] rhs
168 operator = (const ConstString& rhs) argument
[all...]
H A DModuleChild.h37 /// @param[in] rhs
40 ModuleChild (const ModuleChild& rhs);
50 /// @param[in] rhs
57 operator= (const ModuleChild& rhs);
H A DUUID.h32 UUID (const UUID& rhs);
38 operator=(const UUID& rhs);
100 bool operator == (const UUID &lhs, const UUID &rhs);
101 bool operator != (const UUID &lhs, const UUID &rhs);
102 bool operator < (const UUID &lhs, const UUID &rhs);
103 bool operator <= (const UUID &lhs, const UUID &rhs);
104 bool operator > (const UUID &lhs, const UUID &rhs);
105 bool operator >= (const UUID &lhs, const UUID &rhs);
H A DScalar.h53 Scalar(const Scalar& rhs);
136 Scalar& operator= (const Scalar& rhs); // Assignment operator
137 Scalar& operator+= (const Scalar& rhs);
138 Scalar& operator<<= (const Scalar& rhs); // Shift left
139 Scalar& operator>>= (const Scalar& rhs); // Shift right (arithmetic)
140 Scalar& operator&= (const Scalar& rhs);
147 ShiftRightLogical(const Scalar& rhs); // Returns true on success
288 friend const Scalar operator+ (const Scalar& lhs, const Scalar& rhs);
289 friend const Scalar operator- (const Scalar& lhs, const Scalar& rhs);
290 friend const Scalar operator/ (const Scalar& lhs, const Scalar& rhs);
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h33 ClangNamespaceDecl (const ClangNamespaceDecl &rhs) : argument
34 m_ast (rhs.m_ast),
35 m_namespace_decl (rhs.m_namespace_decl)
40 operator = (const ClangNamespaceDecl &rhs) argument
42 m_ast = rhs.m_ast;
43 m_namespace_decl = rhs.m_namespace_decl;
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTimeValue.h41 TimeValue(const TimeValue& rhs);
50 operator=(const TimeValue& rhs);
95 bool operator == (const TimeValue &lhs, const TimeValue &rhs);
96 bool operator != (const TimeValue &lhs, const TimeValue &rhs);
97 bool operator < (const TimeValue &lhs, const TimeValue &rhs);
98 bool operator <= (const TimeValue &lhs, const TimeValue &rhs);
99 bool operator > (const TimeValue &lhs, const TimeValue &rhs);
100 bool operator >= (const TimeValue &lhs, const TimeValue &rhs);
102 uint64_t operator -(const TimeValue &lhs, const TimeValue &rhs);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h58 UniqueDWARFASTType (const UniqueDWARFASTType &rhs) : argument
59 m_type_sp (rhs.m_type_sp),
60 m_symfile (rhs.m_symfile),
61 m_cu (rhs.m_cu),
62 m_die (rhs.m_die),
63 m_declaration (rhs.m_declaration),
64 m_byte_size (rhs.m_byte_size)
73 operator= (const UniqueDWARFASTType &rhs) argument
75 if (this != &rhs)
77 m_type_sp = rhs
[all...]
H A DDWARFDeclContext.h47 NameMatches (const Entry& rhs) const
49 if (name == rhs.name)
51 else if (name && rhs.name)
52 return strcmp(name, rhs.name) == 0;
78 operator ==(const DWARFDeclContext& rhs) const;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStackID.cpp42 lldb_private::operator== (const StackID& lhs, const StackID& rhs) argument
44 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
48 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
52 return lhs.GetPC() == rhs.GetPC();
58 lldb_private::operator!= (const StackID& lhs, const StackID& rhs) argument
60 if (lhs.GetCallFrameAddress() != rhs.GetCallFrameAddress())
64 SymbolContextScope *rhs_scope = rhs.GetSymbolContextScope();
67 return lhs.GetPC() != rhs.GetPC();
73 lldb_private::operator< (const StackID& lhs, const StackID& rhs) argument
76 const lldb::addr_t rhs_cfa = rhs
[all...]
H A DThreadSpec.cpp24 ThreadSpec::ThreadSpec (const ThreadSpec &rhs) : argument
25 m_index(rhs.m_index),
26 m_tid(rhs.m_tid),
27 m_name(rhs.m_name),
28 m_queue_name(rhs.m_queue_name)
33 ThreadSpec::operator=(const ThreadSpec &rhs) argument
35 m_index = rhs.m_index;
36 m_tid = rhs.m_tid;
37 m_name = rhs.m_name;
38 m_queue_name = rhs
[all...]
/freebsd-10.0-release/contrib/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...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBTypeFormat.h26 SBTypeFormat (const lldb::SBTypeFormat &rhs);
50 operator = (const lldb::SBTypeFormat &rhs);
53 IsEqualTo (lldb::SBTypeFormat &rhs);
56 operator == (lldb::SBTypeFormat &rhs);
59 operator != (lldb::SBTypeFormat &rhs);
H A DSBTypeNameSpecifier.h28 SBTypeNameSpecifier (const lldb::SBTypeNameSpecifier &rhs);
49 operator = (const lldb::SBTypeNameSpecifier &rhs);
52 IsEqualTo (lldb::SBTypeNameSpecifier &rhs);
55 operator == (lldb::SBTypeNameSpecifier &rhs);
58 operator != (lldb::SBTypeNameSpecifier &rhs);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DTimeValue.cpp35 TimeValue::TimeValue(const TimeValue& rhs) : argument
36 m_nano_seconds (rhs.m_nano_seconds)
139 TimeValue::operator=(const TimeValue& rhs) argument
141 m_nano_seconds = rhs.m_nano_seconds;
169 lldb_private::operator == (const TimeValue &lhs, const TimeValue &rhs) argument
171 return lhs.GetAsNanoSecondsSinceJan1_1970() == rhs.GetAsNanoSecondsSinceJan1_1970();
175 lldb_private::operator != (const TimeValue &lhs, const TimeValue &rhs) argument
177 return lhs.GetAsNanoSecondsSinceJan1_1970() != rhs.GetAsNanoSecondsSinceJan1_1970();
181 lldb_private::operator < (const TimeValue &lhs, const TimeValue &rhs) argument
183 return lhs.GetAsNanoSecondsSinceJan1_1970() < rhs
187 operator <=(const TimeValue &lhs, const TimeValue &rhs) argument
193 operator >(const TimeValue &lhs, const TimeValue &rhs) argument
199 operator >=(const TimeValue &lhs, const TimeValue &rhs) argument
205 operator -(const TimeValue &lhs, const TimeValue &rhs) argument
[all...]
/freebsd-10.0-release/sys/ddb/
H A Ddb_expr.c133 db_expr_t lhs, rhs; local
141 if (!db_term(&rhs)) {
146 lhs *= rhs;
148 if (rhs == 0) {
153 lhs /= rhs;
155 lhs %= rhs;
157 lhs = ((lhs+rhs-1)/rhs)*rhs;
169 db_expr_t lhs, rhs; local
195 db_expr_t lhs, rhs; local
212 lhs <<= rhs; local
[all...]

Completed in 149 milliseconds

1234567891011>>