HomeSort by relevance Sort by last modified time
    Searched full:lhs (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /external/icu4c/test/intltest/
icusvtst.h 38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
43 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs);
44 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs);
45 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs);
47 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs);
48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
49 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs);
  /external/astl/include/
char_traits.h 58 static void assign(char& lhs, const char& rhs) { lhs = rhs; }
60 static bool eq(const char& lhs, const char& rhs) { return lhs == rhs; }
62 static bool lt(const char& lhs, const char& rhs) { return lhs < rhs; }
64 static int compare(const char* lhs, const char* rhs, size_t n)
65 { return std::memcmp(lhs, rhs, n); }
72 static char* move(char* lhs, const char* rhs, size_t n)
73 { return static_cast<char*>(std::memmove(lhs, rhs, n));
    [all...]
ios_pos_types.h 73 operator==(const fpos& lhs, const fpos& rhs)
74 { return streamoff(lhs) == streamoff(rhs); }
77 operator!=(const fpos& lhs, const fpos& rhs)
78 { return streamoff(lhs) != streamoff(rhs); }
  /external/stlport/test/eh/
SortClass.h 58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) {
59 return rhs < lhs;
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) {
63 return !(rhs < lhs);
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) {
67 return !(lhs < rhs);
70 inline bool operator != ( const SortClass& lhs, const SortClass& rhs ) {
71 return !(lhs == rhs);
TestClass.h 138 inline bool operator>( const TestClass& lhs, const TestClass& rhs ) {
139 return rhs < lhs;
142 inline bool operator>=( const TestClass& lhs, const TestClass& rhs ) {
143 return !(lhs < rhs);
146 inline bool operator<=( const TestClass& lhs, const TestClass& rhs ) {
147 return !(rhs < lhs);
150 inline bool operator != ( const TestClass& lhs, const TestClass& rhs ) {
151 return lhs.value() != rhs.value();
  /external/webkit/WebCore/xml/
XPathPredicate.cpp 70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs)
73 addSubExpression(lhs);
79 Value lhs(subExpr(0)->evaluate());
82 double leftVal = lhs.toNumber();
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs)
104 addSubExpression(lhs);
108 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const
110 if (lhs.isNodeSet()) {
111 const NodeSet& lhsSet = lhs.toNodeSet();
145 return compare(lhs.toBoolean(), rhs)
    [all...]
  /frameworks/base/include/private/ui/
RegionHelper.h 40 static const uint32_t LHS = 0x5; // 0b101
43 op_nand = LHS & ~RHS,
44 op_and = LHS & RHS,
45 op_or = LHS | RHS,
46 op_xor = LHS ^ RHS
69 inline region_operator(int op, const region& lhs, const region& rhs)
70 : op_mask(op), spanner(lhs, rhs)
77 SpannerInner spannerInner(spanner.lhs, spanner.rhs);
156 region lhs; member in class:android::region_operator::Spanner
160 inline Spanner(const region& lhs, const region& rhs
213 region lhs; member in class:android::region_operator::SpannerInner
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
LinkedHashSetTest.java 315 LinkedHashSet<Integer> lhs = new LinkedHashSet<Integer>(); local
318 lhs.add(new Integer(1));
319 assertEquals(1, lhs.size());
320 lhs.retainAll(v);
321 assertEquals(0, lhs.size());
329 lhs.add(new Integer(1));
330 lhs.add(new Integer(6));
331 lhs.add(new Integer(7));
332 lhs.add(new Integer(8));
333 lhs.add(new Integer(9))
366 LinkedHashSet<Integer> lhs = new LinkedHashSet<Integer>(); local
391 LinkedHashSet<Integer> lhs = new LinkedHashSet<Integer>(); local
    [all...]
  /frameworks/base/libs/rs/scriptc/
rs_graphics.rsh 7 extern float3 float3Add(float3 lhs, float3 rhs);
8 extern float3 float3Sub(float3 lhs, float3 rhs);
9 extern float3 float3Cross(float3 lhs, float3 rhs);
10 extern float float3Dot(float3 lhs, float3 rhs);
13 extern float4 float4Add(float4 lhs, float4 rhs);
14 extern float4 float4Sub(float4 lhs, float4 rhs);
15 extern float4 float4Cross(float4 lhs, float4 rhs);
16 extern float float4Dot(float4 lhs, float4 rhs);
  /bionic/libc/kernel/common/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
ktime.h 38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
  /external/kernel-headers/original/linux/
time.h 45 * lhs < rhs: return <0
46 * lhs == rhs: return 0
47 * lhs > rhs: return >0
49 static inline int timespec_compare(struct timespec *lhs, struct timespec *rhs)
51 if (lhs->tv_sec < rhs->tv_sec)
53 if (lhs->tv_sec > rhs->tv_sec)
55 return lhs->tv_nsec - rhs->tv_nsec;
58 static inline int timeval_compare(struct timeval *lhs, struct timeval *rhs)
60 if (lhs->tv_sec < rhs->tv_sec)
62 if (lhs->tv_sec > rhs->tv_sec
    [all...]
compat.h 207 static inline int compat_timeval_compare(struct compat_timeval *lhs,
210 if (lhs->tv_sec < rhs->tv_sec)
212 if (lhs->tv_sec > rhs->tv_sec)
214 return lhs->tv_usec - rhs->tv_usec;
217 static inline int compat_timespec_compare(struct compat_timespec *lhs,
220 if (lhs->tv_sec < rhs->tv_sec)
222 if (lhs->tv_sec > rhs->tv_sec)
224 return lhs->tv_nsec - rhs->tv_nsec;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/project/
AndroidManifestParserTest.java 86 private void assertEquals(Activity lhs, Activity rhs) {
87 assertTrue(lhs == rhs || (lhs != null && rhs != null));
88 if (lhs != null && rhs != null) {
89 assertEquals(lhs.getName(), rhs.getName());
90 assertEquals(lhs.isExported(), rhs.isExported());
91 assertEquals(lhs.hasAction(), rhs.hasAction());
92 assertEquals(lhs.isHomeActivity(), rhs.isHomeActivity());
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 196 static void SC_vec3Add(vec3_t *dest, const vec3_t *lhs, const vec3_t *rhs)
198 dest->x = lhs->x + rhs->x;
199 dest->y = lhs->y + rhs->y;
200 dest->z = lhs->z + rhs->z;
203 static void SC_vec3Sub(vec3_t *dest, const vec3_t *lhs, const vec3_t *rhs)
205 dest->x = lhs->x - rhs->x;
206 dest->y = lhs->y - rhs->y;
207 dest->z = lhs->z - rhs->z;
210 static void SC_vec3Cross(vec3_t *dest, const vec3_t *lhs, const vec3_t *rhs)
212 float x = lhs->y * rhs->z - lhs->z * rhs->y
    [all...]
  /external/bison/src/
derives.c 72 whose LHS is NTERM. */
82 symbol_number lhs = rules[r].lhs->number; local
84 /* A new LHS is found. */
85 p->next = dset[lhs - ntokens];
87 dset[lhs - ntokens] = p;
nullable.c 110 && ! nullable[rules_ruleno->lhs->number - ntokens])
112 nullable[rules_ruleno->lhs->number - ntokens] = true;
113 *s2++ = rules_ruleno->lhs->number;
123 if (r->useful && ! nullable[r->lhs->number - ntokens])
125 nullable[r->lhs->number - ntokens] = true;
126 *s2++ = r->lhs->number;
  /external/webkit/JavaScriptCore/wtf/unicode/
CollatorDefault.cpp 54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const
58 while (l < lmin && *lhs == *rhs) {
59 lhs++;
65 return (*lhs > *rhs) ? Greater : Less;
  /packages/apps/Browser/assets/html/
flashtest.html 10 lhs
  /frameworks/base/include/utils/
Debug.h 39 template<typename LHS, typename RHS>
40 struct CompileTimeIfElse<true, LHS, RHS> { typedef LHS TYPE; };
41 template<typename LHS, typename RHS>
42 struct CompileTimeIfElse<false, LHS, RHS> { typedef RHS TYPE; };

Completed in 2975 milliseconds

1 2 3 4 5 6 7 8 9