Searched defs:rhs (Results 176 - 200 of 642) sorted by relevance

1234567891011>>

/external/lldb/include/lldb/Core/
H A DStreamTee.h53 StreamTee (const StreamTee &rhs) : argument
54 Stream (rhs),
56 m_streams() // Don't copy until we lock down "rhs"
58 Mutex::Locker locker (rhs.m_streams_mutex);
59 m_streams = rhs.m_streams;
68 operator = (const StreamTee &rhs) argument
70 if (this != &rhs) {
71 Stream::operator=(rhs);
73 Mutex::Locker rhs_locker (rhs.m_streams_mutex);
74 m_streams = rhs
[all...]
/external/lldb/include/lldb/Interpreter/
H A DOptionValueSInt64.h52 OptionValueSInt64 (const OptionValueSInt64 &rhs) : argument
53 OptionValue(rhs),
54 m_current_value (rhs.m_current_value),
55 m_default_value (rhs.m_default_value),
56 m_min_value (rhs.m_min_value),
57 m_max_value (rhs.m_max_value)
H A DPythonDataObjects.h44 PythonObject (const PythonObject &rhs) : argument
47 Reset (rhs.m_py_obj);
59 operator = (const PythonObject &rhs) argument
61 if (this != &rhs)
62 Reset (rhs.m_py_obj);
/external/lldb/include/lldb/Symbol/
H A DDeclaration.h71 Declaration (const Declaration& rhs) : argument
72 m_file (rhs.m_file),
73 m_line (rhs.m_line)
75 ,m_column (rhs.m_column)
114 /// Compares the two file specifications from \a lhs and \a rhs. If
121 /// @param[in] rhs
125 /// @li -1 if lhs < rhs
126 /// @li 0 if lhs == rhs
127 /// @li 1 if lhs > rhs
130 Compare (const Declaration& lhs, const Declaration& rhs);
[all...]
/external/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...]
/external/lldb/source/API/
H A DSBExpressionOptions.cpp24 SBExpressionOptions::SBExpressionOptions (const SBExpressionOptions &rhs) argument
27 *(m_opaque_ap.get()) = rhs.ref();
31 SBExpressionOptions::operator = (const SBExpressionOptions &rhs) argument
33 if (this != &rhs)
35 this->ref() = rhs.ref();
H A DSBFileSpecList.cpp30 SBFileSpecList::SBFileSpecList (const SBFileSpecList &rhs) : argument
35 if (rhs.m_opaque_ap.get())
36 m_opaque_ap.reset (new FileSpecList (*(rhs.get())));
40 log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p)",
41 rhs.m_opaque_ap.get(), m_opaque_ap.get());
50 SBFileSpecList::operator = (const SBFileSpecList &rhs) argument
52 if (this != &rhs)
54 m_opaque_ap.reset (new lldb_private::FileSpecList(*(rhs.get())));
H A DSBInstructionList.cpp25 SBInstructionList::SBInstructionList(const SBInstructionList &rhs) : argument
26 m_opaque_sp (rhs.m_opaque_sp)
31 SBInstructionList::operator = (const SBInstructionList &rhs) argument
33 if (this != &rhs)
34 m_opaque_sp = rhs.m_opaque_sp;
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 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 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...]
/external/lldb/source/Core/
H A DFileSpecList.cpp27 FileSpecList::FileSpecList(const FileSpecList& rhs) : argument
28 m_files(rhs.m_files)
43 FileSpecList::operator= (const FileSpecList& rhs) argument
45 if (this != &rhs)
46 m_files = rhs.m_files;
H A DRegularExpression.cpp56 RegularExpression::RegularExpression(const RegularExpression &rhs) argument
59 Compile(rhs.GetText(), rhs.GetCompileFlags());
63 RegularExpression::operator= (const RegularExpression &rhs) argument
65 if (&rhs != this)
67 Compile (rhs.GetText(), rhs.GetCompileFlags());
275 RegularExpression::operator < (const RegularExpression& rhs) const
277 return (m_re < rhs.m_re);
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...]
H A DValueObjectList.cpp30 ValueObjectList::ValueObjectList (const ValueObjectList &rhs) : argument
31 m_value_objects(rhs.m_value_objects)
41 ValueObjectList::operator = (const ValueObjectList &rhs) argument
43 if (this != &rhs)
44 m_value_objects = rhs.m_value_objects;
/external/lldb/source/Host/common/
H A DSocketAddress.cpp57 SocketAddress::SocketAddress (const SocketAddress& rhs) : argument
58 m_socket_addr (rhs.m_socket_addr)
154 SocketAddress::operator=(const SocketAddress& rhs) argument
156 if (this != &rhs)
157 m_socket_addr = rhs.m_socket_addr;
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.cpp24 CFCMutableArray::CFCMutableArray(const CFCMutableArray& rhs) : argument
25 CFCReleaser<CFMutableArrayRef> (rhs) // NOTE: this won't make a copy of the array, just add a new reference to it
33 CFCMutableArray::operator=(const CFCMutableArray& rhs) argument
35 if (this != &rhs)
36 *this = rhs; // NOTE: this operator won't make a copy of the array, just add a new reference to it
H A DCFCString.cpp25 CFCString::CFCString(const CFCString& rhs) : argument
26 CFCReleaser<CFStringRef> (rhs)
35 CFCString::operator=(const CFCString& rhs) argument
37 if (this != &rhs)
38 *this = rhs;
/external/lldb/tools/debugserver/source/
H A DDNBTimer.h37 DNBTimer (const DNBTimer& rhs) : argument
42 if (rhs.IsThreadSafe())
44 m_timeval = rhs.m_timeval;
47 DNBTimer& operator= (const DNBTimer& rhs) argument
51 if (rhs.IsThreadSafe())
53 m_timeval = rhs.m_timeval;
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFString.cpp29 CFString::CFString(const CFString& rhs) : argument
30 CFReleaser<CFStringRef> (rhs)
39 CFString::operator=(const CFString& rhs) argument
41 if (this != &rhs)
42 *this = rhs;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h134 static bool CStringEquals(const char* lhs, const char* rhs);
152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
161 const char* rhs);
176 const wchar_t* rhs);
244 // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0
245 // if this is greater than rhs.
246 int Compare(const String& rhs) const;
254 bool operator<(const String& rhs) const { return Compare(rhs) <
283 operator =(const String& rhs) argument
[all...]
/external/ltrace/
H A Dexpr.h65 struct value *rhs,
70 struct expr_node *rhs; member in struct:expr_node::__anon26622::__anon26625
99 struct expr_node *rhs, int own_rhs);
119 struct value *lhs, struct value *rhs,
123 struct expr_node *rhs, int own_rhs, void *data);
H A Dzero.c58 struct value *rhs, struct value_dict *arguments, void *data)
61 if (value_extract_word(rhs, &l, arguments) < 0)
57 zero_callback(struct value *ret_value, struct value *lhs, struct value *rhs, struct value_dict *arguments, void *data) argument
/external/mesa3d/src/glsl/
H A Dlower_output_reads.cpp115 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp); local
116 return new(ctx) ir_assignment(lhs, rhs);
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h134 static bool CStringEquals(const char* lhs, const char* rhs);
152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
161 const char* rhs);
176 const wchar_t* rhs);
244 // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0
245 // if this is greater than rhs.
246 int Compare(const String& rhs) const;
254 bool operator<(const String& rhs) const { return Compare(rhs) <
283 operator =(const String& rhs) argument
[all...]

Completed in 174 milliseconds

1234567891011>>