Searched defs:rhs (Results 201 - 225 of 642) sorted by relevance

1234567891011>>

/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/oprofile/libpp/
H A Ddiff_container.cpp28 bool rough_less(symbol_entry const & lhs, symbol_entry const & rhs) argument
30 if (lhs.image_name != rhs.image_name)
31 return lhs.image_name < rhs.image_name;
33 if (lhs.app_name != rhs.app_name)
34 return lhs.app_name < rhs.app_name;
36 if (lhs.name != rhs.name)
37 return lhs.name < rhs.name;
H A Dsymbol_sort.cpp44 symbol_entry const & lhs, symbol_entry const & rhs)
48 if (lhs.sample.counts[0] < rhs.sample.counts[0])
50 if (lhs.sample.counts[0] > rhs.sample.counts[0])
56 symbol_names.demangle(rhs.name));
59 return image_compare(lhs.image_name, rhs.image_name);
62 return image_compare(lhs.app_name, rhs.app_name);
65 if (lhs.sample.vma < rhs.sample.vma)
67 if (lhs.sample.vma > rhs.sample.vma)
73 file_location const & f2 = rhs.sample.file_loc;
100 symbol_entry const * rhs) cons
43 compare_by(sort_options::sort_order order, symbol_entry const & lhs, symbol_entry const & rhs) argument
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h132 static bool CStringEquals(const char* lhs, const char* rhs);
150 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
159 const char* rhs);
174 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) <
281 operator =(const String& rhs) argument
[all...]
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dcomposite_bitmap_glyph.cc64 CompositeBitmapGlyph::Component::Component(const Component& rhs) argument
65 : glyph_code_(rhs.glyph_code_),
66 x_offset_(rhs.x_offset_),
67 y_offset_(rhs.y_offset_) {
71 const CompositeBitmapGlyph::Component& rhs) {
72 return glyph_code_ == rhs.glyph_code_;
76 const CompositeBitmapGlyph::Component& rhs) {
77 glyph_code_ = rhs.glyph_code_;
78 x_offset_ = rhs.x_offset_;
79 y_offset_ = rhs
70 operator ==( const CompositeBitmapGlyph::Component& rhs) argument
75 operator =( const CompositeBitmapGlyph::Component& rhs) argument
[all...]
/external/bison/src/
H A Dgram.h58 RULES[R].rhs -- the index in RITEM of the beginning of the portion
184 item_number *rhs; member in struct:__anon375
/external/chromium_org/base/containers/
H A Dstack_container.h75 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) argument
76 : std::allocator<T>(), source_(rhs.source_) {
/external/chromium_org/components/password_manager/core/browser/
H A Dtest_password_store.cc40 const autofill::PasswordForm& rhs) {
41 return lhs.origin == rhs.origin &&
42 lhs.username_element == rhs.username_element &&
43 lhs.username_value == rhs.username_value &&
44 lhs.password_element == rhs.password_element &&
45 lhs.signon_realm == rhs.signon_realm;
39 FormsAreEquivalent(const autofill::PasswordForm& lhs, const autofill::PasswordForm& rhs) argument
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_process_manager.cc20 bool operator()(const Value& lhs, const Value& rhs) { argument
21 return lhs.second > rhs.second;
/external/chromium_org/content/public/test/
H A Dmock_download_manager.cc47 const CreateDownloadItemAdapter& rhs)
48 : id(rhs.id),
49 current_path(rhs.current_path),
50 target_path(rhs.target_path),
51 url_chain(rhs.url_chain),
52 referrer_url(rhs.referrer_url),
53 start_time(rhs.start_time),
54 end_time(rhs.end_time),
55 etag(rhs.etag),
56 last_modified(rhs
46 CreateDownloadItemAdapter( const CreateDownloadItemAdapter& rhs) argument
66 operator ==( const CreateDownloadItemAdapter& rhs) argument
[all...]
/external/chromium_org/media/cast/logging/
H A Dencoding_event_subscriber.cc31 bool IsRtpTimestampLessThan(const ProtoPtr& lhs, const ProtoPtr& rhs) { argument
32 return lhs->relative_rtp_timestamp() < rhs->relative_rtp_timestamp();
/external/chromium_org/media/cast/net/rtcp/
H A Drtcp_defines.h82 RtcpReceiverReferenceTimeReport rhs) {
83 return lhs.remote_ssrc == rhs.remote_ssrc &&
84 lhs.ntp_seconds == rhs.ntp_seconds &&
85 lhs.ntp_fraction == rhs.ntp_fraction;
81 operator ==(RtcpReceiverReferenceTimeReport lhs, RtcpReceiverReferenceTimeReport rhs) argument
/external/chromium_org/net/socket/
H A Dwebsocket_endpoint_lock_manager.cc90 WebSocketEndpointLockManager::LockInfo::LockInfo(const LockInfo& rhs) argument
91 : socket(rhs.socket) {
92 DCHECK(!rhs.queue);
/external/chromium_org/ppapi/cpp/
H A Dpoint.h297 /// @param[in] rhs The Point on the right-hand side of the equation.
300 inline bool operator==(const pp::Point& lhs, const pp::Point& rhs) { argument
301 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
307 /// @param[in] rhs The Point on the right-hand side of the equation.
310 /// of rhs, otherwise false.
311 inline bool operator!=(const pp::Point& lhs, const pp::Point& rhs) { argument
312 return !(lhs == rhs);
318 /// @param[in] rhs The Point on the right-hand side of the equation.
321 inline bool operator==(const pp::FloatPoint& lhs, const pp::FloatPoint& rhs) { argument
332 operator !=(const pp::FloatPoint& lhs, const pp::FloatPoint& rhs) argument
[all...]
H A Dsize.h288 /// @param[in] rhs The <code>Size</code> on the right-hand side of the
292 inline bool operator==(const pp::Size& lhs, const pp::Size& rhs) { argument
293 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
299 /// @param[in] rhs The <code>Size</code> on the right-hand side of the equation.
302 /// <code>Size</code> of rhs, otherwise false.
303 inline bool operator!=(const pp::Size& lhs, const pp::Size& rhs) { argument
304 return !(lhs == rhs);
312 /// @param[in] rhs The <code>FloatSize</code> on the right-hand side of the
316 inline bool operator==(const pp::FloatSize& lhs, const pp::FloatSize& rhs) { argument
329 operator !=(const pp::FloatSize& lhs, const pp::FloatSize& rhs) argument
[all...]
/external/chromium_org/storage/browser/quota/
H A Dquota_temporary_storage_evictor.h44 void subtract_assign(const Statistics& rhs) { argument
45 num_errors_on_evicting_origin -= rhs.num_errors_on_evicting_origin;
47 rhs.num_errors_on_getting_usage_and_quota;
48 num_evicted_origins -= rhs.num_evicted_origins;
49 num_eviction_rounds -= rhs.num_eviction_rounds;
50 num_skipped_eviction_rounds -= rhs.num_skipped_eviction_rounds;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.cpp78 NumericOp::NumericOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs) argument
82 addSubExpression(rhs);
88 Value rhs(subExpr(1)->evaluate(context));
91 double rightVal = rhs.toNumber();
109 EqTestOp::EqTestOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs) argument
113 addSubExpression(rhs);
116 bool EqTestOp::compare(EvaluationContext& context, const Value& lhs, const Value& rhs) const
120 if (rhs.isNodeSet()) {
126 const NodeSet& rhsSet = rhs.toNodeSet(&context);
135 if (rhs
227 LogicalOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs) argument
255 Value rhs = subExpr(1)->evaluate(context); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp168 bool operator==(const LinearTimingFunction& lhs, const TimingFunction& rhs) argument
170 return rhs.type() == TimingFunction::LinearFunction;
173 bool operator==(const CubicBezierTimingFunction& lhs, const TimingFunction& rhs) argument
175 if (rhs.type() != TimingFunction::CubicBezierFunction)
178 const CubicBezierTimingFunction& ctf = toCubicBezierTimingFunction(rhs);
185 bool operator==(const StepsTimingFunction& lhs, const TimingFunction& rhs) argument
187 if (rhs.type() != TimingFunction::StepsFunction)
190 const StepsTimingFunction& stf = toStepsTimingFunction(rhs);
196 bool operator==(const TimingFunction& lhs, const TimingFunction& rhs) argument
201 return (linear == rhs);
218 operator !=(const TimingFunction& lhs, const TimingFunction& rhs) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_builder.cpp49 assign(deref lhs, operand rhs, int writemask) argument
54 rhs.val,
61 assign(deref lhs, operand rhs) argument
63 return assign(lhs, rhs, (1 << lhs.val->type->vector_elements) - 1);
H A Dopt_copy_propagation.cpp46 acp_entry(ir_variable *lhs, ir_variable *rhs) argument
49 assert(rhs);
51 this->rhs = rhs;
55 ir_variable *rhs; member in class:__anon14265::acp_entry
174 ir->var = entry->rhs;
221 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs));
297 if (entry->lhs == var || entry->rhs == var) {
320 ir_variable *rhs_var = ir->rhs->whole_variable_referenced();
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp174 ir->rhs->as_dereference_variable() &&
186 ir->rhs->accept(this);
261 ir_dereference_variable *rhs_deref = ir->rhs->as_dereference_variable();
263 variable_entry *rhs = rhs_deref ? get_splitting_entry(rhs_deref->var) : NULL; local
265 if (lhs_deref && rhs_deref && (lhs || rhs) && !ir->condition) {
272 void *mem_ctx = lhs ? lhs->mem_ctx : rhs->mem_ctx;
286 if (rhs) {
288 new(mem_ctx) ir_dereference_variable(rhs->components[rhs_chan]);
290 new_rhs = new(mem_ctx) ir_swizzle(ir->rhs->clone(mem_ctx, NULL),
326 handle_rvalue(&ir->rhs);
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRTree.h133 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const {
134 return lhs.fBounds.*fSide < rhs.fBounds.*fSide;
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
143 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1);
148 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
150 ((rhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1);
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtick_util.h63 // Returns a TickInterval that is the difference in ticks beween rhs and lhs.
64 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs);
92 const TickInterval& rhs);
93 TickInterval& operator+=(const TickInterval& rhs);
95 // Returns a TickInterval corresponding to rhs - lhs.
97 const TickInterval& rhs);
98 TickInterval& operator-=(const TickInterval& rhs);
100 friend bool operator>(const TickInterval& lhs, const TickInterval& rhs);
101 friend bool operator<=(const TickInterval& lhs, const TickInterval& rhs);
102 friend bool operator<(const TickInterval& lhs, const TickInterval& rhs);
115 operator +(const TickInterval& lhs, const TickInterval& rhs) argument
120 operator -(const TickInterval& lhs, const TickInterval& rhs) argument
125 operator -(const TickTime& lhs, const TickTime& rhs) argument
135 operator >(const TickInterval& lhs, const TickInterval& rhs) argument
139 operator <=(const TickInterval& lhs, const TickInterval& rhs) argument
143 operator <(const TickInterval& lhs, const TickInterval& rhs) argument
147 operator >=(const TickInterval& lhs, const TickInterval& rhs) argument
286 operator +=(const TickInterval& rhs) argument
291 operator -=(const TickInterval& rhs) argument
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dmatrix3_f.cc88 bool Matrix3F::IsEqual(const Matrix3F& rhs) const {
89 return 0 == memcmp(data_, rhs.data_, sizeof(data_));
92 bool Matrix3F::IsNear(const Matrix3F& rhs, float precision) const { argument
95 if (std::abs(data_[i] - rhs.data_[i]) > precision)
H A Dpoint3_f.h85 inline bool operator==(const Point3F& lhs, const Point3F& rhs) { argument
86 return lhs.x() == rhs.x() && lhs.y() == rhs.y() && lhs.z() == rhs.z();
89 inline bool operator!=(const Point3F& lhs, const Point3F& rhs) { argument
90 return !(lhs == rhs);
94 GFX_EXPORT Point3F operator+(const Point3F& lhs, const Vector3dF& rhs);
98 GFX_EXPORT Point3F operator-(const Point3F& lhs, const Vector3dF& rhs);
102 GFX_EXPORT Vector3dF operator-(const Point3F& lhs, const Point3F& rhs);

Completed in 5445 milliseconds

1234567891011>>