Home | History | Annotate | Download | only in Sema

Lines Matching refs:uop

68       if (UnaryOperator *uop = dyn_cast<UnaryOperator>(e)) {
69 assert(uop->getOpcode() == UO_Extension);
70 e = rebuild(uop->getSubExpr());
71 return new (S.Context) UnaryOperator(e, uop->getOpcode(),
72 uop->getType(),
73 uop->getValueKind(),
74 uop->getObjectKind(),
75 uop->getOperatorLoc());
1433 if (UnaryOperator *uop = dyn_cast<UnaryOperator>(syntax)) {
1434 Expr *op = stripOpaqueValuesFromPseudoObjectRef(*this, uop->getSubExpr());
1435 return new (Context) UnaryOperator(op, uop->getOpcode(), uop->getType(),
1436 uop->getValueKind(), uop->getObjectKind(),
1437 uop->getOperatorLoc());