• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/

Lines Matching defs:firstChild

41     TreeItem firstChild;
521 child = item->firstChild;
577 item = item->firstChild;
990 TreeItem child = item->firstChild;
1368 if (item->firstChild != NULL)
1369 return item->firstChild;
2238 item = item->firstChild;
2249 item = item->firstChild;
2264 item = item->firstChild;
2277 item = item->firstChild;
2351 item = item->firstChild;
2708 TreeItem_Delete(tree, item->firstChild);
2824 if (item->firstChild == NULL)
2829 item = item->firstChild;
2870 child = item->firstChild;
2972 child = item->firstChild;
3039 if (parent->firstChild == item) {
3040 parent->firstChild = item->nextSibling;
3041 if (!parent->firstChild)
5082 parent->firstChild = head;
5098 parent->firstChild = head;
6267 first = item->firstChild;
6465 walk = item->firstChild;
6637 item->firstChild = sortData.items[indexF].item;
7474 child = item->firstChild;
7710 if (item->firstChild == NULL)
7715 item = item->firstChild;
7771 if (item->firstChild == NULL)
7776 item = item->firstChild;
7831 if (item2 != NULL && item2 != item->firstChild) {
7833 item2->nextSibling = item->firstChild;
7834 if (item->firstChild != NULL)
7835 item->firstChild->prevSibling = item2;
7838 item->firstChild = item2;
7846 if (item->firstChild != NULL)
7847 Tcl_SetObjResult(interp, TreeItem_ToObj(tree, item->firstChild));
7880 item->firstChild = item2;
7972 item->parent->firstChild = item2;
8313 if (item->firstChild != NULL) {
8315 "item%d.numChildren is zero, firstChild is not nil",
8328 if (item->firstChild == NULL) {
8330 "item%d.firstChild is nil",
8334 if (item->firstChild == item) {
8336 "item%d.firstChild is itself",
8340 if (item->firstChild->parent != item) {
8342 "item%d.firstChild.parent is not it",
8346 if (item->firstChild->prevSibling != NULL) {
8348 "item%d.firstChild.prevSibling is not nil",
8380 child = item->firstChild;
8393 child = item->firstChild;