reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExpr.cpp
12627   case tok::plusplus:     Opc = UO_PreInc; break;
12628   case tok::minusminus:   Opc = UO_PreDec; break;
12629   case tok::amp:          Opc = UO_AddrOf; break;
12630   case tok::star:         Opc = UO_Deref; break;
12631   case tok::plus:         Opc = UO_Plus; break;
12632   case tok::minus:        Opc = UO_Minus; break;
12633   case tok::tilde:        Opc = UO_Not; break;
12634   case tok::exclaim:      Opc = UO_LNot; break;
12635   case tok::kw___real:    Opc = UO_Real; break;
12636   case tok::kw___imag:    Opc = UO_Imag; break;
12637   case tok::kw___extension__: Opc = UO_Extension; break;
12639   return Opc;