reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
72 llvm::Optional<std::string> buildDot(const Expr &E, const ASTContext &Context);
210 : tooling::buildDot(*E, *Match.Context))
tools/clang/unittests/Tooling/SourceCodeBuildersTest.cpp192 testBuilder(buildDot, "S x; x;", "x."); 196 testBuilder(buildDot, "S *x; *x;", "x->"); 200 testBuilder(buildDot, "S *x; *(x);", "x->"); 204 testBuilder(buildDot, "S x; x + x;", "(x + x)."); 208 testBuilder(buildDot, "S *x; *(x + 1);", "(x + 1)->");