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

References

tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
 4960     return S;
 4962   S = "static void __Block_byref_id_object_copy_";
 4963   S += utostr(flag);
 4964   S += "(void *dst, void *src) {\n";
 4974   S += " _Block_object_assign((char*)dst + ";
 4975   S += utostr(offset);
 4976   S += ", *(void * *) ((char*)src + ";
 4977   S += utostr(offset);
 4978   S += "), ";
 4979   S += utostr(flag);
 4980   S += ");\n}\n";
 4982   S += "static void __Block_byref_id_object_dispose_";
 4983   S += utostr(flag);
 4984   S += "(void *src) {\n";
 4985   S += " _Block_object_dispose(*(void * *) ((char*)src + ";
 4986   S += utostr(offset);
 4987   S += "), ";
 4988   S += utostr(flag);
 4989   S += ");\n}\n";
 4990   return S;