Searched refs:rhs (Results 226 - 250 of 341) sorted by relevance

1234567891011>>

/external/tinyxml/
H A Dtinyxml.h772 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; }
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/llvm/lib/TableGen/
H A DRecord.cpp874 Init *rhs, RecTy *Type) {
883 Key TheKey(std::make_pair(std::make_pair(std::make_pair(opc, lhs), rhs),
887 if (!I) I = new BinOpInit(opc, lhs, rhs, Type);
966 Init *rhs = RHS->resolveReferences(R, RV); local
968 if (LHS != lhs || RHS != rhs)
969 return (BinOpInit::get(getOpcode(), lhs, rhs, getType()))->Fold(&R, 0);
987 Init *mhs, Init *rhs,
1004 rhs));
1007 if (!I) I = new TernOpInit(opc, lhs, mhs, rhs, Type);
1232 Init *rhs local
873 get(BinaryOp opc, Init *lhs, Init *rhs, RecTy *Type) argument
986 get(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, RecTy *Type) argument
1240 Init *rhs = RHS->resolveReferences(R, RV); local
[all...]
/external/icu4c/test/intltest/
H A Ditrbnf.cpp823 llong rhs = *values[j];
828 LLAssert((n *= rhs) == ans);
832 LLAssert((n * rhs) == ans);
858 const llong* tuples[] = { // lhs, rhs, ans
895 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
899 if (!((n /= rhs) == ans)) {
900 errln("fail: (n /= rhs) == ans");
905 LLAssert((n / rhs) == ans);
975 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
979 if (!((n %= rhs)
[all...]
/external/llvm/lib/Target/CellSPU/
H A DSPUISelDAGToDAG.cpp1138 SDValue rhs = i64vec.getOperand(1); local
1150 if (rhs.getOpcode() == ISD::BITCAST) {
1151 ReplaceUses(rhs, rhs.getOperand(0));
1152 rhs = rhs.getOperand(0);
1155 SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
1156 ? rhs.getNode()
1157 : emitBuildVector(rhs.getNode()));
/external/emma/core/java12/com/vladium/jcd/cls/
H A DClassDef.java689 final MethodDescriptor rhs = (MethodDescriptor) obj;
691 int result = m_name.compareTo (rhs.m_name);
693 result = m_descriptor.compareTo (rhs.m_descriptor);
/external/llvm/utils/lit/lit/
H A DTestRunner.py95 return executeShCmd(cmd.rhs, cfg, cwd, results)
103 res = executeShCmd(cmd.rhs, cfg, cwd, results)
111 res = executeShCmd(cmd.rhs, cfg, cwd, results)
/external/mesa3d/src/glsl/
H A Dir.h628 ir_assignment(ir_rvalue *lhs, ir_rvalue *rhs, ir_rvalue *condition);
637 ir_assignment(ir_dereference *lhs, ir_rvalue *rhs, ir_rvalue *condition,
686 ir_rvalue *rhs; member in class:ir_assignment
702 * the value from a consecutive channel of the rhs. For example,
H A Dloop_controls.cpp70 return (assign->condition != NULL) ? NULL : assign->rhs;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h421 // rhs. In particular, this function:
426 bool AlmostEquals(const FloatingPoint& rhs) const {
429 if (is_nan() || rhs.is_nan()) return false;
431 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon.h192 bool operator()(const std::string& lhs, const std::string& rhs) const {
193 return (::_stricmp(lhs.c_str(), rhs.c_str()) < 0);
H A Dhttpcommon.cc87 inline Enum& operator=(E rhs) { val = rhs; return *this; } argument
91 inline Enum& operator=(const std::string& rhs) { assign(rhs); return *this; } argument
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h51 OptionalFlag& operator=(const bool &rhs) { argument
52 flag = rhs;
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp118 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs) argument
119 : Op(op), LHS(lhs), RHS(rhs) {}
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml38 | Ast.Binary (op, lhs, rhs) ->
49 (* Codegen the rhs. *)
50 let val_ = codegen_expr rhs in
60 let rhs_val = codegen_expr rhs in
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h259 SCEVUDivExpr(const FoldingSetNodeIDRef ID, const SCEV *lhs, const SCEV *rhs) argument
260 : SCEV(ID, scUDivExpr), LHS(lhs), RHS(rhs) {}
/external/oprofile/libutil++/
H A Dop_bfd.cpp89 bool op_bfd_symbol::operator<(op_bfd_symbol const & rhs) const
91 return filepos() < rhs.filepos();
/external/dbus/dbus/
H A Ddbus-marshal-recursive-util.c49 DBusBasicValue *rhs)
55 return strcmp (lhs->str, rhs->str) == 0;
60 return lhs->u64 == rhs->u64;
62 return lhs->u64.first32 == rhs->u64.first32 &&
63 lhs->u64.second32 == rhs->u64.second32;
70 DBusTypeReader *rhs)
76 rhs_type = _dbus_type_reader_get_current_type (rhs);
93 _dbus_type_reader_read_basic (rhs, &rhs_value);
103 _dbus_type_reader_recurse (rhs, &rhs_sub);
113 * @param rhs reade
47 basic_value_equal(int type, DBusBasicValue *lhs, DBusBasicValue *rhs) argument
69 equal_values_helper(DBusTypeReader *lhs, DBusTypeReader *rhs) argument
117 _dbus_type_reader_equal_values(const DBusTypeReader *lhs, const DBusTypeReader *rhs) argument
[all...]
/external/bison/src/
H A DLR0.c110 for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp)
/external/bluetooth/glib/glib/
H A Dgdate.h226 const GDate *rhs);
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete.h505 void CopyFrom(const AutocompleteResult& rhs);
/external/chromium/chrome/browser/
H A Dcookies_tree_model.cc78 const CookieTreeNode* rhs) {
84 CanonicalizeHost(rhs->GetTitle()));
481 const CookieTreeNode* lhs, const CookieTreeNode* rhs) {
485 static_cast<const CookieTreeNode*>(rhs);
77 operator ()(const CookieTreeNode* lhs, const CookieTreeNode* rhs) argument
480 operator ()( const CookieTreeNode* lhs, const CookieTreeNode* rhs) argument
/external/chromium/net/base/
H A Dx509_certificate.h75 bool operator() (X509Certificate* lhs, X509Certificate* rhs) const;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml20 | Ast.Binary (op, lhs, rhs) ->
22 let rhs_val = codegen_expr rhs in
/external/llvm/include/llvm/ADT/
H A DHashing.h97 friend bool operator==(const hash_code &lhs, const hash_code &rhs) { argument
98 return lhs.value == rhs.value;
100 friend bool operator!=(const hash_code &lhs, const hash_code &rhs) { argument
101 return lhs.value != rhs.value;

Completed in 365 milliseconds

1234567891011>>