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

References

tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 3508   S += " {\n  unsigned long reserved;\n";
 3509   S += "  unsigned long Block_size;\n";
 3511     S += "  void (*copy)(struct ";
 3512     S += ImplTag; S += "*, struct ";
 3512     S += ImplTag; S += "*, struct ";
 3513     S += ImplTag; S += "*);\n";
 3513     S += ImplTag; S += "*);\n";
 3515     S += "  void (*dispose)(struct ";
 3516     S += ImplTag; S += "*);\n";
 3516     S += ImplTag; S += "*);\n";
 3518   S += "} ";
 3520   S += DescTag + "_DATA = { 0, sizeof(struct ";
 3521   S += ImplTag + ")";
 3523     S += ", __" + FunName.str() + "_block_copy_" + utostr(i);
 3524     S += ", __" + FunName.str() + "_block_dispose_" + utostr(i);
 3526   S += "};\n";
 3527   return S;