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

References

tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 4114     return S;
 4116   S = "static void __Block_byref_id_object_copy_";
 4117   S += utostr(flag);
 4118   S += "(void *dst, void *src) {\n";
 4128   S += " _Block_object_assign((char*)dst + ";
 4129   S += utostr(offset);
 4130   S += ", *(void * *) ((char*)src + ";
 4131   S += utostr(offset);
 4132   S += "), ";
 4133   S += utostr(flag);
 4134   S += ");\n}\n";
 4136   S += "static void __Block_byref_id_object_dispose_";
 4137   S += utostr(flag);
 4138   S += "(void *src) {\n";
 4139   S += " _Block_object_dispose(*(void * *) ((char*)src + ";
 4140   S += utostr(offset);
 4141   S += "), ";
 4142   S += utostr(flag);
 4143   S += ");\n}\n";
 4144   return S;