Searched refs:otherPtr (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/generic/
H A Dfifo2.c215 struct ChannelInstance* otherPtr; /* Reference to the other side of the
349 chan->otherPtr->eof = 1;
366 chan->otherPtr->lock = (ChannelLock*) NULL;
370 chan->otherPtr->rQueue = (Buf_BufferQueue) NULL;
371 chan->otherPtr->wQueue = (Buf_BufferQueue) NULL;
379 chan->otherPtr->otherPtr = (ChannelInstance*) NULL;
380 Tcl_Free ((char*) chan->otherPtr);
382 chan->otherPtr = (ChannelInstance*) NULL;
900 instanceA->otherPtr
214 struct ChannelInstance* otherPtr; /* Reference to the other side of the member in struct:ChannelInstance
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkWindow.c2531 TkWindow *otherPtr = (TkWindow *) other;
2535 * top-level ancestor of otherPtr and restack winPtr above otherPtr
2540 while ((otherPtr != NULL) && !(otherPtr->flags & TK_TOP_HIERARCHY)) {
2541 otherPtr = otherPtr->parentPtr;
2543 TkWmRestackToplevel(winPtr, aboveBelow, otherPtr);
2548 * Find an ancestor of otherPtr that is a sibling of winPtr.
2558 if (otherPtr
2506 TkWindow *otherPtr = (TkWindow *) other; local
[all...]
H A DtkTextBTree.c4203 register Node *otherPtr;
4242 for (otherPtr = nodePtr->parentPtr->children.nodePtr;
4243 otherPtr->nextPtr != nodePtr;
4244 otherPtr = otherPtr->nextPtr) {
4247 nodePtr = otherPtr;
4249 otherPtr = nodePtr->nextPtr;
4258 totalChildren = nodePtr->numChildren + otherPtr->numChildren;
4261 nodePtr->children = otherPtr->children;
4262 otherPtr
4163 register Node *otherPtr; local
[all...]
H A DtkPack.c1462 Packer *masterPtr, *slavePtr, *prevPtr, *otherPtr;
1568 otherPtr = GetPacker(other);
1569 if (otherPtr->masterPtr == NULL) {
1572 masterPtr = otherPtr->masterPtr;
1574 if (prevPtr == otherPtr) {
1577 while (prevPtr->nextPtr != otherPtr) {
1449 Packer *masterPtr, *slavePtr, *prevPtr, *otherPtr; local
H A DtkGrid.c3334 struct Gridder *otherPtr;
3378 otherPtr = GetGrid(other);
3379 lastRow = otherPtr->row + otherPtr->numRows - 2;
3380 lastColumn = otherPtr->column + otherPtr->numCols;
3308 struct Gridder *otherPtr; local
H A DtkIntDecls.h577 TkWindow *otherPtr);
1143 void (*tkWmRestackToplevel) (TkWindow *winPtr, int aboveBelow, TkWindow *otherPtr); /* 95 */
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkWindow.c2524 TkWindow *otherPtr = (TkWindow *) other;
2528 * the top-level ancestor of otherPtr and restack winPtr above
2529 * otherPtr without changing any of Tk's childLists.
2533 while ((otherPtr != NULL) && !(otherPtr->flags & TK_TOP_HIERARCHY)) {
2534 otherPtr = otherPtr->parentPtr;
2536 TkWmRestackToplevel(winPtr, aboveBelow, otherPtr);
2541 * Find an ancestor of otherPtr that is a sibling of winPtr.
2551 if (otherPtr
2500 TkWindow *otherPtr = (TkWindow *) other; local
[all...]
H A DtkTextBTree.c3072 register Node *otherPtr;
3111 for (otherPtr = nodePtr->parentPtr->children.nodePtr;
3112 otherPtr->nextPtr != nodePtr;
3113 otherPtr = otherPtr->nextPtr) {
3116 nodePtr = otherPtr;
3118 otherPtr = nodePtr->nextPtr;
3128 totalChildren = nodePtr->numChildren + otherPtr->numChildren;
3131 nodePtr->children = otherPtr->children;
3132 otherPtr
3043 register Node *otherPtr; local
[all...]
H A DtkPack.c1484 Packer *masterPtr, *slavePtr, *prevPtr, *otherPtr;
1587 otherPtr = GetPacker(other);
1588 if (otherPtr->masterPtr == NULL) {
1591 masterPtr = otherPtr->masterPtr;
1593 if (prevPtr == otherPtr) {
1596 while (prevPtr->nextPtr != otherPtr) {
1471 Packer *masterPtr, *slavePtr, *prevPtr, *otherPtr; local
H A DtkGrid.c3002 struct Gridder *otherPtr;
3046 otherPtr = GetGrid(other);
3047 lastRow = otherPtr->row + otherPtr->numRows - 2;
3048 lastColumn = otherPtr->column + otherPtr->numCols;
2977 struct Gridder *otherPtr; local
H A DtkIntDecls.h323 int aboveBelow, TkWindow * otherPtr));
671 void (*tkWmRestackToplevel) _ANSI_ARGS_((TkWindow * winPtr, int aboveBelow, TkWindow * otherPtr)); /* 95 */
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclVar.c3551 Var *otherPtr, *arrayPtr;
3568 otherPtr = TclObjLookupVar(interp, otherP1Ptr, otherP2,
3574 if (otherPtr == NULL) {
3588 : (TclIsVarInHash(otherPtr) && TclGetVarNsPtr(otherPtr)))
3601 return TclPtrObjMakeUpvar(interp, otherPtr, myNamePtr, myFlags, index);
3629 Var *otherPtr, /* Pointer to the variable being linked-to. */
3646 result = TclPtrObjMakeUpvar(interp, otherPtr, myNamePtr, myFlags, index);
3657 Var *otherPtr, /* Pointer to the variable being linked-to. */
3718 if (varPtr == otherPtr) {
3522 Var *otherPtr, *arrayPtr; local
3596 TclPtrMakeUpvar( Tcl_Interp *interp, Var *otherPtr, const char *myName, int myFlags, int index) argument
3624 TclPtrObjMakeUpvar( Tcl_Interp *interp, Var *otherPtr, Tcl_Obj *myNamePtr, int myFlags, int index) argument
[all...]
H A DtclExecute.c3465 Var *varPtr, *otherPtr;
3480 otherPtr = TclObjLookupVarEx(interp, OBJ_AT_TOS, NULL,
3484 if (otherPtr) {
3495 otherPtr = TclObjLookupVarEx(interp, OBJ_AT_TOS, NULL,
3498 if (otherPtr) {
3503 TclSetVarNamespaceVar(otherPtr);
3524 otherPtr = TclObjLookupVarEx(interp, OBJ_AT_TOS, NULL,
3528 if (otherPtr) {
3546 if ((varPtr != otherPtr) && !TclIsVarTraced(varPtr)
3555 if (linkPtr == otherPtr) {
3453 Var *varPtr, *otherPtr; local
[all...]
H A DtclNamesp.c4502 Var *otherPtr, *arrayPtr;
4525 otherPtr = TclObjLookupVarEx(interp, objv[0], NULL,
4529 if (otherPtr == NULL) {
4534 * Create the new variable and link it to otherPtr.
4538 if (TclPtrMakeUpvar(interp, otherPtr, myName, 0, -1) != TCL_OK) {
4452 Var *otherPtr, *arrayPtr; local
H A DtclInt.h3340 MODULE_SCOPE int TclPtrObjMakeUpvar(Tcl_Interp *interp, Var *otherPtr,
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXWm.c4016 TkWindow *otherPtr;
4024 otherPtr = TkpGetOtherWindow(winPtr);
4025 if (otherPtr == NULL) {
4055 winPtr = otherPtr;
4468 * WinPtr gets restacked as specified by aboveBelow and otherPtr. This
4480 TkWindow *otherPtr) /* Window relative to which to restack; if
4509 if (otherPtr != NULL) {
4510 if (otherPtr->window == None) {
4511 Tk_MakeWindowExist((Tk_Window) otherPtr);
4513 if (otherPtr
3966 TkWindow *otherPtr; local
4420 TkWmRestackToplevel( TkWindow *winPtr, int aboveBelow, TkWindow *otherPtr) argument
[all...]
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXWm.c3789 TkWindow *otherPtr = TkpGetOtherWindow(winPtr);
3791 if (otherPtr != NULL) {
3796 winPtr = otherPtr;
4254 * WinPtr gets restacked as specified by aboveBelow and otherPtr.
4266 TkWindow *otherPtr) /* Window relative to which to restack;
4297 if (otherPtr != NULL) {
4298 if (otherPtr->window == None) {
4299 Tk_MakeWindowExist((Tk_Window) otherPtr);
4301 if (otherPtr->wmInfoPtr->flags & WM_NEVER_MAPPED) {
4302 TkWmMapWindow(otherPtr);
3741 TkWindow *otherPtr = TkpGetOtherWindow(winPtr); local
4208 TkWmRestackToplevel( TkWindow *winPtr, int aboveBelow, TkWindow *otherPtr) argument
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclVar.c3601 Var *otherPtr, *varPtr, *arrayPtr;
3615 otherPtr = TclObjLookupVar(interp, otherP1Ptr, otherP2,
3621 if (otherPtr == NULL) {
3638 if (((otherP2 ? arrayPtr->nsPtr : otherPtr->nsPtr) == NULL)
3666 if (varPtr == otherPtr) {
3679 * isn't the same as "otherPtr" (avoid circular links). Also, if
3686 if (linkPtr == otherPtr) {
3701 varPtr->value.linkPtr = otherPtr;
3702 otherPtr->refCount++;
3568 Var *otherPtr, *varPtr, *arrayPtr; local
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixWm.c5235 TkWindow *otherPtr;
5240 otherPtr = TkpGetOtherWindow(winPtr);
5241 if (otherPtr == NULL) {
5265 winPtr = otherPtr;
5961 * WinPtr gets restacked as specified by aboveBelow and otherPtr.
5967 TkWmRestackToplevel(winPtr, aboveBelow, otherPtr)
5971 TkWindow *otherPtr; /* Window relative to which to restack;
5991 if (otherPtr != NULL) {
5996 if (otherPtr->wmInfoPtr->flags & WM_NEVER_MAPPED) {
5997 TkWmMapWindow(otherPtr);
5178 TkWindow *otherPtr; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinWm.c6410 * WinPtr gets restacked as specified by aboveBelow and otherPtr.
6418 TkWmRestackToplevel(winPtr, aboveBelow, otherPtr)
6422 TkWindow *otherPtr; /* Window relative to which to restack;
6442 if (otherPtr != NULL) {
6443 if (otherPtr->window == None) {
6444 Tk_MakeWindowExist((Tk_Window) otherPtr);
6446 if (otherPtr->wmInfoPtr->flags & WM_NEVER_MAPPED) {
6447 TkWmMapWindow(otherPtr);
6449 insertAfter = (otherPtr->wmInfoPtr->wrapper != NULL)
6450 ? otherPtr
[all...]
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixWm.c5715 TkWindow *otherPtr;
5720 otherPtr = TkpGetOtherWindow(winPtr);
5721 if (otherPtr == NULL) {
5745 winPtr = otherPtr;
6452 * WinPtr gets restacked as specified by aboveBelow and otherPtr.
6462 TkWindow *otherPtr) /* Window relative to which to restack; if
6483 if (otherPtr != NULL) {
6489 if (otherPtr->wmInfoPtr->flags & WM_NEVER_MAPPED) {
6490 TkWmMapWindow(otherPtr);
6492 changes.sibling = otherPtr
5651 TkWindow *otherPtr; local
6385 TkWmRestackToplevel( TkWindow *winPtr, int aboveBelow, TkWindow *otherPtr) argument
[all...]
/macosx-10.10/tcl-105/tk/tk/win/
H A DtkWinWm.c6888 * WinPtr gets restacked as specified by aboveBelow and otherPtr. This
6900 TkWindow *otherPtr) /* Window relative to which to restack; if
6920 if (otherPtr != NULL) {
6921 if (otherPtr->window == None) {
6922 Tk_MakeWindowExist((Tk_Window) otherPtr);
6924 if (otherPtr->wmInfoPtr->flags & WM_NEVER_MAPPED) {
6925 TkWmMapWindow(otherPtr);
6927 insertAfter = (otherPtr->wmInfoPtr->wrapper != NULL)
6928 ? otherPtr->wmInfoPtr->wrapper : Tk_GetHWND(otherPtr
6820 TkWmRestackToplevel( TkWindow *winPtr, int aboveBelow, TkWindow *otherPtr) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A Dxotcl.c8974 Var *varPtr = NULL, *otherPtr = NULL, *arrayPtr; local
8988 otherPtr = XOTclObjLookupVar(interp, varName, (char *) NULL, flgs, "define",
8992 if (otherPtr == NULL) {
9064 if (varPtr == otherPtr)
9071 if (linkPtr == otherPtr) {
9100 vPtr->value.linkPtr = (Var85 *)otherPtr;
9102 varPtr->value.linkPtr = otherPtr;
9105 varPtr->value.linkPtr = otherPtr;
9107 VarHashRefCount(otherPtr)++;

Completed in 679 milliseconds