Searched defs:rhs (Results 226 - 250 of 610) sorted by relevance

1234567891011>>

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DBreakIterator.java813 * Return true if rhs is a BreakIterator with the same break behavior as this.
814 * @return true if rhs equals this
817 public boolean equals(Object rhs) { argument
819 return breakIterator.equals(((BreakIteratorHandle)rhs).breakIterator);
H A DCollator.java1008 public boolean equals(Object rhs) { argument
1010 return collator.equals(((Collator)rhs).collator);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriod.java240 * Returns true if rhs extends Period and
242 * @param rhs the object to compare to
243 * @return true if rhs is a Period and is equal to this
246 public boolean equals(Object rhs) { argument
248 return equals((Period)rhs);
262 * @param rhs the period to compare to
265 public boolean equals(Period rhs) { argument
266 if (rhs != null &&
267 this.timeLimit == rhs.timeLimit &&
268 this.inFuture == rhs
[all...]
/external/libchrome/base/containers/
H A Dstack_container.h77 StackAllocator(const StackAllocator<T, stack_capacity>& rhs) argument
78 : std::allocator<T>(), source_(rhs.source_) {
/external/libchrome/base/
H A Doptional_unittest.cc82 void swap(TestObject& lhs, TestObject& rhs) { argument
83 lhs.Swap(&rhs);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.h129 SANDBOX_EXPORT BoolExpr AllOf(BoolExpr lhs, BoolExpr rhs);
136 SANDBOX_EXPORT BoolExpr AnyOf(BoolExpr lhs, BoolExpr rhs);
150 // bitwise-and'ing it with |rhs|.
151 friend Arg operator&(const Arg& lhs, uint64_t rhs) { argument
152 return Arg(lhs.num_, lhs.mask_ & rhs);
156 // (after applying any bitmasks, if appropriate) equals |rhs|.
157 friend BoolExpr operator==(const Arg& lhs, T rhs) { return lhs.EqualTo(rhs); } argument
160 // (after applying any bitmasks, if appropriate) does not equal |rhs|.
161 friend BoolExpr operator!=(const Arg& lhs, T rhs) { retur argument
[all...]
/external/libcxx/test/std/strings/basic.string/string.cons/
H A Dcopy_alloc.pass.cpp58 bool operator==(const poca_alloc<T>& lhs, const poca_alloc<U>& rhs) argument
60 return lhs.imp == rhs.imp;
64 bool operator!=(const poca_alloc<T>& lhs, const poca_alloc<U>& rhs) argument
66 return lhs.imp != rhs.imp;
/external/libtextclassifier/util/utf8/
H A Dunicodetext.h103 friend bool operator==(const CI& lhs, const CI& rhs) { argument
104 return lhs.it_ == rhs.it_;
106 friend bool operator!=(const CI& lhs, const CI& rhs) { argument
107 return !(lhs == rhs);
109 friend bool operator<(const CI& lhs, const CI& rhs);
110 friend bool operator>(const CI& lhs, const CI& rhs) { return rhs < lhs; } argument
111 friend bool operator<=(const CI& lhs, const CI& rhs) { argument
112 return !(rhs < lhs);
114 friend bool operator>=(const CI& lhs, const CI& rhs) { argument
[all...]
/external/llvm/lib/Analysis/
H A DAliasAnalysisSummary.h117 inline bool operator==(InterfaceValue lhs, InterfaceValue rhs) { argument
118 return lhs.Index == rhs.Index && lhs.DerefLevel == rhs.DerefLevel;
120 inline bool operator!=(InterfaceValue lhs, InterfaceValue rhs) { argument
121 return !(lhs == rhs);
/external/mesa3d/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:__anon15004::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/mesa3d/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/pdfium/core/fxcrt/
H A Dcfx_string_c_template.h158 inline bool operator==(const T* lhs, const CFX_StringCTemplate<T>& rhs) { argument
159 return rhs == lhs;
163 inline bool operator!=(const T* lhs, const CFX_StringCTemplate<T>& rhs) { argument
164 return rhs != lhs;
H A Dfx_string.h176 inline bool operator==(const char* lhs, const CFX_ByteString& rhs) { argument
177 return rhs == lhs;
179 inline bool operator==(const CFX_ByteStringC& lhs, const CFX_ByteString& rhs) { argument
180 return rhs == lhs;
182 inline bool operator!=(const char* lhs, const CFX_ByteString& rhs) { argument
183 return rhs != lhs;
185 inline bool operator!=(const CFX_ByteStringC& lhs, const CFX_ByteString& rhs) { argument
186 return rhs != lhs;
414 inline bool operator==(const wchar_t* lhs, const CFX_WideString& rhs) { argument
415 return rhs
417 operator ==(const CFX_WideStringC& lhs, const CFX_WideString& rhs) argument
420 operator !=(const wchar_t* lhs, const CFX_WideString& rhs) argument
423 operator !=(const CFX_WideStringC& lhs, const CFX_WideString& rhs) argument
[all...]
/external/pdfium/third_party/base/numerics/
H A Dsafe_conversions.h194 constexpr StrictNumeric(const StrictNumeric<Src>& rhs) argument
195 : value_(strict_cast<T>(rhs.value_)) {}
244 constexpr bool operator OP(const L lhs, const R rhs) { \
246 typename UnderlyingType<R>::type>(lhs, rhs); \
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCWin64EH.cpp54 MCSymbol *rhs) {
59 rhs, context),
53 EmitAbsDifference(MCStreamer &streamer, MCSymbol *lhs, MCSymbol *rhs) argument
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTPFXParserAPI.h243 @param[in] rhs Second SPVRTPFXUniformSemantic
246 inline bool operator==(const SPVRTPFXUniformSemantic& lhs, const SPVRTPFXUniformSemantic& rhs) argument
248 return (lhs.n == rhs.n);
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTVector.cpp51 @Input rhs a PVRTMat3
55 PVRTVec3 PVRTVec3::operator*(const PVRTMat3& rhs) const
59 out.x = VERTTYPEMUL(x,rhs.f[0])+VERTTYPEMUL(y,rhs.f[1])+VERTTYPEMUL(z,rhs.f[2]);
60 out.y = VERTTYPEMUL(x,rhs.f[3])+VERTTYPEMUL(y,rhs.f[4])+VERTTYPEMUL(z,rhs.f[5]);
61 out.z = VERTTYPEMUL(x,rhs.f[6])+VERTTYPEMUL(y,rhs
72 operator *=(const PVRTMat3& rhs) argument
109 operator *=(const PVRTMat4& rhs) argument
[all...]
/external/v8/src/base/
H A Dbits.h215 // SignedAddOverflow32(lhs,rhs,val) performs a signed summation of |lhs| and
216 // |rhs| and stores the result into the variable pointed to by |val| and
218 inline bool SignedAddOverflow32(int32_t lhs, int32_t rhs, int32_t* val) { argument
220 return __builtin_sadd_overflow(lhs, rhs, val);
222 uint32_t res = static_cast<uint32_t>(lhs) + static_cast<uint32_t>(rhs);
224 return ((res ^ lhs) & (res ^ rhs) & (1U << 31)) != 0;
229 // SignedSubOverflow32(lhs,rhs,val) performs a signed subtraction of |lhs| and
230 // |rhs| and stores the result into the variable pointed to by |val| and
232 inline bool SignedSubOverflow32(int32_t lhs, int32_t rhs, int32_t* val) { argument
234 return __builtin_ssub_overflow(lhs, rhs, va
250 SignedAddOverflow64(int64_t lhs, int64_t rhs, int64_t* val) argument
260 SignedSubOverflow64(int64_t lhs, int64_t rhs, int64_t* val) argument
295 UnsignedAddOverflow32(uint32_t lhs, uint32_t rhs, uint32_t* val) argument
307 UnsignedDiv32(uint32_t lhs, uint32_t rhs) argument
314 UnsignedMod32(uint32_t lhs, uint32_t rhs) argument
[all...]
H A Dlogging.h58 #define CHECK_OP(name, op, lhs, rhs) \
61 (lhs), (rhs), #lhs " " #op " " #rhs)) { \
72 #define CHECK_OP(name, op, lhs, rhs) CHECK((lhs)op(rhs))
82 std::string* MakeCheckOpString(Lhs const& lhs, Rhs const& rhs, argument
85 ss << msg << " (" << lhs << " vs. " << rhs << ")"; local
113 V8_INLINE std::string* Check##NAME##Impl(Lhs const& lhs, Rhs const& rhs, \
115 return V8_LIKELY(lhs op rhs) ? nullptr : MakeCheckOpString(lhs, rhs, ms
[all...]
/external/v8/src/interpreter/
H A Dbytecode-operands.h110 inline AccumulatorUse operator&(AccumulatorUse lhs, AccumulatorUse rhs) { argument
111 int result = static_cast<int>(lhs) & static_cast<int>(rhs);
115 inline AccumulatorUse operator|(AccumulatorUse lhs, AccumulatorUse rhs) { argument
116 int result = static_cast<int>(lhs) | static_cast<int>(rhs);
/external/v8/src/runtime/
H A Druntime.cc73 const IntrinsicFunctionIdentifier* rhs = local
75 if (lhs->length_ != rhs->length_) return false;
77 reinterpret_cast<const uint8_t*>(rhs->data_),
78 rhs->length_) == 0;
/external/v8/src/
H A Dsource-position.h88 inline bool operator==(const SourcePosition& lhs, const SourcePosition& rhs) { argument
89 return lhs.raw() == rhs.raw();
92 inline bool operator!=(const SourcePosition& lhs, const SourcePosition& rhs) { argument
93 return !(lhs == rhs);
/external/valgrind/drd/
H A Ddrd_vc.c73 void DRD_(vc_copy)(VectorClock* const new, const VectorClock* const rhs) argument
75 DRD_(vc_init)(new, rhs->vc, rhs->size);
79 void DRD_(vc_assign)(VectorClock* const lhs, const VectorClock* const rhs) argument
82 DRD_(vc_copy)(lhs, rhs);
125 void DRD_(vc_min)(VectorClock* const result, const VectorClock* const rhs) argument
131 tl_assert(rhs);
137 for (j = 0; j < rhs->size; j++)
139 while (i < result->size && result->vc[i].threadid < rhs->vc[j].threadid)
149 if (result->vc[i].threadid <= rhs
166 vc_combine(VectorClock* const result, const VectorClock* const rhs) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java140 * If either this or <code>rhs</code> has a NaN value in either part,
145 * @param rhs the other complex number
147 * @throws NullPointerException if <code>rhs</code> is null
149 public Complex add(Complex rhs) { argument
150 return createComplex(real + rhs.getReal(),
151 imaginary + rhs.getImaginary());
192 * <li>If either this or <code>rhs</code> has a NaN value in either part,
194 * <li>If <code>rhs</code> equals {@link #ZERO}, {@link #NaN} is returned.
196 * <li>If this and <code>rhs</code> are both infinite,
199 * <code>rhs</cod
210 divide(Complex rhs) argument
357 multiply(Complex rhs) argument
396 multiply(double rhs) argument
442 subtract(Complex rhs) argument
[all...]

Completed in 686 milliseconds

1234567891011>>