Searched defs:lhs (Results 1 - 25 of 32) sorted by relevance

12

/external/astl/include/
H A Dios_pos_types.h73 operator==(const fpos& lhs, const fpos& rhs) argument
74 { return streamoff(lhs) == streamoff(rhs); }
77 operator!=(const fpos& lhs, const fpos& rhs) argument
78 { return streamoff(lhs) != streamoff(rhs); }
H A Dchar_traits.h58 static void assign(char& lhs, const char& rhs) { lhs = rhs; } argument
60 static bool eq(const char& lhs, const char& rhs) { return lhs == rhs; } argument
62 static bool lt(const char& lhs, const char& rhs) { return lhs < rhs; } argument
64 static int compare(const char* lhs, const char* rhs, size_t n) argument
65 { return std::memcmp(lhs, rhs, n); }
72 static char* move(char* lhs, const char* rhs, size_t n) argument
73 { return static_cast<char*>(std::memmove(lhs, rh
75 copy(char* lhs, const char* rhs, size_t n) argument
79 assign(char* lhs, size_t n, char c) argument
87 eq_int_type(const int_type& lhs, const int_type& rhs) argument
[all...]
/external/bison/src/
H A Dderives.c82 symbol_number lhs = rules[r].lhs->number; local
85 p->next = dset[lhs - ntokens];
87 dset[lhs - ntokens] = p;
H A Dgram.h58 RULES[R].lhs -- the symbol of the left hand side of rule R.
183 symbol *lhs; member in struct:__anon20
217 /* Print this rule's number and lhs on OUT. If a PREVIOUS_LHS was
H A Dreader.c150 | symbol is the lhs of the following rule. |
190 grammar_current_rule_begin (symbol *lhs, location loc)
194 startsymbol = lhs;
199 /* Start a new rule and record its lhs. */
202 grammar_symbol_append (lhs, loc);
205 /* Mark the rule's lhs as a nonterminal if not already so. */
206 if (lhs->class == unknown_sym)
208 lhs->class = nterm_sym;
209 lhs->number = nvars;
212 else if (lhs
187 grammar_current_rule_begin(symbol *lhs, location loc) argument
[all...]
/external/stlport/test/eh/
H A DSortClass.h58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) { argument
59 return rhs < lhs;
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) { argument
63 return !(rhs < lhs);
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) { argument
67 return !(lhs < rhs);
70 inline bool operator != ( const SortClass& lhs, const SortClass& rhs ) { argument
71 return !(lhs == rhs);
H A DTestClass.h138 inline bool operator>( const TestClass& lhs, const TestClass& rhs ) { argument
139 return rhs < lhs;
142 inline bool operator>=( const TestClass& lhs, const TestClass& rhs ) { argument
143 return !(lhs < rhs);
146 inline bool operator<=( const TestClass& lhs, const TestClass& rhs ) { argument
147 return !(rhs < lhs);
150 inline bool operator != ( const TestClass& lhs, const TestClass& rhs ) { argument
151 return lhs.value() != rhs.value();
/external/webkit/JavaScriptCore/wtf/unicode/
H A DCollatorDefault.cpp54 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const argument
58 while (l < lmin && *lhs == *rhs) {
59 lhs++;
65 return (*lhs > *rhs) ? Greater : Less;
/external/srec/srec/Semproc/include/
H A DSR_ExpressionParser.h99 * buffer for holding the token on the lhs of equal sign
101 LCHAR lhs[MAX_STRING_LEN]; member in struct:ExpressionParser_t
/external/webkit/JavaScriptCore/wtf/unicode/icu/
H A DCollatorICU.cpp93 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const argument
98 return static_cast<Result>(ucol_strcoll(m_collator, lhs, lhsLength, rhs, rhsLength));
/external/kernel-headers/original/linux/
H A Dktime.h84 /* 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 }; })
145 * @lhs: minuend
150 static inline ktime_t ktime_sub(const ktime_t lhs, const ktime_t rhs) argument
154 res.tv64 = lhs.tv64 - rhs.tv64;
H A Dtime.h45 * 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) argument
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) argument
60 if (lhs->tv_sec < rhs->tv_sec)
62 if (lhs
76 timespec_sub(struct timespec lhs, struct timespec rhs) argument
[all...]
H A Dcompat.h207 static inline int compat_timeval_compare(struct compat_timeval *lhs, argument
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, argument
220 if (lhs->tv_sec < rhs->tv_sec)
222 if (lhs->tv_sec > rhs->tv_sec)
224 return lhs->tv_nsec - rhs->tv_nsec;
/external/stlport/test/unit/
H A Dlimits_test.cpp120 bool test_float_values(_Tp lhs, _Tp rhs) argument
121 { return lhs == rhs; }
H A Dmap_test.cpp313 bool operator () (Key lhs, Key rhs) const argument
314 { return lhs.m_data < rhs.m_data; }
316 bool operator () (Key lhs, int rhs) const argument
317 { return lhs.m_data < rhs; }
319 bool operator () (int lhs, Key rhs) const argument
320 { return lhs < rhs.m_data; }
325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
326 { return (*lhs).m_data < (*rhs).m_data; }
328 bool operator () (Key const volatile *lhs, int rhs) const argument
329 { return (*lhs)
331 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
H A Dset_test.cpp215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const { argument
216 return lhs.data() < rhs.data();
370 bool operator () (Key lhs, Key rhs) const argument
371 { return lhs.m_data < rhs.m_data; }
373 bool operator () (Key lhs, int rhs) const argument
374 { return lhs.m_data < rhs; }
376 bool operator () (int lhs, Key rhs) const argument
377 { return lhs < rhs.m_data; }
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
383 { return (*lhs)
385 operator ()(Key const volatile *lhs, int rhs) const argument
388 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
H A Dunordered_test.cpp537 bool operator () (Key lhs, Key rhs) const argument
538 { return lhs.m_data == rhs.m_data; }
540 bool operator () (Key lhs, int rhs) const argument
541 { return lhs.m_data == rhs; }
543 bool operator () (int lhs, Key rhs) const argument
544 { return lhs == rhs.m_data; }
558 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
559 { return lhs->m_data == rhs->m_data; }
561 bool operator () (Key const volatile *lhs, int rhs) const argument
562 { return lhs
564 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
/external/webkit/WebCore/xml/
H A DXPathPredicate.cpp70 NumericOp::NumericOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
73 addSubExpression(lhs);
79 Value lhs(subExpr(0)->evaluate());
82 double leftVal = lhs.toNumber();
101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
104 addSubExpression(lhs);
108 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const argument
110 if (lhs.isNodeSet()) {
111 const NodeSet& lhsSet = lhs.toNodeSet();
145 return compare(lhs
204 LogicalOp(Opcode opcode, Expression* lhs, Expression* rhs) argument
[all...]
/external/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs30 public static bool byteArrEqual( byte[] lhs, byte[] rhs ) argument
32 if (lhs.Length != rhs.Length)
34 for (int i = lhs.Length-1; i >= 0; --i)
35 if (lhs[i] != rhs[i])
/external/astl/src/
H A Dstring.cpp657 bool operator<(const string& lhs, const string& rhs) { argument
658 return lhs.compare(rhs) < 0;
661 bool operator<=(const string& lhs, const string& rhs) { argument
662 return lhs.compare(rhs) <= 0;
665 bool operator>(const string& lhs, const string& rhs) { argument
666 return lhs.compare(rhs) > 0;
669 bool operator>=(const string& lhs, const string& rhs) { argument
670 return lhs.compare(rhs) >= 0;
673 void swap(string& lhs, string& rhs) { argument
674 lhs
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c477 LCHAR lhs[MAX_STRING_LEN]; local
563 * before every lhs identifier.
585 /* put a dot after the rule name, and before the lhs */
598 in lhs buffer*/
599 p = lhs;
603 CHKLOG(rc, append_with_check(&p, *src, &lhs[MAX_STRING_LEN-1]));
606 /* terminate the lhs string */
607 CHKLOG(rc, append_with_check(&p, 0, &lhs[MAX_STRING_LEN-1]));
615 if (IS_LOCAL_IDENTIFIER(src, tokenLen) /* || !LSTRCMP(token, lhs) */)
782 LCHAR lhs[MAX_STRING_LE local
[all...]
/external/stlport/stlport/stl/
H A D_string_sum.h96 __bstr_sum (_Left const& lhs, _Right const& rhs) : argument
97 _lhs(lhs), _rhs(rhs) {}
/external/icu4c/test/intltest/
H A Dicusvtst.cpp176 ICUServiceTest::lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const argument
179 result.append(" lhs: ");
180 append(result, lhs);
198 ICUServiceTest::confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs)
200 UBool equ = (lhs == NULL)
202 : (rhs != NULL && lhs->operator==(*rhs));
205 lrmsg(temp, message, lhs, rhs);
215 ICUServiceTest::confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs) argument
217 UBool equ = (lhs == NULL)
219 : (rhs != NULL && lhs
232 confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs) argument
249 confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs) argument
268 confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs) argument
287 confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject *rhs) argument
299 confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs) argument
[all...]
/external/webkit/JavaScriptCore/bytecompiler/
H A DNodesCodegen.cpp813 // lefthand side of the assignment should be passing as the optional 'lhs' argument.
821 // a lhs to a concatenating assignment is not provided then the root add should have at
824 RegisterID* BinaryOpNode::emitStrcat(BytecodeGenerator& generator, RegisterID* dst, RegisterID* lhs, ReadModifyResolveNode* emitExpressionInfoForMe) argument
846 // If there is an assignment, allocate a temporary to hold the lhs after conversion.
847 // We could possibly avoid this (the lhs is converted last anyway, we could let the
849 if (lhs)
906 // If there is an assignment convert the lhs now. This will also copy lhs to
908 if (lhs)
909 generator.emitToPrimitive(temporaryRegisters[0].get(), lhs);
[all...]
/external/dbus/dbus/
H A Ddbus-marshal-recursive.c1432 * @param lhs left-hand-side (first) parameter
1434 * @returns whether lhs is greater than rhs
1437 _dbus_type_reader_greater_than (const DBusTypeReader *lhs, argument
1440 _dbus_assert (lhs->value_str == rhs->value_str);
1442 return lhs->value_pos > rhs->value_pos;

Completed in 261 milliseconds

12