• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/generic/

Lines Matching refs:clopt

3658     XOTclClassOpt *clopt = cl ? cl->opt : NULL;
3659 if (clopt) {
3660 XOTclCmdList *del = CmdListFindCmdInList(cmd, clopt->isObjectMixinOf);
3664 del = CmdListRemoveFromList(&clopt->isObjectMixinOf, del);
3675 XOTclClassOpt *clopt = cl ? cl->opt : NULL;
3676 if (clopt) {
3677 XOTclCmdList *del = CmdListFindCmdInList(cmd, clopt->instmixins);
3681 del = CmdListRemoveFromList(&clopt->instmixins, del);
7729 XOTclClassOpt *clopt = cl->opt;
7734 softrecreate,recreate,clopt); */
7736 /* do this even with no clopt, since the class might be used as a
7737 superclass of a per object mixin, so it has no clopt...
7742 if (clopt) {
7746 RemoveFromClassMixinsOf(clopt->id, clopt->instmixins);
7748 CmdListRemoveList(&clopt->instmixins, GuardDel);
7751 CmdListRemoveList(&clopt->instfilters, GuardDel);
7759 RemoveFromMixins(clopt->id, clopt->isObjectMixinOf);
7760 CmdListRemoveList(&clopt->isObjectMixinOf, GuardDel);
7766 RemoveFromInstmixins(clopt->id, clopt->isClassMixinOf);
7767 CmdListRemoveList(&clopt->isClassMixinOf, GuardDel);
7771 AssertionRemoveStore(clopt->assertions);
7772 clopt->assertions = NULL;
7829 if ((clopt) && (!recreate)) {
7830 if (clopt->parameterClass) {
7831 DECR_REF_COUNT(clopt->parameterClass);
7833 FREE(XOTclClassOpt, clopt);
7834 clopt = cl->opt = 0;
8364 XOTclClassOpt *clopt = pl->cl->opt;
8365 if (clopt && clopt->instmixins) {
8367 &clopt->instmixins,
10017 XOTclClassOpt *clopt = NULL;
10055 clopt = XOTclRequireClassOpt(cl);
10083 clopt = cl ? cl->opt : NULL;
10084 if (clopt) {
10085 del = CmdListFindCmdInList(obj->id, clopt->isObjectMixinOf);
10089 del = CmdListRemoveFromList(&clopt->isObjectMixinOf, del);
10146 if (clopt->instmixins) {
10147 RemoveFromClassMixinsOf(cl->object.id, clopt->instmixins);
10148 CmdListRemoveList(&clopt->instmixins, GuardDel);
10159 if (MixinAdd(interp, &clopt->instmixins, ov[i]) != TCL_OK) {
10179 if (clopt->instfilters) CmdListRemoveList(&clopt->instfilters, GuardDel);
10184 if (FilterAdd(interp, &clopt->instfilters, ov[i], 0, cl) != TCL_OK)