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

References

tools/clang/unittests/Tooling/StencilTest.cpp
  193   testExpr(Id, "3;", cat(node(Id)), "3");
  198   testExpr(Id, "3;", cat(ifBound(Id, text("5"), text("7"))), "5");
  203   testExpr(Id, "3;", cat(ifBound("other", text("5"), text("7"))), "7");
  208   testExpr(Id, "3;", cat(expression(Id)), "3");
  214   testExpr(Id, "(3);", cat(expression(Id)), "(3)");
  219   testExpr(Id, "3+4;", cat(expression(Id)), "(3+4)");
  233   testExpr(Id, "int *x; x;", cat(deref(Id)), "*x");
  238   testExpr(Id, "int *x; x + 1;", cat(deref(Id)), "*(x + 1)");
  243   testExpr(Id, "int x; &x;", cat(deref(Id)), "x");
  248   testExpr(Id, "int x; x;", cat(addressOf(Id)), "&x");
  253   testExpr(Id, "int *x; *x;", cat(addressOf(Id)), "x");
  262   testExpr(Id, Snippet, cat(access(Id, "field")), "x.field");
  271   testExpr(Id, Snippet, cat(access(Id, text("field"))), "x.field");
  280   testExpr(Id, Snippet, cat(access(Id, "field")), "x.field");
  289   testExpr(Id, Snippet, cat(access(Id, "field")), "x->field");
  298   testExpr(Id, Snippet, cat(access(Id, "field")), "x->field");
  348   testExpr(Id, "3;", cat(run(SimpleFn)), "Bound");