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

1234567891011>>

/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.concat.pass.cpp46 MultiStringType rhs; member in struct:ConcatOperatorTestcase
92 const Ptr R = TC.rhs;
172 const Ptr R = TC.rhs;
255 const Ptr RStr = TC.rhs;
336 path RHS((const char*)TC.rhs);
343 std::string_view RHS((const char*)TC.rhs);
357 path RHS((const char*)TC.rhs);
369 std::string_view RHS((const char*)TC.rhs);
/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
H A Dmultishot_func.pass.cpp46 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } argument
49 func &operator=(func &&rhs) { argument
50 if (this != &rhs) {
53 h = rhs.h;
54 rhs.h = nullptr;
H A Doneshot_func.pass.cpp41 func(func &&rhs) : h(rhs.h) { rhs.h = nullptr; } argument
44 func &operator=(func &&rhs) { argument
45 if (this != &rhs) {
48 h = rhs.h;
49 rhs.h = nullptr;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dmake_from_tuple.pass.cpp71 inline bool operator==(const std::pair<T1, T2>& lhs, const std::pair<U1, U2>& rhs) { argument
72 return lhs.first == rhs.first && lhs.second == rhs.second;
/external/libcxx/test/support/
H A Dcoroutine_types.h61 generator(generator &&rhs) : p(rhs.p) { rhs.p = nullptr; } argument
/external/libmojo/ui/gfx/geometry/
H A Dinsets_f.h88 inline InsetsF operator+(InsetsF lhs, const InsetsF& rhs) { argument
89 lhs += rhs;
93 inline InsetsF operator-(InsetsF lhs, const InsetsF& rhs) { argument
94 lhs -= rhs;
H A Dsize_f.h76 inline bool operator==(const SizeF& lhs, const SizeF& rhs) { argument
77 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
80 inline bool operator!=(const SizeF& lhs, const SizeF& rhs) { argument
81 return !(lhs == rhs);
H A Dvector2d.h73 inline bool operator==(const Vector2d& lhs, const Vector2d& rhs) { argument
74 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
81 inline Vector2d operator+(const Vector2d& lhs, const Vector2d& rhs) { argument
83 result.Add(rhs);
87 inline Vector2d operator-(const Vector2d& lhs, const Vector2d& rhs) { argument
89 result.Add(-rhs);
H A Dvector2d_f.h70 inline bool operator==(const Vector2dF& lhs, const Vector2dF& rhs) { argument
71 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
74 inline bool operator!=(const Vector2dF& lhs, const Vector2dF& rhs) { argument
75 return !(lhs == rhs);
82 inline Vector2dF operator+(const Vector2dF& lhs, const Vector2dF& rhs) { argument
84 result.Add(rhs);
88 inline Vector2dF operator-(const Vector2dF& lhs, const Vector2dF& rhs) { argument
90 result.Add(-rhs);
95 GFX_EXPORT double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs);
[all...]
/external/libvpx/libvpx/test/
H A Dregister_state_check.h41 inline bool operator==(const M128A &lhs, const M128A &rhs) { argument
42 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h134 static bool CStringEquals(const char* lhs, const char* rhs);
152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
161 const char* rhs);
176 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) <
283 operator =(const String& rhs) argument
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dlower_output_reads.cpp121 ir_dereference_variable *rhs = new(ctx) ir_dereference_variable(temp); local
122 return new(ctx) ir_assignment(lhs, rhs);
H A Dopt_vectorize.cpp203 visit_tree(this->last_assignment->rhs, rewrite_swizzle, &mask);
257 ir_rvalue *rhs = this->last_assignment != NULL ? local
258 this->last_assignment->rhs : NULL;
265 (rhs && !ir->rhs->equals(rhs, ir_type_swizzle))) {
/external/mockito/src/main/java/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
332 append(Object lhs, Object rhs) argument
391 append(long lhs, long rhs) argument
403 append(int lhs, int rhs) argument
415 append(short lhs, short rhs) argument
427 append(char lhs, char rhs) argument
439 append(byte lhs, byte rhs) argument
457 append(double lhs, double rhs) argument
477 append(float lhs, float rhs) argument
491 append(boolean lhs, boolean rhs) argument
506 append(Object[] lhs, Object[] rhs) argument
537 append(long[] lhs, long[] rhs) argument
568 append(int[] lhs, int[] rhs) argument
599 append(short[] lhs, short[] rhs) argument
630 append(char[] lhs, char[] rhs) argument
661 append(byte[] lhs, byte[] rhs) argument
692 append(double[] lhs, double[] rhs) argument
723 append(float[] lhs, float[] rhs) argument
754 append(boolean[] lhs, boolean[] rhs) argument
[all...]
/external/pdfium/core/fxcrt/
H A Dunowned_ptr.h108 inline bool operator==(const U* lhs, const UnownedPtr<T>& rhs) { argument
109 return rhs == lhs;
113 inline bool operator!=(const U* lhs, const UnownedPtr<T>& rhs) { argument
114 return rhs != lhs;
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DDurationPartial.cs132 /// <param name="rhs">The second value to add. Must not be null.</param>
134 public static Duration operator +(Duration lhs, Duration rhs) argument
137 ProtoPreconditions.CheckNotNull(rhs, "rhs");
140 return Normalize(lhs.Seconds + rhs.Seconds, lhs.Nanos + rhs.Nanos);
148 /// <param name="rhs">The duration to subtract. Must not be null.</param>
150 public static Duration operator -(Duration lhs, Duration rhs) argument
153 ProtoPreconditions.CheckNotNull(rhs, "rhs");
[all...]
H A DTimestampPartial.cs58 /// <param name="rhs">The timestamp to subtract. Must not be null.</param>
60 public static Duration operator -(Timestamp lhs, Timestamp rhs) argument
63 ProtoPreconditions.CheckNotNull(rhs, "rhs");
66 return Duration.Normalize(lhs.Seconds - rhs.Seconds, lhs.Nanos - rhs.Nanos);
74 /// <param name="rhs">The duration to add. Must not be null.</param>
76 public static Timestamp operator +(Timestamp lhs, Duration rhs) argument
79 ProtoPreconditions.CheckNotNull(rhs, "rhs");
92 operator -(Timestamp lhs, Duration rhs) argument
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h134 static bool CStringEquals(const char* lhs, const char* rhs);
152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
161 const char* rhs);
176 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) <
283 operator =(const String& rhs) argument
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowOpenGLMatrix.java12 * matrix. In matrix notation: result = lhs x rhs. Due to the way
14 * effect as first multiplying by the rhs matrix, then multiplying by
17 * The same float array may be passed for result, lhs, and/or rhs. However,
19 * either the lhs or rhs elements.
26 * @param rhs The float array that holds the right-hand-side matrix.
27 * @param rhsOffset The offset into the rhs array where the rhs is stored.
28 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
30 * rhsOffset + 16 > rhs.length.
34 float[] lhs, int lhsOffset, float[] rhs, in
33 multiplyMM(float[] result, int resultOffset, float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) 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/swiftshader/src/Shader/
H A DShaderCore.hpp29 Vector4s(const Vector4s &rhs);
32 Vector4s &operator=(const Vector4s &rhs);
45 Vector4f(const Vector4f &rhs);
48 Vector4f &operator=(const Vector4f &rhs);
112 Register &operator=(const Register &rhs) argument
114 x = rhs.x;
115 y = rhs.y;
116 z = rhs.z;
117 w = rhs.w;
122 Register &operator=(const Vector4f &rhs) argument
[all...]
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/useful-harnesses/
H A Di64operations.h12 int64_t *rhs; member in struct:harness_int64_pred
22 uint64_t *rhs; member in struct:harness_uint64_pred
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h134 static bool CStringEquals(const char* lhs, const char* rhs);
152 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
161 const char* rhs);
176 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) <
283 operator =(const String& rhs) argument
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dcwise_ops.cc91 const xla::ComputationDataHandle& rhs,
96 // rhs.reshape(bcast.y_reshape()).broadcast(bcast.y_bcast()) have
102 auto rhs_shaped = builder->Reshape(rhs, broadcast_helper.y_reshape());
89 Broadcast(xla::ComputationBuilder* builder, const xla::ComputationDataHandle& lhs, const xla::ComputationDataHandle& rhs, const BCast& broadcast_helper) argument
H A Dmatmul_op.cc80 auto rhs = (transpose_b_) ? ctx->builder()->Transpose(b, {1, 0}) : b; variable
81 ctx->SetOutput(0, ctx->builder()->Dot(lhs, rhs));

Completed in 536 milliseconds

1234567891011>>