Home
last modified time | relevance | path

Searched refs:mRhs (Results 1 – 1 of 1) sorted by relevance

/system/tools/hidl/c2hal/
DExpression.cpp135 : mOp(op), mRhs(rhs) in UnaryExpression()
138 delete mRhs; in ~UnaryExpression()
142 return mRhs->getType(ast); in getType()
145 return mOp + mRhs->toString(atomCase); in toString()
150 Expression* mRhs; member
157 : mLhs(lhs), mOp(op), mRhs(rhs) in BinaryExpression()
161 delete mRhs; in ~BinaryExpression()
165 return coalesceTypes(mLhs->getType(ast), mRhs->getType(ast)); in getType()
168 return mLhs->toString(atomCase) + " " + mOp + " " + mRhs->toString(atomCase); in toString()
174 Expression* mRhs; member
[all …]