Searched refs:rhs (Results 1 - 25 of 941) 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/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/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/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/ceres-solver/internal/ceres/
H A Dblock_structure.cc36 bool CellLessThan(const Cell& lhs, const Cell& rhs) { argument
37 return (lhs.block_id < rhs.block_id);
/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/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/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/chrome/browser/browsing_data/
H A Dbrowsing_data_quota_helper.cc46 const BrowsingDataQuotaHelper::QuotaInfo& rhs) const {
47 if (this->host != rhs.host)
48 return this->host < rhs.host;
49 if (this->temporary_usage != rhs.temporary_usage)
50 return this->temporary_usage < rhs.temporary_usage;
51 if (this->syncable_usage != rhs.syncable_usage)
52 return this->syncable_usage < rhs.syncable_usage;
53 return this->persistent_usage < rhs.persistent_usage;
57 const BrowsingDataQuotaHelper::QuotaInfo& rhs) const {
58 return this->host == rhs
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph_info.cc46 bool BitmapGlyphInfo::operator==(const BitmapGlyphInfo& rhs) const {
47 return (format_ == rhs.format_ &&
48 glyph_id_ == rhs.glyph_id_ &&
49 length_ == rhs.length_ &&
50 offset() == rhs.offset());
53 bool BitmapGlyphInfo::operator==(BitmapGlyphInfo* rhs) { argument
54 if (rhs == NULL) {
57 return (format_ == rhs->format() &&
58 glyph_id_ == rhs->glyph_id() &&
59 length_ == rhs
63 operator ()(BitmapGlyphInfo* lhs, BitmapGlyphInfo* rhs) argument
[all...]
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph_info.cc46 bool BitmapGlyphInfo::operator==(const BitmapGlyphInfo& rhs) const {
47 return (format_ == rhs.format_ &&
48 glyph_id_ == rhs.glyph_id_ &&
49 length_ == rhs.length_ &&
50 offset() == rhs.offset());
53 bool BitmapGlyphInfo::operator==(BitmapGlyphInfo* rhs) { argument
54 if (rhs == NULL) {
57 return (format_ == rhs->format() &&
58 glyph_id_ == rhs->glyph_id() &&
59 length_ == rhs
63 operator ()(BitmapGlyphInfo* lhs, BitmapGlyphInfo* rhs) argument
[all...]
/external/chromium_org/content/public/test/
H A Dmock_download_manager.cc43 const CreateDownloadItemAdapter& rhs)
44 : id(rhs.id),
45 current_path(rhs.current_path),
46 target_path(rhs.target_path),
47 url_chain(rhs.url_chain),
48 referrer_url(rhs.referrer_url),
49 start_time(rhs.start_time),
50 end_time(rhs.end_time),
51 etag(rhs.etag),
52 last_modified(rhs
42 CreateDownloadItemAdapter( const CreateDownloadItemAdapter& rhs) argument
62 operator ==( const CreateDownloadItemAdapter& rhs) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_pipelined_host.cc13 bool HttpPipelinedHost::Key::operator<(const Key& rhs) const {
14 return origin_ < rhs.origin_;
/external/chromium_org/third_party/ots/src/
H A Dname.h35 bool operator<(const NameRecord& rhs) const {
36 if (platform_id < rhs.platform_id) return true;
37 if (platform_id > rhs.platform_id) return false;
38 if (encoding_id < rhs.encoding_id) return true;
39 if (encoding_id > rhs.encoding_id) return false;
40 if (language_id < rhs.language_id) return true;
41 if (language_id > rhs.language_id) return false;
42 return name_id < rhs.name_id;
/external/chromium_org/ui/compositor/test/
H A Dtest_utils.cc15 const gfx::Transform& rhs) {
19 EXPECT_FLOAT_EQ(lhs.matrix().get(i, j), rhs.matrix().get(i, j))
28 << rhs.ToString();
32 void CheckApproximatelyEqual(const gfx::Rect& lhs, const gfx::Rect& rhs) { argument
33 EXPECT_FLOAT_EQ(lhs.x(), rhs.x());
34 EXPECT_FLOAT_EQ(lhs.y(), rhs.y());
35 EXPECT_FLOAT_EQ(lhs.width(), rhs.width());
36 EXPECT_FLOAT_EQ(lhs.height(), rhs.height());
14 CheckApproximatelyEqual(const gfx::Transform& lhs, const gfx::Transform& rhs) argument
/external/chromium_org/net/quic/
H A Dquic_bandwidth.h67 inline bool operator==(QuicBandwidth lhs, QuicBandwidth rhs) { argument
68 return lhs.ToBitsPerSecond() == rhs.ToBitsPerSecond();
70 inline bool operator!=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
71 return !(lhs == rhs);
73 inline bool operator<(QuicBandwidth lhs, QuicBandwidth rhs) { argument
74 return lhs.ToBitsPerSecond() < rhs.ToBitsPerSecond();
76 inline bool operator>(QuicBandwidth lhs, QuicBandwidth rhs) { argument
77 return rhs < lhs;
79 inline bool operator<=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
80 return !(rhs < lh
82 operator >=(QuicBandwidth lhs, QuicBandwidth rhs) argument
[all...]
/external/chromium_org/printing/
H A Dpage_range.h23 bool operator==(const PageRange& rhs) const {
24 return from == rhs.from && to == rhs.to;
/external/chromium_org/sync/internal_api/public/util/
H A Dexperiments.h21 bool Matches(const Experiments& rhs) { argument
22 return (autofill_culling == rhs.autofill_culling &&
23 favicon_sync_limit == rhs.favicon_sync_limit);
/external/chromium_org/ui/gfx/
H A Dpoint3_f.cc15 Point3F operator+(const Point3F& lhs, const Vector3dF& rhs) { argument
16 float x = lhs.x() + rhs.x();
17 float y = lhs.y() + rhs.y();
18 float z = lhs.z() + rhs.z();
24 Point3F operator-(const Point3F& lhs, const Vector3dF& rhs) { argument
25 float x = lhs.x() - rhs.x();
26 float y = lhs.y() - rhs.y();
27 float z = lhs.z() - rhs.z();
33 Vector3dF operator-(const Point3F& lhs, const Point3F& rhs) { argument
34 float x = lhs.x() - rhs
[all...]

Completed in 2608 milliseconds

1234567891011>>