HomeSort by relevance Sort by last modified time
    Searched refs:lhs (Results 51 - 75 of 154) sorted by null

1 23 4 5 6 7

  /frameworks/base/test-runner/src/android/test/
MoreAsserts.java 436 * Tests that lhs.equals(rhs) matches expectedResult, as well as
437 * rhs.equals(lhs). Also tests that hashCode() return values are
441 * @param lhs An Object for which equals() and hashCode() are to be tested.
442 * @param rhs As lhs.
447 String message, Object lhs, Object rhs, boolean expectedResult) {
449 if ((lhs == null) && (rhs == null)) {
456 if ((lhs == null) || (rhs == null)) {
462 if (lhs != null) {
463 Assert.assertEquals(message, expectedResult, lhs.equals(rhs));
466 Assert.assertEquals(message, expectedResult, rhs.equals(lhs));
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 120 public void loadMultiply(Matrix4f lhs, Matrix4f rhs) {
128 ri0 += lhs.get(j,0) * rhs_ij;
129 ri1 += lhs.get(j,1) * rhs_ij;
130 ri2 += lhs.get(j,2) * rhs_ij;
131 ri3 += lhs.get(j,3) * rhs_ij;
  /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 92 typedef int (*compar_t)(const void* lhs, const void* rhs);
93 typedef int (*compar_r_t)(const void* lhs, const void* rhs, void* state);
166 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;
String8.h 323 inline int compare_type(const String8& lhs, const String8& rhs)
325 return lhs.compare(rhs);
328 inline int strictly_order_type(const String8& lhs, const String8& rhs)
330 return compare_type(lhs, rhs) < 0;
  /system/core/libpixelflinger/tinyutils/
TypeHelpers.h 95 int strictly_order_type(const TYPE& lhs, const TYPE& rhs) {
96 return (lhs < rhs) ? 1 : 0;
100 int compare_type(const TYPE& lhs, const TYPE& rhs) {
101 return strictly_order_type(rhs, lhs) - strictly_order_type(lhs, rhs);
  /frameworks/base/core/jni/android/opengl/
util.cpp 470 void multiplyMM(float* r, const float* lhs, const float* rhs)
474 register float ri0 = lhs[ I(0,0) ] * rhs_i0;
475 register float ri1 = lhs[ I(0,1) ] * rhs_i0;
476 register float ri2 = lhs[ I(0,2) ] * rhs_i0;
477 register float ri3 = lhs[ I(0,3) ] * rhs_i0;
480 ri0 += lhs[ I(j,0) ] * rhs_ij;
481 ri1 += lhs[ I(j,1) ] * rhs_ij;
482 ri2 += lhs[ I(j,2) ] * rhs_ij;
483 ri3 += lhs[ I(j,3) ] * rhs_ij;
499 FloatArrayHelper lhs(env, lhs_ref, lhsOffset, 16)
    [all...]
  /external/stlport/test/unit/
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...]
  /ndk/tests/device/test-gnustl-full/unit/
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...]
  /ndk/tests/device/test-stlport/unit/
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/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 381 comparator = function(lhs, rhs)
383 if (lhs[property] < rhs[property])
386 if (lhs[property] > rhs[property])
392 comparator = function(lhs, rhs)
394 if (lhs[property] > rhs[property])
397 if (lhs[property] < rhs[property])
  /cts/tools/dasm/src/java_cup/
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)
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...]
  /external/webkit/JavaScriptCore/wtf/unicode/icu/
CollatorICU.cpp 93 Collator::Result Collator::collate(const UChar* lhs, size_t lhsLength, const UChar* rhs, size_t rhsLength) const
98 return static_cast<Result>(ucol_strcoll(m_collator, lhs, lhsLength, rhs, rhsLength));
  /external/bison/src/
gram.h 58 RULES[R].lhs -- the symbol of the left hand side of rule R.
183 symbol *lhs; member in struct:__anon1455
217 /* Print this rule's number and lhs on OUT. If a PREVIOUS_LHS was
reader.h 67 void grammar_current_rule_begin (symbol *lhs, location loc);
  /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
  /frameworks/base/include/ui/
Region.h 141 const Region& lhs, const Region& rhs, int dx, int dy);
143 const Region& lhs, const Rect& rhs, int dx, int dy);
146 const Region& lhs, const Region& rhs);
148 const Region& lhs, const Rect& rhs);
  /frameworks/base/libs/rs/
rsMatrix.h 45 void loadMultiply(const Matrix *lhs, const Matrix *rhs);
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 214 private static boolean timeZoneStringsEqual(DateFormatSymbols lhs, DateFormatSymbols rhs) {
217 if (lhs.zoneStrings == null && rhs.zoneStrings == null && lhs.locale.equals(rhs.locale)) {
221 return Arrays.deepEquals(lhs.internalZoneStrings(), rhs.internalZoneStrings());
  /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);
  /external/chromium/base/
values.cc 191 bool lhs, rhs; local
192 return GetAsBoolean(&lhs) && other->GetAsBoolean(&rhs) && lhs == rhs;
195 int lhs, rhs; local
196 return GetAsInteger(&lhs) && other->GetAsInteger(&rhs) && lhs == rhs;
199 double lhs, rhs; local
200 return GetAsReal(&lhs) && other->GetAsReal(&rhs) && lhs == rhs;
256 std::string lhs, rhs
335 Value* lhs; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
gimple.h 720 tree rhs, lhs; local
894 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
gimple.h 720 tree rhs, lhs; local
894 /* Returns true iff T is a valid rhs for a MODIFY_EXPR where the LHS is a
    [all...]

Completed in 3850 milliseconds

1 23 4 5 6 7