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

1234567891011>>

/external/clang/test/CodeGen/
H A Dblocks-seq.c3 // CHECK: call i32 (...)* @rhs()
6 // CHECK: call i32 (...)* @rhs()
10 int rhs();
14 i = rhs();
15 i += rhs();
H A Darm-neon-fma.c11 float32x2_t test_fma_order(float32x2_t accum, float32x2_t lhs, float32x2_t rhs) { argument
12 return vfma_f32(accum, lhs, rhs);
13 // CHECK: call <2 x float> @llvm.fma.v2f32(<2 x float> %lhs, <2 x float> %rhs, <2 x float> %accum)
16 float32x4_t test_fmaq_order(float32x4_t accum, float32x4_t lhs, float32x4_t rhs) { argument
17 return vfmaq_f32(accum, lhs, rhs);
18 // CHECK: call <4 x float> @llvm.fma.v4f32(<4 x float> %lhs, <4 x float> %rhs, <4 x float> %accum)
/external/chromium_org/content/common/
H A Dwebplugin_geometry.cc18 bool WebPluginGeometry::Equals(const WebPluginGeometry& rhs) const {
19 return window == rhs.window &&
20 window_rect == rhs.window_rect &&
21 clip_rect == rhs.clip_rect &&
22 cutout_rects == rhs.cutout_rects &&
23 rects_valid == rhs.rects_valid &&
24 visible == rhs.visible;
/external/ceres-solver/internal/ceres/
H A Dblock_structure.cc36 bool CellLessThan(const Cell& lhs, const Cell& rhs) { argument
37 if (lhs.block_id == rhs.block_id) {
38 return (lhs.position < rhs.position);
40 return (lhs.block_id < rhs.block_id);
/external/oprofile/libpp/
H A Dsymbol_functors.cpp15 symbol_entry const & rhs) const
17 if (lhs.image_name != rhs.image_name)
18 return lhs.image_name < rhs.image_name;
20 if (lhs.app_name != rhs.app_name)
21 return lhs.app_name < rhs.app_name;
23 if (lhs.name != rhs.name)
24 return lhs.name < rhs.name;
26 if (lhs.sample.vma != rhs.sample.vma)
27 return lhs.sample.vma < rhs.sample.vma;
29 return lhs.size < rhs
[all...]
H A Dsymbol_functors.h20 sample_entry const * rhs) const {
21 return lhs->file_loc < rhs->file_loc;
25 symbol_entry const * rhs) const {
26 return lhs->sample.file_loc < rhs->sample.file_loc;
35 symbol_entry const & rhs) const;
/external/chromium_org/cc/input/
H A Dlayer_selection_bound.cc17 const LayerSelectionBound& rhs) {
18 return lhs.type == rhs.type && lhs.layer_id == rhs.layer_id &&
19 lhs.edge_top == rhs.edge_top && lhs.edge_bottom == rhs.edge_bottom;
23 const LayerSelectionBound& rhs) {
24 return !(lhs == rhs);
16 operator ==(const LayerSelectionBound& lhs, const LayerSelectionBound& rhs) argument
22 operator !=(const LayerSelectionBound& lhs, const LayerSelectionBound& rhs) argument
/external/chromium_org/cc/output/
H A Dviewport_selection_bound.cc17 const ViewportSelectionBound& rhs) {
18 return lhs.type == rhs.type && lhs.visible == rhs.visible &&
19 lhs.edge_top == rhs.edge_top && lhs.edge_bottom == rhs.edge_bottom;
23 const ViewportSelectionBound& rhs) {
24 return !(lhs == rhs);
16 operator ==(const ViewportSelectionBound& lhs, const ViewportSelectionBound& rhs) argument
22 operator !=(const ViewportSelectionBound& lhs, const ViewportSelectionBound& rhs) argument
/external/chromium_org/chrome/common/
H A Dinstant_types.cc29 bool RGBAColor::operator==(const RGBAColor& rhs) const {
30 return r == rhs.r &&
31 g == rhs.g &&
32 b == rhs.b &&
33 a == rhs.a;
55 bool ThemeBackgroundInfo::operator==(const ThemeBackgroundInfo& rhs) const {
56 return using_default_theme == rhs.using_default_theme &&
57 background_color == rhs.background_color &&
58 text_color == rhs.text_color &&
59 link_color == rhs
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dpacket.h46 bool operator==(const Packet& rhs) const {
47 return (this->header.timestamp == rhs.header.timestamp &&
48 this->header.sequenceNumber == rhs.header.sequenceNumber &&
49 this->primary == rhs.primary &&
50 this->sync_packet == rhs.sync_packet);
52 bool operator!=(const Packet& rhs) const { return !operator==(rhs); }
53 bool operator<(const Packet& rhs) const {
54 if (this->header.timestamp == rhs.header.timestamp) {
55 if (this->header.sequenceNumber == rhs
[all...]
/external/chromium_org/media/base/
H A Dranges.cc11 const base::TimeDelta& rhs) const {
12 DCHECK(lhs < rhs) << lhs.ToInternalValue() << " < " << rhs.ToInternalValue();
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dextension_token_key.cc16 bool ExtensionTokenKey::operator<(const ExtensionTokenKey& rhs) const {
17 if (extension_id < rhs.extension_id)
19 else if (rhs.extension_id < extension_id)
22 if (account_id < rhs.account_id)
24 else if (rhs.account_id < account_id)
27 return scopes < rhs.scopes;
/external/mockito/src/org/mockito/internal/matchers/apachecommons/
H A DEqualsBuilder.java44 * MyClass rhs = (MyClass) obj;
47 * .append(field1, rhs.field1)
48 * .append(field2, rhs.field2)
49 * .append(field3, rhs.field3)
112 * @param rhs the other object
115 public static boolean reflectionEquals(Object lhs, Object rhs) { argument
116 return reflectionEquals(lhs, rhs, false, null, null);
134 * @param rhs the other object
138 public static boolean reflectionEquals(Object lhs, Object rhs, String[] excludeFields) { argument
139 return reflectionEquals(lhs, rhs, fals
162 reflectionEquals(Object lhs, Object rhs, boolean testTransients) argument
191 reflectionEquals(Object lhs, Object rhs, boolean testTransients, Class reflectUpToClass) argument
221 reflectionEquals(Object lhs, Object rhs, boolean testTransients, Class reflectUpToClass, String[] excludeFields) argument
281 reflectionAppend( Object lhs, Object rhs, Class clazz, EqualsBuilder builder, boolean useTransients, String[] excludeFields) argument
335 append(Object lhs, Object rhs) argument
394 append(long lhs, long rhs) argument
409 append(int lhs, int rhs) argument
424 append(short lhs, short rhs) argument
439 append(char lhs, char rhs) argument
454 append(byte lhs, byte rhs) argument
475 append(double lhs, double rhs) argument
495 append(float lhs, float rhs) argument
509 append(boolean lhs, boolean rhs) argument
527 append(Object[] lhs, Object[] rhs) argument
558 append(long[] lhs, long[] rhs) argument
589 append(int[] lhs, int[] rhs) argument
620 append(short[] lhs, short[] rhs) argument
651 append(char[] lhs, char[] rhs) argument
682 append(byte[] lhs, byte[] rhs) argument
713 append(double[] lhs, double[] rhs) argument
744 append(float[] lhs, float[] rhs) argument
775 append(boolean[] lhs, boolean[] rhs) argument
[all...]
/external/chromium_org/components/url_matcher/
H A Dstring_pattern.cc15 bool StringPattern::operator<(const StringPattern& rhs) const {
16 if (id_ != rhs.id_) return id_ < rhs.id_;
17 return pattern_ < rhs.pattern_;
/external/libcxx/test/numerics/complex.number/complex.ops/
H A Dcomplex_equals_scalar.pass.cpp14 // operator==(const complex<T>& lhs, const T& rhs);
26 constexpr T rhs(-2.5);
27 static_assert(!(lhs == rhs), "");
31 constexpr T rhs(-2.5);
32 static_assert(!(lhs == rhs), "");
36 constexpr T rhs(1.5);
37 static_assert(!(lhs == rhs), "");
41 constexpr T rhs(1.5);
42 static_assert( (lhs == rhs), "");
53 T rhs(
[all...]
H A Dcomplex_not_equals_scalar.pass.cpp14 // operator!=(const complex<T>& lhs, const T& rhs);
26 constexpr T rhs(-2.5);
27 static_assert(lhs != rhs, "");
31 constexpr T rhs(-2.5);
32 static_assert(lhs != rhs, "");
36 constexpr T rhs(1.5);
37 static_assert(lhs != rhs, "");
41 constexpr T rhs(1.5);
42 static_assert( !(lhs != rhs), "");
53 T rhs(
[all...]
H A Dscalar_equals_complex.pass.cpp14 // operator==(const T& lhs, const complex<T>& rhs);
26 constexpr std::complex<T> rhs(1.5, 2.5);
27 static_assert(!(lhs == rhs), "");
31 constexpr std::complex<T> rhs(1.5, 0);
32 static_assert(!(lhs == rhs), "");
36 constexpr std::complex<T> rhs(1.5, 2.5);
37 static_assert(!(lhs == rhs), "");
41 constexpr std::complex<T> rhs(1.5, 0);
42 static_assert(lhs == rhs, "");
53 std::complex<T> rhs(1.
[all...]
H A Dscalar_not_equals_complex.pass.cpp14 // operator!=(const T& lhs, const complex<T>& rhs);
26 constexpr std::complex<T> rhs(1.5, 2.5);
27 static_assert (lhs != rhs, "");
31 constexpr std::complex<T> rhs(1.5, 0);
32 static_assert (lhs != rhs, "");
36 constexpr std::complex<T> rhs(1.5, 2.5);
37 static_assert (lhs != rhs, "");
41 constexpr std::complex<T> rhs(1.5, 0);
42 static_assert (!(lhs != rhs), "");
53 std::complex<T> rhs(1.
[all...]
/external/chromium_org/ui/base/ime/
H A Dcomposition_text.h20 bool operator==(const CompositionText& rhs) const {
21 if ((this->text != rhs.text) ||
22 (this->selection != rhs.selection) ||
23 (this->underlines.size() != rhs.underlines.size()))
26 if (this->underlines[i] != rhs.underlines[i])
32 bool operator!=(const CompositionText& rhs) const {
33 return !(*this == rhs);
/external/chromium_org/chrome/browser/profiles/
H A Dstorage_partition_descriptor.h28 const StoragePartitionDescriptor& rhs) const {
29 if (lhs.path != rhs.path)
30 return lhs.path < rhs.path;
31 else if (lhs.in_memory != rhs.in_memory)
32 return lhs.in_memory < rhs.in_memory;
/external/libcxx/test/utilities/optional/optional.object/optional.object.ctor/
H A Dcopy.pass.cpp12 // optional(const optional<T>& rhs);
24 test(const optional<T>& rhs, bool is_going_to_throw = false) argument
26 bool rhs_engaged = static_cast<bool>(rhs);
29 optional<T> lhs = rhs;
33 assert(*lhs == *rhs);
85 optional<T> rhs; local
86 test(rhs);
90 optional<T> rhs(3);
91 test(rhs);
95 optional<T> rhs; local
105 optional<T> rhs; local
115 optional<T> rhs; local
[all...]
H A Dmove.pass.cpp12 // optional(optional<T>&& rhs) noexcept(is_nothrow_move_constructible<T>::value);
24 test(optional<T>& rhs, bool is_going_to_throw = false) argument
28 bool rhs_engaged = static_cast<bool>(rhs);
31 optional<T> lhs = std::move(rhs);
85 optional<T> rhs; local
86 test(rhs);
90 optional<T> rhs(3);
91 test(rhs);
95 optional<T> rhs; local
96 test(rhs);
105 optional<T> rhs; local
115 optional<T> rhs; local
[all...]
/external/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;
/external/clang/test/Analysis/
H A Dptr-arith.c171 void use_symbols(int *lhs, int *rhs) { argument
172 clang_analyzer_eval(lhs < rhs); // expected-warning{{UNKNOWN}}
173 if (lhs < rhs)
175 clang_analyzer_eval(lhs < rhs); // expected-warning{{FALSE}}
177 clang_analyzer_eval(lhs - rhs); // expected-warning{{UNKNOWN}}
178 if ((lhs - rhs) != 5)
180 clang_analyzer_eval((lhs - rhs) == 5); // expected-warning{{TRUE}}
183 void equal_implies_zero(int *lhs, int *rhs) { argument
184 clang_analyzer_eval(lhs == rhs); // expected-warning{{UNKNOWN}}
185 if (lhs == rhs) {
195 zero_implies_equal(int *lhs, int *rhs) argument
207 comparisons_imply_size(int *lhs, int *rhs) argument
229 size_implies_comparison(int *lhs, int *rhs) argument
255 zero_implies_reversed_equal(int *lhs, int *rhs) argument
271 canonical_equal(int *lhs, int *rhs) argument
[all...]
/external/chromium_org/sync/internal_api/public/util/
H A Dexperiments.h35 bool Matches(const Experiments& rhs) { argument
36 return (favicon_sync_limit == rhs.favicon_sync_limit &&
37 gcm_channel_state == rhs.gcm_channel_state &&
38 enhanced_bookmarks_enabled == rhs.enhanced_bookmarks_enabled &&
39 enhanced_bookmarks_ext_id == rhs.enhanced_bookmarks_ext_id &&
40 gcm_invalidations_enabled == rhs.gcm_invalidations_enabled);

Completed in 673 milliseconds

1234567891011>>