/external/kernel-headers/original/linux/ |
ktime.h | 84 /* Subtract two ktime_t variables. rem = lhs -rhs: */ 85 #define ktime_sub(lhs, rhs) \ 86 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; }) 88 /* Add two ktime_t variables. res = lhs + rhs: */ 89 #define ktime_add(lhs, rhs) \ 90 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; }) 146 * @rhs: subtrahend 150 static inline ktime_t ktime_sub(const ktime_t lhs, const ktime_t rhs) 154 res.tv64 = lhs.tv64 - rhs.tv64;
|
/external/icu4c/i18n/ |
nfrs.h | 39 UBool operator==(const NFRuleSet& rhs) const; 40 UBool operator!=(const NFRuleSet& rhs) const { return !operator==(rhs); }
|
nfrule.h | 53 UBool operator==(const NFRule& rhs) const; 54 UBool operator!=(const NFRule& rhs) const { return !operator==(rhs); }
|
rbnf.cpp | 94 virtual UBool operator==(const LocalizationInfo* rhs) const; 95 inline UBool operator!=(const LocalizationInfo* rhs) const { return !operator==(rhs); } 114 streq(const UChar* lhs, const UChar* rhs) { 115 if (rhs == lhs) { 118 if (lhs && rhs) { 119 return u_strcmp(lhs, rhs) == 0; 125 LocalizationInfo::operator==(const LocalizationInfo* rhs) const { 126 if (rhs) { 127 if (this == rhs) { 876 const RuleBasedNumberFormat& rhs = (const RuleBasedNumberFormat&)other; local [all...] |
/frameworks/base/include/binder/ |
Permission.h | 43 Permission(const Permission& rhs); 46 bool operator < (const Permission& rhs) const; 58 Permission& operator = (const Permission& rhs) const;
|
/frameworks/base/include/utils/ |
SortedVector.h | 43 SortedVector(const SortedVector<TYPE>& rhs); 47 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const; 48 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs); 131 virtual int do_compare(const void* lhs, const void* rhs) const; 150 SortedVector<TYPE>::SortedVector(const SortedVector<TYPE>& rhs) 151 : SortedVectorImpl(rhs) { 160 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) { 161 SortedVectorImpl::operator = (rhs); 166 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const { 167 SortedVectorImpl::operator = (rhs); [all...] |
AssetDir.h | 100 bool operator< (const FileInfo& rhs) const { 101 return mFileName < rhs.mFileName; 105 bool operator== (const FileInfo& rhs) const { 106 return mFileName == rhs.mFileName;
|
VectorImpl.h | 50 VectorImpl(const VectorImpl& rhs); 56 VectorImpl& operator = (const VectorImpl& rhs); 90 typedef int (*compar_t)(const void* lhs, const void* rhs); 91 typedef int (*compar_r_t)(const void* lhs, const void* rhs, void* state); 142 SortedVectorImpl(const VectorImpl& rhs); 145 SortedVectorImpl& operator = (const SortedVectorImpl& rhs); 164 virtual int do_compare(const void* lhs, const void* rhs) const = 0;
|
/frameworks/base/libs/rs/ |
rsMatrix.h | 45 void loadMultiply(const Matrix *lhs, const Matrix *rhs); 52 void multiply(const Matrix *rhs) { 54 tmp.loadMultiply(this, rhs);
|
/system/core/libpixelflinger/tinyutils/ |
SortedVector.h | 43 SortedVector(const SortedVector<TYPE>& rhs); 47 const SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs) const; 48 SortedVector<TYPE>& operator = (const SortedVector<TYPE>& rhs); 131 virtual int do_compare(const void* lhs, const void* rhs) const; 151 SortedVector<TYPE>::SortedVector(const SortedVector<TYPE>& rhs) 152 : SortedVectorImpl(rhs) { 161 SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) { 162 SortedVectorImpl::operator = (rhs); 167 const SortedVector<TYPE>& SortedVector<TYPE>::operator = (const SortedVector<TYPE>& rhs) const { 168 SortedVectorImpl::operator = (rhs); [all...] |
VectorImpl.cpp | 49 VectorImpl::VectorImpl(const VectorImpl& rhs) 50 : mStorage(rhs.mStorage), mCount(rhs.mCount), 51 mFlags(rhs.mFlags), mItemSize(rhs.mItemSize) 68 VectorImpl& VectorImpl::operator = (const VectorImpl& rhs) 70 LOG_ASSERT(mItemSize == rhs.mItemSize, 71 "Vector<> have different types (this=%p, rhs=%p)", this, &rhs); 72 if (this != &rhs) { [all...] |
Vector.h | 43 Vector(const Vector<TYPE>& rhs); 47 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const; 48 Vector<TYPE>& operator = (const Vector<TYPE>& rhs); 147 typedef int (*compar_t)(const TYPE* lhs, const TYPE* rhs); 148 typedef int (*compar_r_t)(const TYPE* lhs, const TYPE* rhs, void* state); 179 Vector<TYPE>::Vector(const Vector<TYPE>& rhs) 180 : VectorImpl(rhs) { 189 Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) { 190 VectorImpl::operator = (rhs); 195 const Vector<TYPE>& Vector<TYPE>::operator = (const Vector<TYPE>& rhs) const [all...] |
VectorImpl.h | 42 VectorImpl(const VectorImpl& rhs); 48 VectorImpl& operator = (const VectorImpl& rhs); 129 SortedVectorImpl(const VectorImpl& rhs); 132 SortedVectorImpl& operator = (const SortedVectorImpl& rhs); 151 virtual int do_compare(const void* lhs, const void* rhs) const = 0;
|
/external/opencore/oscl/unit_test/src/ |
test_problem.h | 40 test_problem(const test_problem& rhs); 41 test_problem& operator= (const test_problem& rhs);
|
/system/core/libpixelflinger/codeflinger/ |
CodeCache.h | 43 AssemblyKey(const T& rhs) : mKey(rhs) { } 45 const T& rhs = static_cast<const AssemblyKey&>(key).mKey; local 46 return android::compare_type(mKey, rhs); 124 const key_value_pair_t<CodeCache::key_t, CodeCache::cache_entry_t>& rhs) 126 return lhs.key.mKey->compare_type(*(rhs.key.mKey));
|
GGLAssembler.h | 56 RegisterFile(const RegisterFile& rhs); 61 bool operator == (const RegisterFile& rhs) const; 62 bool operator != (const RegisterFile& rhs) const { 63 return !operator == (rhs); 250 explicit component_t(const integer_t& rhs) 251 : reg_t(rhs.reg, rhs.flags), h(rhs.s), l(0) { 253 explicit component_t(const pixel_t& rhs, int component) { 254 setTo( rhs.reg, [all...] |
/external/icu4c/test/intltest/ |
icusvtst.cpp | 69 Integer(const Integer& rhs) : UObject(rhs), _val(rhs._val) { 176 ICUServiceTest::lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const 181 result.append(", rhs: "); 182 append(result, rhs); 198 ICUServiceTest::confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs) 201 ? (rhs == NULL) 202 : (rhs != NULL && lhs->operator==(*rhs)); [all...] |
/external/stlport/test/unit/ |
set_test.cpp | 215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const { 216 return lhs.data() < rhs.data(); 370 bool operator () (Key lhs, Key rhs) const 371 { return lhs.m_data < rhs.m_data; } 373 bool operator () (Key lhs, int rhs) const 374 { return lhs.m_data < rhs; } 376 bool operator () (int lhs, Key rhs) const 377 { return lhs < rhs.m_data; } 382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const 383 { return (*lhs).m_data < (*rhs).m_data; [all...] |
map_test.cpp | 313 bool operator () (Key lhs, Key rhs) const 314 { return lhs.m_data < rhs.m_data; } 316 bool operator () (Key lhs, int rhs) const 317 { return lhs.m_data < rhs; } 319 bool operator () (int lhs, Key rhs) const 320 { return lhs < rhs.m_data; } 325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const 326 { return (*lhs).m_data < (*rhs).m_data; } 328 bool operator () (Key const volatile *lhs, int rhs) const 329 { return (*lhs).m_data < rhs; } [all...] |
/external/emma/core/java12/com/vladium/emma/data/ |
MetaData.java | 164 * note: rhs entries must override current entries 166 public IMergeable merge (final IMergeable rhs) 168 if ((rhs == null) || rhs.isEmpty () || (rhs == this)) 172 final MetaData rhsmdata = (MetaData) rhs; // TODO: redesign to avoid this cast? 175 // rhs entries always override existing content:
|
/external/bison/src/ |
gram.c | 109 | Return the number of symbols in RHS. | 117 for (rhsp = r->rhs; *rhsp >= 0; ++rhsp) 124 | Print this rule's RHS on OUT. | 130 if (*r->rhs >= 0) 133 for (rp = r->rhs; *rp >= 0; rp++) 175 | Return the size of the longest rule RHS. | 207 /* rule # : LHS -> RHS */ 266 fprintf (out, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n"); 271 unsigned int rhs_itemno = rule_i->rhs - ritem; 273 /* Find the last RHS index in ritems. * [all...] |
/external/opencore/protocols/http_parcom/src/ |
string_keyvalue_store.h | 127 bool isCIEquivalentTo(const StrCSumPtrLen& rhs) const 129 return (iStr.isCIEquivalentTo(rhs) > 0); 149 StrCSumPtrLenWrapper& operator=(const StrCSumPtrLen& rhs) 151 iStr = rhs; 156 StrCSumPtrLenWrapper& operator=(const StrPtrLen& rhs) 158 iStr = rhs; 163 StrCSumPtrLenWrapper& operator=(const StrCSumPtrLenWrapper& rhs) 165 iStr = rhs.iStr; 166 iNext = rhs.iNext;
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
Attribute.java | 42 public abstract boolean equals (final Object rhs); 59 public boolean equals (final Object rhs) 61 if (this == rhs) return true; 62 if (! (rhs instanceof AttributeImpl)) return false; 64 return m_name.equals (((AttributeImpl) rhs).m_name);
|
/external/gtest/include/gtest/internal/ |
gtest-string.h | 145 static bool CStringEquals(const char* lhs, const char* rhs); 163 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); 172 const char* rhs); 187 const wchar_t* rhs); 248 // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 249 // if this is greater than rhs. 250 int Compare(const String& rhs) const; 260 bool operator<(const String& rhs) const { return Compare(rhs) < 0; [all...] |
/external/opencore/oscl/oscl/osclio/src/ |
oscl_socket_types.h | 81 bool operator == (const OsclNetworkAddress & rhs) const 83 if (port == rhs.port) 85 if (0 == oscl_strcmp((const char*)ipAddr.Str(), (const char*)rhs.ipAddr.Str()))
|