Home
last modified time | relevance | path

Searched refs:buildAddressOf (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/unittests/Tooling/
H A DSourceCodeBuildersTest.cpp230 testBuilder(buildAddressOf, "S x; x;", "&x"); in TEST()
234 testBuilder(buildAddressOf, "S *x; *x;", "x"); in TEST()
238 testBuilder(buildAddressOf, "S *x; *(x);", "x"); in TEST()
242 testBuilder(buildAddressOf, "S x; x + x;", "&(x + x)"); in TEST()
258 EXPECT_THAT(buildAddressOf(*StmtMatch->Result.Nodes.getNodeAs<Expr>("expr"), in TEST()
/llvm-project-15.0.7/clang/include/clang/Tooling/Transformer/
H A DSourceCodeBuilders.h72 llvm::Optional<std::string> buildAddressOf(const Expr &E,
/llvm-project-15.0.7/clang/lib/Tooling/Transformer/
H A DStencil.cpp181 Source = tooling::buildAddressOf(*E, *Match.Context); in eval()
198 Source = tooling::buildAddressOf(*E, *Match.Context); in eval()
H A DSourceCodeBuilders.cpp106 llvm::Optional<std::string> tooling::buildAddressOf(const Expr &E, in buildAddressOf() function in tooling