Searched defs:rhs (Results 126 - 150 of 610) sorted by relevance

1234567891011>>

/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/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/sfntly/cpp/src/sfntly/table/
H A Dheader.cc57 const HeaderPtr rhs) {
58 return lhs->offset_ > rhs->offset_;
62 const HeaderPtr rhs) {
63 return lhs->tag_ > rhs->tag_;
56 operator ()(const HeaderPtr lhs, const HeaderPtr rhs) argument
61 operator ()(const HeaderPtr lhs, const HeaderPtr rhs) argument
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DSourceLocation.h35 inline bool operator==(const SourceLocation& lhs, const SourceLocation& rhs) argument
37 return lhs.equals(rhs);
40 inline bool operator!=(const SourceLocation& lhs, const SourceLocation& rhs) argument
42 return !lhs.equals(rhs);
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/v8/src/compiler/
H A Dframe-states.cc32 bool operator==(FrameStateInfo const& lhs, FrameStateInfo const& rhs) { argument
33 return lhs.type() == rhs.type() && lhs.bailout_id() == rhs.bailout_id() &&
34 lhs.state_combine() == rhs.state_combine() &&
35 lhs.function_info() == rhs.function_info();
39 bool operator!=(FrameStateInfo const& lhs, FrameStateInfo const& rhs) { argument
40 return !(lhs == rhs);
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dfunction-templates-expected.cc23 Checked(const Checked<U, V>& rhs) { argument
27 if (rhs.hasOverflowed())
29 if (!IsInBounds<T>(rhs.m_value))
31 value_ = static_cast<T>(rhs.m_value);
H A Dfunction-templates-original.cc23 Checked(const Checked<U, V>& rhs){ argument
27 if (rhs.hasOverflowed())
29 if (!isInBounds<T>(rhs.m_value))
31 m_value = static_cast<T>(rhs.m_value);
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/webrtc/webrtc/modules/video_coding/
H A Dencoded_frame.cc30 VCMEncodedFrame::VCMEncodedFrame(const webrtc::EncodedImage& rhs) argument
31 : webrtc::EncodedImage(rhs),
43 if (rhs._buffer != NULL) {
44 VerifyAndAllocate(rhs._length);
45 memcpy(_buffer, rhs._buffer, rhs._length);
49 VCMEncodedFrame::VCMEncodedFrame(const VCMEncodedFrame& rhs) argument
50 : webrtc::EncodedImage(rhs),
51 _renderTimeMs(rhs._renderTimeMs),
52 _payloadType(rhs
[all...]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockRectF.java39 public void $init(RectF rhs) { argument
40 it.left = rhs.left;
41 it.top = rhs.top;
42 it.right = rhs.right;
43 it.bottom = rhs.bottom;
/external/clang/test/Sema/
H A Daarch64-neon-ranges.c22 void test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) { argument
/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DCertificatePriorityComparator.java78 public int compare(X509Certificate lhs, X509Certificate rhs) { argument
81 boolean rhsSelfSigned = rhs.getSubjectDN().equals(rhs.getIssuerDN());
87 result = compareStrength(rhs, lhs);
93 Date rhsNotAfter = rhs.getNotAfter();
100 Date rhsNotBefore = rhs.getNotBefore();
104 private int compareStrength(X509Certificate lhs, X509Certificate rhs) { argument
107 PublicKey rhsPublicKey = rhs.getPublicKey();
116 return compareSignatureAlgorithm(lhs, rhs);
119 private int compareKeyAlgorithm(PublicKey lhs, PublicKey rhs) { argument
135 compareKeySize(PublicKey lhs, PublicKey rhs) argument
157 compareSignatureAlgorithm(X509Certificate lhs, X509Certificate rhs) argument
[all...]
/external/drm_hwcomposer/
H A Dautofd.h29 UniqueFd(UniqueFd &&rhs) { argument
30 fd_ = rhs.fd_;
31 rhs.fd_ = -1;
34 UniqueFd &operator=(UniqueFd &&rhs) { argument
35 Set(rhs.Release());
75 OutputFd(OutputFd &&rhs) { argument
76 fd_ = rhs.fd_;
77 rhs.fd_ = NULL;
80 OutputFd &operator=(OutputFd &&rhs) { argument
81 fd_ = rhs
[all...]
H A Dautogl.h61 AutoEGLDisplayImage(const AutoEGLDisplayImage& rhs) = delete; member in struct:android::AutoEGLDisplayImage
62 AutoEGLDisplayImage(AutoEGLDisplayImage&& rhs) { argument
63 display_ = rhs.display_;
64 image_ = rhs.image_;
65 rhs.display_ = EGL_NO_DISPLAY;
66 rhs.image_ = EGL_NO_IMAGE_KHR;
73 AutoEGLDisplayImage& operator=(const AutoEGLDisplayImage& rhs) = delete; member in struct:android::AutoEGLDisplayImage
74 AutoEGLDisplayImage& operator=(AutoEGLDisplayImage&& rhs) { argument
76 std::swap(display_, rhs.display_);
77 std::swap(image_, rhs
[all...]
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_context.cc15 bool operator < (const StackFrame& lhs, const StackFrame& rhs) { argument
16 return lhs.value < rhs.value;
19 bool operator == (const StackFrame& lhs, const StackFrame& rhs) { argument
20 return lhs.value == rhs.value;
23 bool operator != (const StackFrame& lhs, const StackFrame& rhs) { argument
24 return !(lhs.value == rhs.value);
29 bool operator==(const Backtrace& lhs, const Backtrace& rhs) { argument
30 if (lhs.frame_count != rhs.frame_count) return false;
31 return std::equal(lhs.frames, lhs.frames + lhs.frame_count, rhs.frames);
34 bool operator!=(const Backtrace& lhs, const Backtrace& rhs) { argument
44 operator ==(const AllocationContext& lhs, const AllocationContext& rhs) argument
48 operator !=(const AllocationContext& lhs, const AllocationContext& rhs) argument
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.clamp/
H A Dclamp.pass.cpp29 bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag; } argument
30 // bool operator==(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val; }
31 bool operator< (const Tag& rhs, const Tag& lhs) { return rhs.val < lhs.val; } argument
/external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
H A Dinplace_merge.pass.cpp29 S(const S& rhs) : i_(rhs.i_) {} argument
30 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } argument
32 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } argument
33 S& operator =( S&& rhs) { i_ = rhs.i_; rhs argument
[all...]
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Dpush_back_exception_safety.pass.cpp27 bool equal(const CMyClass &rhs) const
28 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
H A Dpush_front_exception_safety.pass.cpp28 bool equal(const CMyClass &rhs) const
29 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove.pass.cpp22 S(const S &rhs) : i_(new int(*rhs.i_)) {} argument
23 S& operator = (const S &rhs) { *i_ = *rhs.i_; return *this; } argument
25 bool operator == (const S &rhs) const { return *i_ == *rhs.i_; }
/external/libcxx/test/std/containers/sequences/list/list.ops/
H A Dremove.pass.cpp22 S(const S &rhs) : i_(new int(*rhs.i_)) {} argument
23 S &operator=(const S &rhs) { argument
24 *i_ = *rhs.i_;
31 bool operator==(const S &rhs) const { return *i_ == *rhs.i_; }
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
H A Dpush_back_exception_safety.pass.cpp28 bool equal(const CMyClass &rhs) const
29 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.ctor/
H A Dcopy.pass.cpp13 // optional(const optional<T>& rhs);
25 test(const optional<T>& rhs, bool is_going_to_throw = false) argument
27 bool rhs_engaged = static_cast<bool>(rhs);
35 optional<T> lhs = rhs;
39 assert(*lhs == *rhs);
91 optional<T> rhs; local
92 test(rhs);
96 optional<T> rhs(3);
97 test(rhs);
101 optional<T> rhs(
106 optional<T> rhs; local
121 optional<T> rhs; local
131 optional<T> rhs; local
[all...]

Completed in 620 milliseconds

1234567891011>>