Lines Matching refs:pParent

998 			SvLBoxEntry* pParent = pView->GetParent( pEntry );  in MakeVisible()  local
999 while( pParent ) in MakeVisible()
1001 if( !pView->IsExpanded( pParent ) ) in MakeVisible()
1006 pView->Expand( pParent ); in MakeVisible()
1009 pParent = pView->GetParent( pParent ); in MakeVisible()
1731 SvLBoxEntry* pParent = (SvLBoxEntry*)(pView->GetModel()->GetParent(pEntry)); in RemovingEntry() local
1733 if( pParent && pView->GetModel()->GetChildList(pParent)->Count() == 1 ) in RemovingEntry()
1735 DBG_ASSERT( pView->IsExpanded( pParent ), "Parent not expanded"); in RemovingEntry()
1736 pParent->SetFlags( pParent->GetFlags() | SV_ENTRYFLAG_NO_NODEBMP); in RemovingEntry()
1737 InvalidateEntry( pParent ); in RemovingEntry()
1882 SvLBoxEntry* pParent = pEntry; in EntryMoved() local
1884 pParent = pTree->GetParent( pParent ); in EntryMoved()
1886 while( !pView->IsEntryVisible( pParent ) ); in EntryMoved()
1887 SetCursor( pParent ); in EntryMoved()
1900 SvLBoxEntry* pParent = (SvLBoxEntry*)pTree->GetParent(pEntry); in EntryInserted() local
1901 if( pParent && pTree->GetChildList(pParent)->Count() == 1 ) in EntryInserted()
1903 pTree->InvalidateEntry( pParent ); in EntryInserted()
3478 void SvImpLBox::FindMostRight( SvLBoxEntry* pParent, SvLBoxEntry* pEntryToIgnore ) in FindMostRight() argument
3480 if( !pParent ) in FindMostRight()
3483 FindMostRight_Impl( pParent, pEntryToIgnore ); in FindMostRight()
3486 void SvImpLBox::FindMostRight_Impl( SvLBoxEntry* pParent, SvLBoxEntry* pEntryToIgnore ) in FindMostRight_Impl() argument
3488 SvTreeEntryList* pList = pTree->GetChildList( pParent ); in FindMostRight_Impl()