Home | History | Annotate | Download | only in ref

Lines Matching refs:ancestor

1353         // Search back until we find an ancestor or run out.
1356 // Decrement wouldBeAt to find last possible ancestor
1358 int ancestor=_parent(elementNodeIndex);
1363 if (wouldBeAt == 0 && candidate < ancestor) {
1380 while(wouldBeAt>=0 && ancestor>0)
1382 if (candidate==ancestor) {
1383 // Found ancestor in list
1385 } else if (candidate<ancestor) {
1388 ancestor=_parent(ancestor);
1389 } while (candidate < ancestor);