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

Declarations

tools/clang/include/clang/Tooling/Transformer/Stencil.h
  177 StencilPart ifBound(llvm::StringRef Id, StencilPart TruePart,

References

tools/clang/include/clang/Tooling/Transformer/Stencil.h
  184   return ifBound(Id, text(TrueText), text(FalseText));
tools/clang/unittests/Tooling/StencilTest.cpp
  198   testExpr(Id, "3;", cat(ifBound(Id, text("5"), text("7"))), "5");
  203   testExpr(Id, "3;", cat(ifBound("other", text("5"), text("7"))), "7");
  405   auto S = cat(ifBound("Id", text("trueText"), access("exprId", "memberData")));
  419                ifBound("x", text("t"), access("e", "f")));