HomeSort by relevance Sort by last modified time
    Searched refs:rhs (Results 226 - 250 of 3392) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursslk.h 76 Soft_Label_Key& operator=(const Soft_Label_Key& rhs)
78 if (this != &rhs) {
79 *this = rhs;
84 Soft_Label_Key(const Soft_Label_Key& rhs)
86 format(rhs.format),
87 num(rhs.num)
89 *this = rhs.label;
148 Soft_Label_Key_Set& operator=(const Soft_Label_Key_Set& rhs)
150 if (this != &rhs) {
151 *this = rhs;
    [all...]
etip.h 160 NCursesException& operator=(const NCursesException& rhs)
162 errorno = rhs.errorno;
166 NCursesException(const NCursesException& rhs)
167 : message(rhs.message), errorno(rhs.errorno)
208 NCursesPanelException& operator=(const NCursesPanelException& rhs)
210 if (this != &rhs) {
211 NCursesException::operator=(rhs);
212 p = rhs.p;
217 NCursesPanelException(const NCursesPanelException& rhs)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.comparison/
opeq.string_view.string.pass.cpp 13 // bool operator==(const charT* lhs, const basic_string<charT,traits> rhs);
15 // bool operator==(const basic_string_view<charT,traits> lhs, const CharT* rhs);
22 test(const std::string &lhs, S rhs, bool x)
24 assert((lhs == rhs) == x);
25 assert((rhs == lhs) == x);
opne.string_view.string.pass.cpp 13 // bool operator!=(const basic_string<charT, traits, Allocator> &lhs, basic_string_view<charT,traits> rhs);
15 // bool operator!=(basic_string_view<charT,traits> lhs, const basic_string<charT, traits, Allocator> &rhs);
22 test(const std::string &lhs, S rhs, bool x)
24 assert((lhs != rhs) == x);
25 assert((rhs != lhs) == x);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.comparison/
opeq.string_view.string.pass.cpp 13 // bool operator==(const charT* lhs, const basic_string<charT,traits> rhs);
15 // bool operator==(const basic_string_view<charT,traits> lhs, const CharT* rhs);
23 test(const std::string &lhs, S rhs, bool x)
25 assert((lhs == rhs) == x);
26 assert((rhs == lhs) == x);
opge.string_view.string.pass.cpp 14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y)
25 assert((lhs >= rhs) == x);
26 assert((rhs >= lhs) == y);
opgt.string_view.string.pass.cpp 14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y)
25 assert((lhs > rhs) == x);
26 assert((rhs > lhs) == y);
ople.string_view.string.pass.cpp 14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y)
25 assert((lhs <= rhs) == x);
26 assert((rhs <= lhs) == y);
oplt.string_view.string.pass.cpp 14 // basic_string_view<charT,traits> rhs);
16 // const basic_string<charT,traits,Allocator>& rhs);
23 test(const S& lhs, const typename S::value_type* rhs, bool x, bool y)
25 assert((lhs < rhs) == x);
26 assert((rhs < lhs) == y);
opne.string_view.string.pass.cpp 13 // bool operator!=(const basic_string<charT, traits, Allocator> &lhs, basic_string_view<charT,traits> rhs);
15 // bool operator!=(basic_string_view<charT,traits> lhs, const basic_string<charT, traits, Allocator> &rhs);
23 test(const std::string &lhs, S rhs, bool x)
25 assert((lhs != rhs) == x);
26 assert((rhs != lhs) == x);
  /system/connectivity/wificond/scanning/
pno_network.h 34 bool operator==(const PnoNetwork& rhs) const {
35 return is_hidden_ == rhs.is_hidden_ &&
36 ssid_ == rhs.ssid_;
radio_chain_info.h 35 bool operator==(const RadioChainInfo& rhs) const {
36 return chain_id == rhs.chain_id && level == rhs.level;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.merge/
inplace_merge_comp.pass.cpp 39 S(const S& rhs) : i_(rhs.i_) {}
40 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; }
42 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; }
43 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this;
    [all...]
  /external/v8/src/compiler/
operation-typer.cc 217 Type* OperationTyper::MultiplyRanger(Type* lhs, Type* rhs) {
221 double rmin = rhs->AsRange()->Min();
222 double rmax = rhs->AsRange()->Max();
233 (rhs->Maybe(cache_.kSingletonZero) &&
237 (rhs->Maybe(cache_.kSingletonZero) && lmin < 0);
510 Type* OperationTyper::NumberAdd(Type* lhs, Type* rhs) {
512 DCHECK(rhs->Is(Type::Number()));
514 if (!lhs->IsInhabited() || !rhs->IsInhabited()) {
520 bool maybe_nan = lhs->Maybe(Type::NaN()) || rhs->Maybe(Type::NaN());
529 if (rhs->Maybe(Type::MinusZero()))
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
arrays.h 58 bool operator==(const TArraySize& rhs) const
60 if (size != rhs.size)
62 if (node == nullptr || rhs.node == nullptr)
63 return node == rhs.node;
65 return SameSpecializationConstants(node, rhs.node);
149 // will make it hold a copy of all but the first element of rhs.
152 void copyNonFront(const TSmallArrayVector& rhs)
155 if (rhs.size() > 1) {
157 sizes->insert(sizes->begin(), rhs.sizes->begin() + 1, rhs.sizes->end())
    [all...]
  /external/swiftshader/src/Reactor/
LLVMReactor.cpp 409 Value *Nucleus::createAdd(Value *lhs, Value *rhs)
411 return V(::builder->CreateAdd(lhs, rhs));
414 Value *Nucleus::createSub(Value *lhs, Value *rhs)
416 return V(::builder->CreateSub(lhs, rhs));
419 Value *Nucleus::createMul(Value *lhs, Value *rhs)
421 return V(::builder->CreateMul(lhs, rhs));
424 Value *Nucleus::createUDiv(Value *lhs, Value *rhs)
426 return V(::builder->CreateUDiv(lhs, rhs));
429 Value *Nucleus::createSDiv(Value *lhs, Value *rhs)
431 return V(::builder->CreateSDiv(lhs, rhs));
    [all...]
Reactor.hpp 103 RValue<T> operator=(RValue<T> rhs) const;
106 RValue<T> operator+=(RValue<T> rhs) const;
168 RValue(const Reference<T> &rhs);
190 Bool(RValue<Bool> rhs);
191 Bool(const Bool &rhs);
192 Bool(const Reference<Bool> &rhs);
194 // RValue<Bool> operator=(bool rhs); // FIXME: Implement
195 RValue<Bool> operator=(RValue<Bool> rhs);
196 RValue<Bool> operator=(const Bool &rhs);
197 RValue<Bool> operator=(const Reference<Bool> &rhs);
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
TriState.h 102 TriState<T>& operator op (const TriState<T>& rhs) { \
103 if (mIsSet && rhs.mIsSet) { \
104 mValue op rhs.mValue; \
110 TriState<T>& operator op(const T& rhs) { \
112 mValue op rhs; \
154 friend TriState<T> operator op(TriState<T> lhs, const TriState<T>& rhs) { \
155 lhs compound_op rhs; \
158 friend TriState<T> operator op(TriState<T> lhs, const T& rhs) { \
159 lhs compound_op rhs; \
162 friend TriState<T> operator op(const T &lhs, const TriState<T>& rhs) { \
    [all...]
  /art/runtime/
jdwp_provider.h 36 std::ostream& operator<<(std::ostream& os, const JdwpProvider& rhs);
  /external/conscrypt/platform/src/main/java/org/conscrypt/
CertificatePriorityComparator.java 79 public int compare(X509Certificate lhs, X509Certificate rhs) {
82 boolean rhsSelfSigned = rhs.getSubjectDN().equals(rhs.getIssuerDN());
88 result = compareStrength(rhs, lhs);
94 Date rhsNotAfter = rhs.getNotAfter();
101 Date rhsNotBefore = rhs.getNotBefore();
105 private int compareStrength(X509Certificate lhs, X509Certificate rhs) {
108 PublicKey rhsPublicKey = rhs.getPublicKey();
117 return compareSignatureAlgorithm(lhs, rhs);
120 private int compareKeyAlgorithm(PublicKey lhs, PublicKey rhs) {
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-string.h 102 static bool CStringEquals(const char* lhs, const char* rhs);
116 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
125 const char* rhs);
140 const wchar_t* rhs);
  /external/icu/icu4c/source/i18n/
digitgrouping.h 35 * Returns TRUE if this object is equal to rhs.
37 UBool equals(const DigitGrouping &rhs) const {
38 return ((fGrouping == rhs.fGrouping) &&
39 (fGrouping2 == rhs.fGrouping2) &&
40 (fMinGrouping == rhs.fMinGrouping));
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-string.h 102 static bool CStringEquals(const char* lhs, const char* rhs);
116 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
125 const char* rhs);
140 const wchar_t* rhs);
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-string.h 102 static bool CStringEquals(const char* lhs, const char* rhs);
116 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
125 const char* rhs);
140 const wchar_t* rhs);
  /external/sfntly/cpp/src/sfntly/table/
header.cc 57 const HeaderPtr rhs) {
58 return lhs->offset_ > rhs->offset_;
62 const HeaderPtr rhs) {
63 return lhs->tag_ > rhs->tag_;

Completed in 1260 milliseconds

1 2 3 4 5 6 7 8 91011>>