Searched defs:rhs (Results 51 - 75 of 642) sorted by relevance

1234567891011>>

/external/chromium_org/base/android/
H A Djni_weak_ref.cc31 void JavaObjectWeakGlobalRef::operator=(const JavaObjectWeakGlobalRef& rhs) { argument
32 Assign(rhs);
/external/chromium_org/base/
H A Dversion_unittest.cc67 const char* rhs; member in struct:__anon2592::version_compare
83 Version rhs(cases[i].rhs);
84 EXPECT_EQ(lhs.CompareTo(rhs), cases[i].expected) <<
85 cases[i].lhs << " ? " << cases[i].rhs;
87 EXPECT_EQ(lhs.IsOlderThan(cases[i].rhs), (cases[i].expected == -1));
94 const char* rhs; member in struct:__anon2592::version_compare
113 const int result = version.CompareToWildcardString(cases[i].rhs);
114 EXPECT_EQ(result, cases[i].expected) << cases[i].lhs << "?" << cases[i].rhs;
/external/chromium_org/cc/test/
H A Dbegin_frame_args_test.cc55 bool operator==(const BeginFrameArgs& lhs, const BeginFrameArgs& rhs) { argument
56 return (lhs.frame_time == rhs.frame_time) && (lhs.deadline == rhs.deadline) &&
57 (lhs.interval == rhs.interval);
/external/chromium_org/components/navigation_interception/
H A Dnavigation_params.cc28 void NavigationParams::operator=(const NavigationParams& rhs) { argument
29 Assign(rhs);
/external/chromium_org/net/quic/
H A Dquic_bandwidth.h66 inline bool operator==(QuicBandwidth lhs, QuicBandwidth rhs) { argument
67 return lhs.ToBitsPerSecond() == rhs.ToBitsPerSecond();
69 inline bool operator!=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
70 return !(lhs == rhs);
72 inline bool operator<(QuicBandwidth lhs, QuicBandwidth rhs) { argument
73 return lhs.ToBitsPerSecond() < rhs.ToBitsPerSecond();
75 inline bool operator>(QuicBandwidth lhs, QuicBandwidth rhs) { argument
76 return rhs < lhs;
78 inline bool operator<=(QuicBandwidth lhs, QuicBandwidth rhs) { argument
79 return !(rhs < lh
81 operator >=(QuicBandwidth lhs, QuicBandwidth rhs) argument
[all...]
/external/chromium_org/ppapi/cpp/dev/
H A Dbuffer_dev.cc55 Buffer_Dev& Buffer_Dev::operator=(const Buffer_Dev& rhs) { argument
56 Resource::operator=(rhs);
/external/chromium_org/ppapi/cpp/
H A Dresource.h97 inline bool operator==(const pp::Resource& lhs, const pp::Resource& rhs) { argument
98 return lhs.pp_resource() == rhs.pp_resource();
101 inline bool operator!=(const pp::Resource& lhs, const pp::Resource& rhs) { argument
102 return !(lhs == rhs);
/external/chromium_org/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/chromium_org/third_party/angle/src/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/chromium_org/third_party/icu/source/i18n/
H A Dfpositer.cpp31 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
34 if (rhs.data) {
37 data->assign(*rhs.data, status);
46 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
47 if (&rhs == this) {
50 if (pos != rhs.pos) {
54 return rhs.data == NULL;
56 return rhs
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_discard_flow.cpp89 ir_rvalue *rhs = new(mem_ctx) ir_constant(true); local
90 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs, rhs);
111 ir_rvalue *rhs = new(mem_ctx) ir_constant(false); local
112 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs, rhs);
/external/chromium_org/third_party/mesa/src/src/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/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/tools/gn/
H A Doutput_file.h65 inline void swap(OutputFile& lhs, OutputFile& rhs) { argument
66 lhs.value().swap(rhs.value());
/external/chromium_org/ui/base/
H A Dpage_transition_types.cc12 PageTransition rhs) {
13 // Expect the rhs to be a compile time constant without qualifiers.
14 DCHECK(PageTransitionGetQualifier(rhs) == 0 &&
15 PageTransitionIsValidType(rhs));
17 implicit_cast<int>(PageTransitionStripQualifier(rhs));
11 PageTransitionCoreTypeIs(PageTransition lhs, PageTransition rhs) argument
/external/chromium_org/ui/events/gesture_detection/
H A Dmotion_event.cc48 bool operator==(const MotionEvent& lhs, const MotionEvent& rhs) { argument
49 if (lhs.GetId() != rhs.GetId() || lhs.GetAction() != rhs.GetAction() ||
50 lhs.GetActionIndex() != rhs.GetActionIndex() ||
51 lhs.GetPointerCount() != rhs.GetPointerCount() ||
52 lhs.GetButtonState() != rhs.GetButtonState() ||
53 lhs.GetEventTime() != rhs.GetEventTime() ||
54 lhs.GetHistorySize() != rhs.GetHistorySize())
58 int rhsi = rhs.FindPointerIndexOfId(lhs.GetPointerId(i));
62 if (lhs.GetX(i) != rhs
89 operator !=(const MotionEvent& lhs, const MotionEvent& rhs) argument
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dsize.h54 inline bool operator==(const Size& lhs, const Size& rhs) { argument
55 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
58 inline bool operator!=(const Size& lhs, const Size& rhs) { argument
59 return !(lhs == rhs);
/external/clang/test/CodeGen/
H A Dconditional-gnu-ext.c33 _Complex int rhs; local
35 return getComplex(1+2i) ? : rhs;
/external/eigen/blas/
H A DPackedTriangularSolverVector.h18 // forward and backward substitution, row-major, rhs is a vector
25 static void run(Index size, const LhsScalar* lhs, RhsScalar* rhs) argument
37 rhs[i] -= (ConjLhsType(LhsMap(lhs+s,pi))
38 .cwiseProduct(Map<const Matrix<RhsScalar,Dynamic,1> >(rhs+(IsLower ? 0 : i+1),pi))).sum();
40 rhs[i] /= cj(lhs[IsLower ? i : 0]);
46 // forward and backward substitution, column-major, rhs is a vector
53 static void run(Index size, const LhsScalar* lhs, RhsScalar* rhs) argument
65 rhs[i] /= cj(lhs[IsLower ? 0 : i]);
67 Map<Matrix<RhsScalar,Dynamic,1> >(rhs+(IsLower? i+1 : 0),r) -=
68 rhs[
77 run(Index size, const LhsScalar* lhs, RhsScalar* rhs) argument
[all...]
/external/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/icu/icu4c/source/i18n/
H A Ddcfmtimp.h30 DecimalFormatInternal &operator=(const DecimalFormatInternal& rhs) { argument
31 fFastParseStatus = rhs.fFastParseStatus;
32 fFastFormatStatus = rhs.fFastFormatStatus;
H A Dfpositer.cpp31 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
32 : UObject(rhs), data(NULL), pos(rhs.pos) {
34 if (rhs.data) {
37 data->assign(*rhs.data, status);
46 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
47 if (&rhs == this) {
50 if (pos != rhs.pos) {
54 return rhs.data == NULL;
56 return rhs
[all...]
/external/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h33 ClangNamespaceDecl (const ClangNamespaceDecl &rhs) : argument
34 m_ast (rhs.m_ast),
35 m_namespace_decl (rhs.m_namespace_decl)
40 operator = (const ClangNamespaceDecl &rhs) argument
42 m_ast = rhs.m_ast;
43 m_namespace_decl = rhs.m_namespace_decl;
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCData.cpp24 CFCData::CFCData(const CFCData& rhs) : argument
25 CFCReleaser<CFDataRef>(rhs)
34 CFCData::operator=(const CFCData& rhs) argument
37 if (this != &rhs)
38 *this = rhs;

Completed in 3338 milliseconds

1234567891011>>