Home
last modified time | relevance | path

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

/system/tools/hidl/c2hal/
DExpression.cpp137 : mOp(op), mRhs(rhs) in UnaryExpression()
140 delete mRhs; in ~UnaryExpression()
144 return mRhs->getType(ast); in getType()
147 return mOp + mRhs->toString(atomCase); in toString()
152 Expression* mRhs; member
159 : mLhs(lhs), mOp(op), mRhs(rhs) in BinaryExpression()
163 delete mRhs; in ~BinaryExpression()
167 return coalesceTypes(mLhs->getType(ast), mRhs->getType(ast)); in getType()
170 return mLhs->toString(atomCase) + " " + mOp + " " + mRhs->toString(atomCase); in toString()
176 Expression* mRhs; member
[all …]