Searched defs:rhs (Results 101 - 125 of 610) sorted by relevance

1234567891011>>

/external/bsdiff/
H A Dextents_unittest.cc13 bool operator==(const struct ex_t& lhs, const struct ex_t& rhs) { argument
14 return lhs.off == rhs.off && lhs.len == rhs.len;
/external/clang/test/CodeGen/
H A Dconditional-gnu-ext.c33 _Complex int rhs; local
35 return getComplex(1+2i) ? : rhs;
/external/clang/test/OpenMP/
H A Ddeclare_reduction_codegen.cpp65 void init(SSS<int> &lhs, SSS<int> &rhs) {} argument
/external/drm_hwcomposer/
H A Ddrmcomposition.h41 DrmCompositionDisplayLayersMap(DrmCompositionDisplayLayersMap &&rhs) = member in struct:android::DrmCompositionDisplayLayersMap
/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/google-breakpad/src/testing/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/googletest/googletest/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/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DBreakIteratorRegTest.java103 private void assertEqual(Object lhs, Object rhs, String msg) { argument
104 msg(msg, lhs.equals(rhs) ? LOG : ERR, true, true);
107 private void assertEqual(int lhs, int rhs, String msg) { argument
108 msg(msg, lhs == rhs ? LOG : ERR, true, true);
/external/icu/icu4c/source/i18n/
H A Ddcfmtimp.h33 DecimalFormatInternal &operator=(const DecimalFormatInternal& rhs) { argument
34 fFastParseStatus = rhs.fFastParseStatus;
35 fFastFormatStatus = rhs.fFastFormatStatus;
H A Dfpositer.cpp33 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs) argument
34 : UObject(rhs), data(NULL), pos(rhs.pos) {
36 if (rhs.data) {
39 data->assign(*rhs.data, status);
48 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
49 if (&rhs == this) {
52 if (pos != rhs.pos) {
56 return rhs.data == NULL;
58 return rhs
[all...]
H A Dpluralaffix.cpp69 const PluralAffix &rhs, int32_t fieldId, UErrorCode &status) {
74 while(rhs.affixes.next(index) != NULL) {
80 current->append(rhs.affixes.get(index).toString(), fieldId);
68 append( const PluralAffix &rhs, int32_t fieldId, UErrorCode &status) argument
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRawCollationKey.java94 * @param rhs the RawCollationKey to compare to.
96 * greater than rhs.
100 public int compareTo(RawCollationKey rhs) { argument
101 int result = super.compareTo(rhs);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DBreakIteratorRegTest.java102 private void assertEqual(Object lhs, Object rhs, String msg) { argument
103 msg(msg, lhs.equals(rhs) ? LOG : ERR, true, true);
106 private void assertEqual(int lhs, int rhs, String msg) { argument
107 msg(msg, lhs == rhs ? LOG : ERR, true, true);
/external/libbrillo/brillo/
H A Dany.cc14 Any::Any(const Any& rhs) : data_buffer_(rhs.data_buffer_) { argument
18 Any::Any(Any&& rhs) : data_buffer_(std::move(rhs.data_buffer_)) { argument
24 Any& Any::operator=(const Any& rhs) { argument
25 data_buffer_ = rhs.data_buffer_;
30 Any& Any::operator=(Any&& rhs) { argument
31 data_buffer_ = std::move(rhs.data_buffer_);
35 bool Any::operator==(const Any& rhs) const {
37 if (strcmp(GetTypeTagInternal(), rhs
[all...]
/external/libchrome/base/
H A Dversion_unittest.cc82 const char* rhs; member in struct:__anon10123::version_compare
100 Version rhs(cases[i].rhs);
101 EXPECT_EQ(lhs.CompareTo(rhs), cases[i].expected) <<
102 cases[i].lhs << " ? " << cases[i].rhs;
107 EXPECT_LT(lhs, rhs);
108 EXPECT_LE(lhs, rhs);
109 EXPECT_NE(lhs, rhs);
110 EXPECT_FALSE(lhs == rhs);
111 EXPECT_FALSE(lhs >= rhs);
[all...]
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.equivalent/
H A Dequivalent.pass.cpp14 // bool equivalent(path const& lhs, path const& rhs);
15 // bool equivalent(path const& lhs, path const& rhs, std::error_code& ec) noexcept;
41 path rhs; member in struct:TestCase
54 TEST_CHECK(equivalent(TC.lhs, TC.rhs, ec) == TC.expect);
/external/libcxx/test/std/utilities/function.objects/comparisons/
H A Dpointer_comparison_test_helper.hpp30 T* rhs = pointers[j].get(); local
32 std::uintptr_t rhs_uint = reinterpret_cast<std::uintptr_t>(rhs);
33 assert(comp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
34 assert(vcomp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dcopy.pass.cpp13 // optional(const optional<T>& rhs);
27 const optional<T> rhs(std::forward<InitArgs>(args)...);
28 bool rhs_engaged = static_cast<bool>(rhs);
29 optional<T> lhs = rhs;
32 assert(*lhs == *rhs);
44 const optional<Z> rhs(z);
47 optional<Z> lhs(rhs);
60 const optional<T> rhs(std::forward<InitArgs>(args)...);
61 bool rhs_engaged = static_cast<bool>(rhs);
62 optional<T> lhs = rhs;
119 const optional<T> rhs; local
[all...]
H A Dexplicit_optional_U.pass.cpp14 // explicit optional(optional<U>&& rhs);
26 test(optional<U>&& rhs, bool is_going_to_throw = false) argument
29 bool rhs_engaged = static_cast<bool>(rhs);
33 optional<T> lhs(std::move(rhs));
43 optional<T> lhs(std::move(rhs));
69 optional<int> rhs; local
70 test<X>(std::move(rhs));
73 optional<int> rhs(3);
74 test<X>(std::move(rhs));
77 optional<int> rhs; local
[all...]
/external/libcxx/test/support/
H A Dis_transparent.h69 bool operator <(int rhs, const C2Int& lhs) { return rhs < lhs.get(); } argument
70 bool operator <(const C2Int& rhs, const C2Int& lhs) { return rhs.get() < lhs.get(); } argument
71 bool operator <(const C2Int& rhs, int lhs) { return rhs.get() < lhs; } argument
/external/libmojo/base/android/
H A Djni_weak_ref.cc31 void JavaObjectWeakGlobalRef::operator=(const JavaObjectWeakGlobalRef& rhs) { argument
32 Assign(rhs);
/external/libvpx/libvpx/third_party/googletest/src/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/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/mesa3d/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/mesa3d/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_;

Completed in 1996 milliseconds

1234567891011>>