• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/swig-12/Source/Swig/

Lines Matching refs:call

199       /* When using compactdefaultargs, the code generated initialises a variable via a constructor call that accepts the
255 * function call.
286 /* Now print out function call */
599 * find the unref call, if any.
618 * find the ref call, if any.
647 String *call = NewStringf("free((char *) %s);", pname);
649 return call;
668 String *call = NewStringf("delete %s;", pname);
670 return call;
720 String *call;
728 call = Swig_wrapped_var_assign(t, "", varcref);
729 Printf(func, "%s (%s%s)", call, self, name);
731 Delete(call);
841 String *call = 0;
846 /* Call the explicit method rather than allow for a polymorphic call */
850 /* If protected access (can only be if a director method) then call the extra public accessor method (language module must provide this) */
860 call = Swig_cmethod_call(explicitcall_name ? explicitcall_name : name, p, self, explicit_qualifier, director_type);
861 cres = Swig_cresult(Getattr(n, "type"), "result", call);
871 /* Create two method calls, one to call the explicit method, the other a normal polymorphic function call */
885 Delete(call);
951 String *call = Swig_cfunction_call(mangled, p);
952 String *cres = Swig_cresult(Getattr(n, "type"), "result", call);
954 Delete(call);
1044 String *call;
1063 call = Swig_cfunction_call(mangled, parms);
1064 cres = Swig_cresult(type, "result", call);
1067 Delete(call);
1123 String *call = Swig_cppconstructor_call(classname, parms);
1124 String *cres = Swig_cresult(type, "result", call);
1127 Delete(call);
1130 String *call = Swig_cconstructor_call(classname);
1131 String *cres = Swig_cresult(type, "result", call);
1134 Delete(call);
1167 String *call;
1175 call = Swig_cfunction_call(mangled, p);
1176 cres = NewStringf("%s;", call);
1180 Delete(call);
1184 String *call = Swig_cppdestructor_call(n);
1185 String *cres = NewStringf("%s", call);
1187 Delete(call);
1190 String *call = Swig_cdestructor_call(n);
1191 String *cres = NewStringf("%s", call);
1193 Delete(call);
1210 int Swig_MembersetToFunction(Node *n, String *classname, int flags, String **call) {
1264 *call = Swig_cfunction_call(mangled, parms);
1265 cres = NewStringf("%s;", *call);
1270 *call = Swig_cmemberset_call(name, type, self, varcref);
1271 cres = NewStringf("%s;", *call);
1335 String *call;
1343 call = Swig_cfunction_call(mangled, parms);
1344 cres = Swig_cresult(ty, "result", call);
1347 Delete(call);
1349 String *call = Swig_cmemberget_call(name, type, self, varcref);
1350 String *cres = Swig_cresult(ty, "result", call);
1352 Delete(call);
1389 String *call = Swig_cfunction_call(mangled, parms);
1390 String *cres = NewStringf("%s;", call);
1393 Delete(call);
1400 String *call = NewStringf("%s = %s;", nname, dref);
1401 Setattr(n, "wrap:action", call);
1402 Delete(call);
1407 String *call = NewStringf("if (sizeof(int) == sizeof(%s)) *(int*)(void*)&(%s) = %s;", nname, nname, pname);
1408 Setattr(n, "wrap:action", call);
1410 Delete(call);
1429 String *cres, *call;
1443 call = Swig_cfunction_call(mangled, 0);
1444 cres = Swig_cresult(ty, "result", call);
1450 call = Swig_wrapped_var_assign(type, nname, varcref);
1451 cres = Swig_cresult(ty, "result", call);
1459 Delete(call);