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

1234567891011>>

/external/lldb/include/lldb/Core/
H A DModuleSpec.h63 ModuleSpec (const ModuleSpec &rhs) : argument
64 m_file (rhs.m_file),
65 m_platform_file (rhs.m_platform_file),
66 m_symbol_file (rhs.m_symbol_file),
67 m_arch (rhs.m_arch),
68 m_uuid (rhs.m_uuid),
69 m_object_name (rhs.m_object_name),
70 m_object_offset (rhs.m_object_offset),
71 m_object_mod_time (rhs.m_object_mod_time),
72 m_source_mappings (rhs
77 operator =(const ModuleSpec &rhs) argument
441 ModuleSpecList(const ModuleSpecList &rhs) argument
455 operator =(const ModuleSpecList &rhs) argument
488 Append(const ModuleSpecList &rhs) argument
[all...]
/external/lldb/scripts/Python/interface/
H A DSBTypeFilter.i24 SBTypeFilter (const lldb::SBTypeFilter &rhs);
32 IsEqualTo (lldb::SBTypeFilter &rhs);
59 operator == (lldb::SBTypeFilter &rhs);
62 operator != (lldb::SBTypeFilter &rhs);
H A DSBTypeFormat.i24 SBTypeFormat (const lldb::SBTypeFormat &rhs);
32 IsEqualTo (lldb::SBTypeFormat &rhs);
51 operator == (lldb::SBTypeFormat &rhs);
54 operator != (lldb::SBTypeFormat &rhs);
H A DSBTypeSynthetic.i28 SBTypeSynthetic (const lldb::SBTypeSynthetic &rhs);
36 IsEqualTo (lldb::SBTypeSynthetic &rhs);
61 operator == (lldb::SBTypeSynthetic &rhs);
64 operator != (lldb::SBTypeSynthetic &rhs);
H A DSBBroadcaster.i30 SBBroadcaster (const SBBroadcaster &rhs);
62 operator == (const lldb::SBBroadcaster &rhs) const;
65 operator != (const lldb::SBBroadcaster &rhs) const;
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableSet.h22 CFCMutableSet(const CFCMutableSet& rhs);
29 operator=(const CFCMutableSet& rhs);
/external/lldb/source/Symbol/
H A DSymbol.cpp111 Symbol::Symbol(const Symbol& rhs): argument
112 SymbolContextScope (rhs),
113 m_uid (rhs.m_uid),
114 m_type_data (rhs.m_type_data),
115 m_type_data_resolved (rhs.m_type_data_resolved),
116 m_is_synthetic (rhs.m_is_synthetic),
117 m_is_debug (rhs.m_is_debug),
118 m_is_external (rhs.m_is_external),
119 m_size_is_sibling (rhs.m_size_is_sibling),
121 m_size_is_valid (rhs
131 operator =(const Symbol& rhs) argument
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d_f.cc44 double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs) { argument
45 return static_cast<double>(lhs.x()) * rhs.y() -
46 static_cast<double>(lhs.y()) * rhs.x();
49 double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs) { argument
50 return static_cast<double>(lhs.x()) * rhs.x() +
51 static_cast<double>(lhs.y()) * rhs.y();
H A Dquad_f.cc97 void QuadF::operator+=(const Vector2dF& rhs) { argument
98 p1_ += rhs;
99 p2_ += rhs;
100 p3_ += rhs;
101 p4_ += rhs;
104 void QuadF::operator-=(const Vector2dF& rhs) { argument
105 p1_ -= rhs;
106 p2_ -= rhs;
107 p3_ -= rhs;
108 p4_ -= rhs;
111 operator +(const QuadF& lhs, const Vector2dF& rhs) argument
117 operator -(const QuadF& lhs, const Vector2dF& rhs) argument
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/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/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/oprofile/libutil++/
H A Dunique_storage.h55 bool operator<(id_value const & rhs) const {
56 return id < rhs.id;
59 bool operator==(id_value const & rhs) const {
60 return id == rhs.id;
63 bool operator!=(id_value const & rhs) const {
64 return !(id == rhs.id);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/chromium_org/printing/
H A Dpage_setup.cc31 bool PageMargins::Equals(const PageMargins& rhs) const {
32 return header == rhs.header &&
33 footer == rhs.footer &&
34 left == rhs.left &&
35 top == rhs.top &&
36 right == rhs.right &&
37 bottom == rhs.bottom;
56 bool PageSetup::Equals(const PageSetup& rhs) const {
57 return physical_size_ == rhs.physical_size_ &&
58 printable_area_ == rhs
[all...]
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_util.cc94 bool SameMode(const drmModeModeInfo& lhs, const drmModeModeInfo& rhs) { argument
95 return lhs.clock == rhs.clock &&
96 lhs.hdisplay == rhs.hdisplay &&
97 lhs.vdisplay == rhs.vdisplay &&
98 lhs.vrefresh == rhs.vrefresh &&
99 lhs.hsync_start == rhs.hsync_start &&
100 lhs.hsync_end == rhs.hsync_end &&
101 lhs.htotal == rhs.htotal &&
102 lhs.hskew == rhs.hskew &&
103 lhs.vsync_start == rhs
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h113 Row(const Row& rhs) : argument
114 address(rhs.address),
115 line(rhs.line),
116 column(rhs.column),
117 file(rhs.file),
118 is_stmt(rhs.is_stmt),
119 basic_block(rhs.basic_block),
120 end_sequence(rhs.end_sequence),
121 prologue_end(rhs.prologue_end),
122 epilogue_begin(rhs
125 operator =(const Row& rhs) argument
[all...]
/external/chromium_org/v8/src/
H A Dsmart-pointers.h23 SmartPointerBase(const SmartPointerBase<Deallocator, T>& rhs) argument
24 : p_(rhs.p_) {
25 const_cast<SmartPointerBase<Deallocator, T>&>(rhs).p_ = NULL;
68 const SmartPointerBase<Deallocator, T>& rhs) {
70 T* tmp = rhs.p_; // swap to handle self-assignment
71 const_cast<SmartPointerBase<Deallocator, T>&>(rhs).p_ = NULL;
105 SmartArrayPointer(const SmartArrayPointer<T>& rhs) argument
106 : SmartPointerBase<ArrayDeallocator<T>, T>(rhs) { }
124 SmartPointer(const SmartPointer<T>& rhs) argument
125 : SmartPointerBase<ObjectDeallocator<T>, T>(rhs) { }
67 operator =( const SmartPointerBase<Deallocator, T>& rhs) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DConservativeSparseSparseProduct.h18 static void conservative_sparse_sparse_product_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
25 Index cols = rhs.outerSize();
26 eigen_assert(lhs.outerSize() == rhs.innerSize());
33 // given a rhs column containing Y non zeros, we assume that the respective Y columns
35 // the product of a rhs column with the lhs is X+Y where X is the average number of non zero
37 // Therefore, we have nnz(lhs*rhs) = nnz(lhs) + nnz(rhs)
38 Index estimated_nnz_prod = lhs.nonZeros() + rhs.nonZeros();
48 for (typename Rhs::InnerIterator rhsIt(rhs, j); rhsIt; ++rhsIt)
135 static void run(const Lhs& lhs, const Rhs& rhs, ResultTyp argument
150 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
163 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
176 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
191 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
203 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
216 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
229 run(const Lhs& lhs, const Rhs& rhs, ResultType& res) argument
[all...]
/external/lldb/source/API/
H A DSBTypeSummary.cpp55 SBTypeSummary::SBTypeSummary (const lldb::SBTypeSummary &rhs) : argument
56 m_opaque_sp(rhs.m_opaque_sp)
193 SBTypeSummary::operator = (const lldb::SBTypeSummary &rhs) argument
195 if (this != &rhs)
197 m_opaque_sp = rhs.m_opaque_sp;
203 SBTypeSummary::operator == (lldb::SBTypeSummary &rhs) argument
206 return !rhs.IsValid();
207 return m_opaque_sp == rhs.m_opaque_sp;
211 SBTypeSummary::IsEqualTo (lldb::SBTypeSummary &rhs) argument
214 return !rhs
246 operator !=(lldb::SBTypeSummary &rhs) argument
[all...]
H A DSBValueList.cpp30 ValueListImpl (const ValueListImpl& rhs) : argument
31 m_values(rhs.m_values)
36 operator = (const ValueListImpl& rhs) argument
38 if (this == &rhs)
40 m_values = rhs.m_values;
91 SBValueList::SBValueList (const SBValueList &rhs) : argument
96 if (rhs.IsValid())
97 m_opaque_ap.reset (new ValueListImpl (*rhs));
101 log->Printf ("SBValueList::SBValueList (rhs.ap=%p) => this.ap = %p",
102 (rhs
140 operator =(const SBValueList &rhs) argument
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp53 BreakpointOptions::BreakpointOptions(const BreakpointOptions& rhs) : argument
54 m_callback (rhs.m_callback),
55 m_callback_baton_sp (rhs.m_callback_baton_sp),
56 m_callback_is_synchronous (rhs.m_callback_is_synchronous),
57 m_enabled (rhs.m_enabled),
58 m_one_shot (rhs.m_one_shot),
59 m_ignore_count (rhs.m_ignore_count),
62 if (rhs.m_thread_spec_ap.get() != NULL)
63 m_thread_spec_ap.reset (new ThreadSpec(*rhs.m_thread_spec_ap.get()));
64 m_condition_text = rhs
72 operator =(const BreakpointOptions& rhs) argument
[all...]

Completed in 9227 milliseconds

1234567891011>>