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

References

tools/clang/include/clang/AST/Expr.h
 2117     return isPostfix() ? Val->getBeginLoc() : getOperatorLoc();
 2120     return isPostfix() ? getOperatorLoc() : Val->getEndLoc();
tools/clang/lib/AST/JSONNodeDumper.cpp
 1150   JOS.attribute("isPostfix", UO->isPostfix());
tools/clang/lib/AST/StmtPrinter.cpp
 1206   if (!Node->isPostfix()) {
 1227   if (Node->isPostfix())
tools/clang/lib/AST/TextNodeDumper.cpp
  801   OS << " " << (Node->isPostfix() ? "postfix" : "prefix") << " '"
tools/clang/lib/Sema/SemaOpenMP.cpp
 8360           IsPostfixUpdate = AtomicUnaryOp->isPostfix();
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
 1153       state = state->BindExpr(U, LCtx, U->isPostfix() ? V2 : Result);