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

Declarations

tools/clang/include/clang/Tooling/Transformer/SourceCodeBuilders.h
   63 llvm::Optional<std::string> buildAddressOf(const Expr &E,

References

tools/clang/lib/Tooling/Transformer/Stencil.cpp
  180     Source = tooling::buildAddressOf(*E, *Match.Context);
tools/clang/unittests/Tooling/SourceCodeBuildersTest.cpp
  160   testBuilder(buildAddressOf, "S x; x;", "&x");
  164   testBuilder(buildAddressOf, "S *x; *x;", "x");
  168   testBuilder(buildAddressOf, "S *x; *(x);", "x");
  172   testBuilder(buildAddressOf, "S x; x + x;", "&(x + x)");