Home | History | Annotate | Download | only in Sema

Lines Matching refs:uop

69       if (UnaryOperator *uop = dyn_cast<UnaryOperator>(e)) {
70 assert(uop->getOpcode() == UO_Extension);
71 e = rebuild(uop->getSubExpr());
72 return new (S.Context) UnaryOperator(e, uop->getOpcode(),
73 uop->getType(),
74 uop->getValueKind(),
75 uop->getObjectKind(),
76 uop->getOperatorLoc());
1606 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(syntax)) {
1607 Expr *op = stripOpaqueValuesFromPseudoObjectRef(*this, uop->getSubExpr());
1608 return new (Context) UnaryOperator(op, uop->getOpcode(), uop->getType(),
1609 uop->getValueKind(), uop->getObjectKind(),
1610 uop->getOperatorLoc());