Lines Matching refs:Constructor

4182   std::string Constructor = "  " + Tag;  in SynthesizeBlockImpl()  local
4188 Constructor += "(void *fp, "; // Invoke function pointer. in SynthesizeBlockImpl()
4189 Constructor += "struct " + Desc; // Descriptor pointer. in SynthesizeBlockImpl()
4190 Constructor += " *desc"; in SynthesizeBlockImpl()
4211 Constructor += ", void *" + ArgName; in SynthesizeBlockImpl()
4218 Constructor += ", " + ArgName; in SynthesizeBlockImpl()
4234 Constructor += ", " + ArgName; in SynthesizeBlockImpl()
4239 Constructor += ", int flags=0)"; in SynthesizeBlockImpl()
4246 Constructor += " : "; in SynthesizeBlockImpl()
4250 Constructor += ", "; in SynthesizeBlockImpl()
4252 Constructor += Name + "((struct __block_impl *)_" + Name + ")"; in SynthesizeBlockImpl()
4254 Constructor += Name + "(_" + Name + ")"; in SynthesizeBlockImpl()
4261 Constructor += " : "; in SynthesizeBlockImpl()
4265 Constructor += ", "; in SynthesizeBlockImpl()
4266 Constructor += Name + "(_" + Name + "->__forwarding)"; in SynthesizeBlockImpl()
4269 Constructor += " {\n"; in SynthesizeBlockImpl()
4271 Constructor += " impl.isa = &_NSConcreteGlobalBlock;\n"; in SynthesizeBlockImpl()
4273 Constructor += " impl.isa = &_NSConcreteStackBlock;\n"; in SynthesizeBlockImpl()
4274 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n"; in SynthesizeBlockImpl()
4276 Constructor += " Desc = desc;\n"; in SynthesizeBlockImpl()
4279 Constructor += ", int flags=0) {\n"; in SynthesizeBlockImpl()
4281 Constructor += " impl.isa = &_NSConcreteGlobalBlock;\n"; in SynthesizeBlockImpl()
4283 Constructor += " impl.isa = &_NSConcreteStackBlock;\n"; in SynthesizeBlockImpl()
4284 Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n"; in SynthesizeBlockImpl()
4285 Constructor += " Desc = desc;\n"; in SynthesizeBlockImpl()
4287 Constructor += " "; in SynthesizeBlockImpl()
4288 Constructor += "}\n"; in SynthesizeBlockImpl()
4289 S += Constructor; in SynthesizeBlockImpl()