Searched defs:lhs (Results 151 - 175 of 432) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/cpp/
H A Dsize.h287 /// @param[in] lhs The <code>Size</code> on the left-hand side of the equation.
292 inline bool operator==(const pp::Size& lhs, const pp::Size& rhs) { argument
293 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
298 /// @param[in] lhs The <code>Size</code> on the left-hand side of the equation.
301 /// @return true if the <code>Size</code> of lhs are equal to the
303 inline bool operator!=(const pp::Size& lhs, const pp::Size& rhs) { argument
304 return !(lhs == rhs);
310 /// @param[in] lhs The <code>FloatSize</code> on the left-hand side of the
316 inline bool operator==(const pp::FloatSize& lhs, cons argument
329 operator !=(const pp::FloatSize& lhs, const pp::FloatSize& rhs) argument
[all...]
/external/chromium_org/sync/notifier/
H A Dinvalidation_util.cc25 bool ObjectIdLessThan::operator()(const invalidation::ObjectId& lhs, argument
27 return (lhs.source() < rhs.source()) ||
28 (lhs.source() == rhs.source() && lhs.name() < rhs.name());
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.cpp78 NumericOp::NumericOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs) argument
81 addSubExpression(lhs);
87 Value lhs(subExpr(0)->evaluate());
90 double leftVal = lhs.toNumber();
109 EqTestOp::EqTestOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs) argument
112 addSubExpression(lhs);
116 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const argument
118 if (lhs.isNodeSet()) {
119 const NodeSet& lhsSet = lhs.toNodeSet();
166 return compare(lhs
227 LogicalOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> 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
51 void *mem_ctx = ralloc_parent(lhs.val);
53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.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
48 assert(lhs);
50 this->lhs = lhs;
54 ir_variable *lhs; member in class:__anon13265::acp_entry
141 kill(ir->lhs->variable_referenced());
173 if (var == entry->lhs) {
221 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs));
297 if (entry->lhs == var || entry->rhs == var) {
H A Dopt_dead_code_local.cpp48 assignment_entry(ir_variable *lhs, ir_assignment *ir) argument
50 assert(lhs);
52 this->lhs = lhs;
57 ir_variable *lhs; member in class:__anon13267::assignment_entry
76 if (entry->lhs == var) {
79 printf("kill %s (0x%01x - 0x%01x)\n", entry->lhs->name,
86 printf("kill %s\n", entry->lhs->name);
164 array_index_visit::run(ir->lhs, &v);
165 var = ir->lhs
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp173 if (ir->lhs->as_dereference_variable() &&
181 if (ir->lhs->as_dereference_variable() &&
260 ir_dereference_variable *lhs_deref = ir->lhs->as_dereference_variable();
262 variable_entry *lhs = lhs_deref ? get_splitting_entry(lhs_deref->var) : NULL; local
265 if (lhs_deref && rhs_deref && (lhs || rhs) && !ir->condition) {
269 for (unsigned int i = 0; i < ir->lhs->type->vector_elements; i++) {
272 void *mem_ctx = lhs ? lhs->mem_ctx : rhs->mem_ctx;
278 if (lhs) {
279 new_lhs = new(mem_ctx) ir_dereference_variable(lhs
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRTree.h133 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { argument
134 return lhs.fBounds.*fSide < rhs.fBounds.*fSide;
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
142 return ((lhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1) <
143 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1);
148 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
149 return ((lhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) <
150 ((rhs.fBounds.fBottom - lhs
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtick_util.h60 friend TickTime operator+(const TickTime lhs, const int64_t ticks);
63 // Returns a TickInterval that is the difference in ticks beween rhs and lhs.
64 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs);
91 friend TickInterval operator+(const TickInterval& lhs,
95 // Returns a TickInterval corresponding to rhs - lhs.
96 friend TickInterval operator-(const TickInterval& lhs,
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);
103 friend bool operator>=(const TickInterval& lhs, cons
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
129 operator +(const TickTime lhs, const int64_t ticks) 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
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dpoint3_f.h84 inline bool operator==(const Point3F& lhs, const Point3F& rhs) { argument
85 return lhs.x() == rhs.x() && lhs.y() == rhs.y() && lhs.z() == rhs.z();
88 inline bool operator!=(const Point3F& lhs, const Point3F& rhs) { argument
89 return !(lhs == rhs);
93 GFX_EXPORT Point3F operator+(const Point3F& lhs, const Vector3dF& rhs);
97 GFX_EXPORT Point3F operator-(const Point3F& lhs, const Vector3dF& rhs);
101 GFX_EXPORT Vector3dF operator-(const Point3F& lhs, const Point3F& rhs);
H A Dquad_f.cc111 QuadF operator+(const QuadF& lhs, const Vector2dF& rhs) { argument
112 QuadF result = lhs;
117 QuadF operator-(const QuadF& lhs, const Vector2dF& rhs) { argument
118 QuadF result = lhs;
H A Dquad_f.h91 inline bool operator==(const QuadF& lhs, const QuadF& rhs) { argument
93 lhs.p1() == rhs.p1() && lhs.p2() == rhs.p2() &&
94 lhs.p3() == rhs.p3() && lhs.p4() == rhs.p4();
97 inline bool operator!=(const QuadF& lhs, const QuadF& rhs) { argument
98 return !(lhs == rhs);
102 GFX_EXPORT QuadF operator+(const QuadF& lhs, const Vector2dF& rhs);
105 GFX_EXPORT QuadF operator-(const QuadF& lhs, const Vector2dF& rhs);
H A Dvector3d_f.h80 inline bool operator==(const Vector3dF& lhs, const Vector3dF& rhs) { argument
81 return lhs.x() == rhs.x() && lhs.y() == rhs.y() && lhs.z() == rhs.z();
88 inline Vector3dF operator+(const Vector3dF& lhs, const Vector3dF& rhs) { argument
89 Vector3dF result = lhs;
94 inline Vector3dF operator-(const Vector3dF& lhs, const Vector3dF& rhs) { argument
95 Vector3dF result = lhs;
101 inline Vector3dF CrossProduct(const Vector3dF& lhs, const Vector3dF& rhs) { argument
102 Vector3dF result = lhs;
[all...]
/external/chromium_org/ui/gfx/
H A Dtransform.h39 // Initialize with the concatenation of lhs * rhs.
40 Transform(const Transform& lhs, const Transform& rhs) argument
41 : matrix_(lhs.matrix_, rhs.matrix_) {}
/external/chromium_org/win8/metro_driver/
H A Dwinrt_utils.cc63 hr = lhs->Get ## Name ##(&lhs_value); \
64 CheckHR(hr, "Can't get value for lhs"); \
89 HRESULT CompareProperties(winfoundtn::IPropertyValue* lhs, argument
97 if (lhs == rhs) {
103 HRESULT hr = lhs->get_Type(&lhs_property_type);
105 PLOG(DFATAL) << "Can't get property type for lhs, hr=" << std::hex << hr;
118 hr = lhs->GetString(lhs_string.GetAddressOf());
119 CheckHR(hr, "Can't get string for lhs");
/external/clang/include/clang/Basic/
H A DSourceManagerInternals.h63 inline bool operator<(const LineEntry &lhs, const LineEntry &rhs) { argument
65 return lhs.FileOffset < rhs.FileOffset;
/external/lldb/include/lldb/Core/
H A DHistory.h70 // Return 0 when lhs == rhs, 1 if lhs > rhs, or -1 if lhs < rhs.
72 CompareHistoryEvents (const HistoryEvent lhs,
149 // Return 0 when lhs == rhs, 1 if lhs > rhs, or -1 if lhs < rhs.
151 CompareHistoryEvents (const HistoryEvent lhs, argument
154 uintptr_t lhs_uint = (uintptr_t)lhs;
/external/lldb/source/Core/
H A DUUID.cpp246 lldb_private::operator == (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
248 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) == 0;
252 lldb_private::operator != (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
254 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) != 0;
258 lldb_private::operator < (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
260 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) < 0;
264 lldb_private::operator <= (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
266 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) <= 0;
270 lldb_private::operator > (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
272 return ::memcmp (lhs
276 operator >=(const lldb_private::UUID &lhs, const lldb_private::UUID &rhs) argument
[all...]
/external/lldb/source/Host/common/
H A DTimeValue.cpp169 lldb_private::operator == (const TimeValue &lhs, const TimeValue &rhs) argument
171 return lhs.GetAsNanoSecondsSinceJan1_1970() == rhs.GetAsNanoSecondsSinceJan1_1970();
175 lldb_private::operator != (const TimeValue &lhs, const TimeValue &rhs) argument
177 return lhs.GetAsNanoSecondsSinceJan1_1970() != rhs.GetAsNanoSecondsSinceJan1_1970();
181 lldb_private::operator < (const TimeValue &lhs, const TimeValue &rhs) argument
183 return lhs.GetAsNanoSecondsSinceJan1_1970() < rhs.GetAsNanoSecondsSinceJan1_1970();
187 lldb_private::operator <= (const TimeValue &lhs, const TimeValue &rhs) argument
189 return lhs.GetAsNanoSecondsSinceJan1_1970() <= rhs.GetAsNanoSecondsSinceJan1_1970();
193 lldb_private::operator > (const TimeValue &lhs, const TimeValue &rhs) argument
195 return lhs
199 operator >=(const TimeValue &lhs, const TimeValue &rhs) argument
205 operator -(const TimeValue &lhs, const TimeValue &rhs) argument
[all...]
/external/mesa3d/src/glsl/
H A Dir_builder.cpp49 assign(deref lhs, operand rhs, int writemask) argument
51 void *mem_ctx = ralloc_parent(lhs.val);
53 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs.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
48 assert(lhs);
50 this->lhs = lhs;
54 ir_variable *lhs; member in class:__anon26838::acp_entry
141 kill(ir->lhs->variable_referenced());
173 if (var == entry->lhs) {
221 this->acp->push_tail(new(this->mem_ctx) acp_entry(a->lhs, a->rhs));
297 if (entry->lhs == var || entry->rhs == var) {
H A Dopt_dead_code_local.cpp48 assignment_entry(ir_variable *lhs, ir_assignment *ir) argument
50 assert(lhs);
52 this->lhs = lhs;
57 ir_variable *lhs; member in class:__anon26840::assignment_entry
76 if (entry->lhs == var) {
79 printf("kill %s (0x%01x - 0x%01x)\n", entry->lhs->name,
86 printf("kill %s\n", entry->lhs->name);
164 array_index_visit::run(ir->lhs, &v);
165 var = ir->lhs
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_vector_splitting.cpp173 if (ir->lhs->as_dereference_variable() &&
181 if (ir->lhs->as_dereference_variable() &&
260 ir_dereference_variable *lhs_deref = ir->lhs->as_dereference_variable();
262 variable_entry *lhs = lhs_deref ? get_splitting_entry(lhs_deref->var) : NULL; local
265 if (lhs_deref && rhs_deref && (lhs || rhs) && !ir->condition) {
269 for (unsigned int i = 0; i < ir->lhs->type->vector_elements; i++) {
272 void *mem_ctx = lhs ? lhs->mem_ctx : rhs->mem_ctx;
278 if (lhs) {
279 new_lhs = new(mem_ctx) ir_dereference_variable(lhs
[all...]
/external/skia/src/core/
H A DSkRTree.h133 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { argument
134 return lhs.fBounds.*fSide < rhs.fBounds.*fSide;
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
142 return ((lhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1) <
143 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1);
148 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
149 return ((lhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) <
150 ((rhs.fBounds.fBottom - lhs
[all...]
/external/stlport/test/unit/
H A Dlimits_test.cpp120 bool test_float_values(_Tp lhs, _Tp rhs) argument
121 { return lhs == rhs; }

Completed in 1077 milliseconds

1234567891011>>