/external/icu4c/common/ |
rbbistbl.cpp | 212 // The l. child of the val is the rhs expression from the assignment.
|
rbbirpt.txt | 297 # The only thing allowed at this point is a ';'. The RHS of an
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
ClassDef.java | 689 final MethodDescriptor rhs = (MethodDescriptor) obj; local 691 int result = m_name.compareTo (rhs.m_name); 693 result = m_descriptor.compareTo (rhs.m_descriptor);
|
/external/icu4c/common/unicode/ |
brkiter.h | 125 * @param rhs The BreakIterator to be compared for inequality 129 UBool operator!=(const BreakIterator& rhs) const { return !operator==(rhs); }
|
/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.cpp | [all...] |
/external/icu4c/i18n/ |
nfrule.cpp | 557 NFRule::operator==(const NFRule& rhs) const 559 return baseValue == rhs.baseValue 560 && radix == rhs.radix 561 && exponent == rhs.exponent 562 && ruleText == rhs.ruleText 563 && *sub1 == *rhs.sub1 564 && *sub2 == *rhs.sub2; [all...] |
msgfmt.cpp | 489 MessageFormat::operator==(const Format& rhs) const 491 if (this == &rhs) return TRUE; 493 MessageFormat& that = (MessageFormat&)rhs; 496 if (!Format::operator==(rhs) || [all...] |
/external/tinyxml/ |
tinyxml.h | 772 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; } 773 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; } 774 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; } [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
date.sgml | 503 @rhs: second date to compare 504 @Returns: 0 for equal, less than zero if @lhs is less than @rhs, 505 greater than zero if @lhs is greater than @rhs
|
/external/webkit/WebKit/chromium/src/js/ |
HeapProfilerPanel.js | 830 comparator = function(lhs, rhs) { 831 var l = lhs[property], r = rhs[property]; 833 l = lhs[property2], r = rhs[property2]; [all...] |
/external/e2fsprogs/intl/ |
plural.c | 493 # define YYLLOC_DEFAULT(Current, Rhs, N) \ 494 Current.last_line = Rhs[N].last_line; \ 495 Current.last_column = Rhs[N].last_column; 734 /* When reducing, the number of symbols on the RHS of the reduced [all...] |
/frameworks/base/libs/surfaceflinger/ |
LayerBase.h | 305 LayerBase(const LayerBase& rhs);
|
/external/elfutils/src/ |
ldscript.c | 383 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in 396 /* YYRHS -- A `-1'-separated list of the rules' RHS. */ 685 # define YYLLOC_DEFAULT(Current, Rhs, N) \ 686 ((Current).first_line = (Rhs)[1].first_line, \ 687 (Current).first_column = (Rhs)[1].first_column, \ 688 (Current).last_line = (Rhs)[N].last_line, \ 689 (Current).last_column = (Rhs)[N].last_column) [all...] |
/external/icu4c/i18n/unicode/ |
fmtable.h | 142 * @param rhs The Formattable object to copy into this object. 145 Formattable& operator=(const Formattable &rhs);
|
rbnf.h | 618 * @param rhs the object to be copied from. 621 RuleBasedNumberFormat(const RuleBasedNumberFormat& rhs); 625 * @param rhs the object to be copied from. 628 RuleBasedNumberFormat& operator=(const RuleBasedNumberFormat& rhs); [all...] |
/external/v8/test/mjsunit/ |
smi-ops.js | 232 // Smi input to bitop gives non-smi result where the rhs is a float that 239 // Smi input to bitop gives non-smi result where the rhs could be overwritten
|
/external/webkit/WebCore/html/ |
HTMLTableElement.cpp | 368 // void, above, below, hsides, vsides, lhs, rhs, box, border 386 } else if (equalIgnoringCase(attr->value(), "rhs")) {
|
/frameworks/base/tools/localize/ |
XLIFFFile.cpp | 442 compare_id(const TransUnit& lhs, const TransUnit& rhs) 447 StringResource::ParseTypedID(rhs.id, &rid, &rindex);
|
/external/bison/tests/ |
glr-regression.at | 1220 - Merged deferred actions (lookahead need and RHS from different stack 1609 /* Tests the case of an empty RHS that has inherited the location of the 1618 /* Tests the case of a non-empty RHS as well as the case of an empty RHS tha [all...] |
/external/dbus/dbus/ |
dbus-marshal-recursive.c | [all...] |
/external/v8/src/arm/ |
codegen-arm.cc | [all...] |
/external/quake/quake/src/WinQuake/ |
gl_rmain.cpp | 1045 void mulMM(float* r, const float* lhs, const float* rhs) 1049 register const float rhs_i0 = rhs[ I(i,0) ]; 1055 register const float rhs_ij = rhs[ I(i,j) ]; [all...] |
/external/bison/ |
TODO | 65 supporting `->' in addition to `:' to separate LHS and RHS. In other
|
/external/bison/src/ |
LR0.c | 110 for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp)
|
/external/gtest/test/ |
gtest_pred_impl_unittest.cc | 61 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } 63 bool operator==(const Bool& rhs) const { return value == rhs.value; } [all...] |