/external/stlport/test/unit/ |
unordered_test.cpp | 537 bool operator () (Key lhs, Key rhs) const 538 { return lhs.m_data == rhs.m_data; } 540 bool operator () (Key lhs, int rhs) const 541 { return lhs.m_data == rhs; } 543 bool operator () (int lhs, Key rhs) const 544 { return lhs == rhs.m_data; } 558 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const 559 { return lhs->m_data == rhs->m_data; } 561 bool operator () (Key const volatile *lhs, int rhs) const 562 { return lhs->m_data == rhs; [all...] |
/frameworks/base/include/utils/ |
TypeHelpers.h | 118 int strictly_order_type(const TYPE& lhs, const TYPE& rhs) { 119 return (lhs < rhs) ? 1 : 0; 123 int compare_type(const TYPE& lhs, const TYPE& rhs) { 124 return strictly_order_type(rhs, lhs) - strictly_order_type(lhs, rhs);
|
VectorImpl.h | 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); 164 virtual int do_compare(const void* lhs, const void* rhs) const = 0;
|
String16.h | 147 inline int compare_type(const String16& lhs, const String16& rhs) 149 return lhs.compare(rhs); 152 inline int strictly_order_type(const String16& lhs, const String16& rhs) 154 return compare_type(lhs, rhs) < 0;
|
SortedVector.h | 131 virtual int do_compare(const void* lhs, const void* rhs) const; 272 int SortedVector<TYPE>::do_compare(const void* lhs, const void* rhs) const { 273 return compare_type( *reinterpret_cast<const TYPE*>(lhs), *reinterpret_cast<const TYPE*>(rhs) );
|
/cts/tools/dasm/src/java_cup/ |
production.java | 8 * a LHS non terminal, and an array of RHS symbols. As various 33 /** Full constructor. This constructor accepts a LHS non terminal, 77 "Attempt to construct a production with a null LHS"); 83 /* count use of lhs */ 123 /* put us in the production list of the lhs non terminal */ 167 public symbol_part lhs() {return _lhs;} method in class:production 309 /* is this for the LHS? */ 435 * @param lhs_type the object type associated with the LHS symbol. 465 /* add a label for the LHS */ 741 result += ((lhs() != null) ? lhs().toString() : "$$NULL-LHS$$") [all...] |
lr_item_core.java | 211 if (_the_production.lhs() != null && 212 _the_production.lhs().the_symbol() != null && 213 _the_production.lhs().the_symbol().name() != null) 214 result = _the_production.lhs().the_symbol().name();
|
non_terminal.java | 205 /** Table of all productions with this non terminal on the LHS. */ 208 /** Access to productions with this non terminal on the LHS. */ 213 /** Total number of productions with this non terminal on the LHS. */ 222 if (prod == null || prod.lhs() == null || prod.lhs().the_symbol() != this)
|
emit.java | 30 * <dd> lists the LHS non terminal number, and the length of the RHS of 39 * of under the LHS non terminal symbol for the production (as if we 40 * had seen the LHS symbol rather than all the symbols matching the 372 prod.lhs().the_symbol().stack_type() + "(/*" + 373 prod.lhs().the_symbol().name() + "*/" + 374 prod.lhs().the_symbol().index() + ");"); 391 /* code to return lhs symbol */ 447 out.print(/* lhs symbol # */ prod.lhs().the_symbol().index() + ", ");
|
/frameworks/base/opengl/java/android/opengl/ |
Matrix.java | 46 * matrix. In matrix notation: result = lhs x rhs. Due to the way 49 * the lhs matrix. This is the opposite of what you might expect. 51 * The same float array may be passed for result, lhs, and/or rhs. However, 53 * either the lhs or rhs elements. 58 * @param lhs The float array that holds the left-hand-side matrix. 59 * @param lhsOffset The offset into the lhs array where the lhs is stored 63 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if 64 * resultOffset + 16 > result.length or lhsOffset + 16 > lhs.length or 68 float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) [all...] |
/hardware/msm7k/libcopybit/ |
copybit.cpp | 109 /** Determine the intersection of lhs & rhs store in out */ 111 const struct copybit_rect_t *lhs, 113 out->l = max(lhs->l, rhs->l); 114 out->t = max(lhs->t, rhs->t); 115 out->r = min(lhs->r, rhs->r); 116 out->b = min(lhs->b, rhs->b);
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
gimple.def | 98 /* GIMPLE_ASSIGN <SUBCODE, LHS, RHS1[, RHS2]> represents the assignment 101 LHS = RHS1 SUBCODE RHS2. 107 LHS is the operand on the LHS of the assignment. It must be a tree node 128 /* GIMPLE_CALL <FN, LHS, ARG1, ..., ARGN[, CHAIN]> represents function 133 LHS is the operand where the return value from FN is stored. It may
|
/external/bison/src/ |
reader.h | 67 void grammar_current_rule_begin (symbol *lhs, location loc);
|
gram.h | 58 RULES[R].lhs -- the symbol of the left hand side of rule R. 183 symbol *lhs; member in struct:__anon831 217 /* Print this rule's number and lhs on OUT. If a PREVIOUS_LHS was
|
/frameworks/base/libs/rs/ |
rsMatrix.h | 45 void loadMultiply(const Matrix *lhs, const Matrix *rhs);
|
/external/dbus/dbus/ |
dbus-marshal-recursive.h | 137 dbus_bool_t _dbus_type_reader_greater_than (const DBusTypeReader *lhs, 140 dbus_bool_t _dbus_type_reader_equal_values (const DBusTypeReader *lhs,
|
/external/srec/srec/Semproc/include/ |
SR_ExpressionParser.h | 99 * 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/tests/mozilla/ecma_3/Operators/ |
11.13.1-001.js | 38 * SUMMARY: JS should evaluate RHS before binding LHS implicit variable 46 var summary = 'JS should evaluate RHS before binding LHS implicit variable';
|
/frameworks/base/libs/surfaceflinger/ |
MessageQueue.h | 74 inline bool operator < (const MessageBase& lhs, const MessageBase& rhs) { 75 return lhs.when < rhs.when;
|
/system/core/libpixelflinger/codeflinger/ |
CodeCache.h | 123 const key_value_pair_t<CodeCache::key_t, CodeCache::cache_entry_t>& lhs, 126 return lhs.key.mKey->compare_type(*(rhs.key.mKey));
|
/external/astl/include/ |
string | 321 bool operator<(const string& lhs, const string& rhs); 322 bool operator<=(const string& lhs, const string& rhs); 323 bool operator>(const string& lhs, const string& rhs); 324 bool operator>=(const string& lhs, const string& rhs); 327 void swap(string& lhs, string& rhs);
|
/system/core/libpixelflinger/tinyutils/ |
SortedVector.h | 131 virtual int do_compare(const void* lhs, const void* rhs) const; 273 int SortedVector<TYPE>::do_compare(const void* lhs, const void* rhs) const { 274 return compare_type( *reinterpret_cast<const TYPE*>(lhs), *reinterpret_cast<const TYPE*>(rhs) );
|
/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); 171 static bool CaseInsensitiveCStringEquals(const char* lhs, 186 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
|
/external/gtest/test/ |
gtest_filter_unittest.py | 189 def AssertSetEqual(self, lhs, rhs): 192 for elem in lhs: 196 self.assert_(elem in lhs, '%s in %s' % (elem, lhs))
|
/external/v8/src/ |
func-name-inferrer.h | 40 // always visited before RHSs. Thus, during visiting the LHS, a name can be
|