Lines Matching refs:state_array
2874 void project_view::GetTreeState(CArray<int> *state_array) in GetTreeState() argument
2886 state_array->Add(state); in GetTreeState()
2890 GetTreeState(child, state_array); in GetTreeState()
2898 void project_view::GetTreeState(HTREEITEM hParent, CArray<int> *state_array) in GetTreeState() argument
2908 state_array->Add(state); in GetTreeState()
2912 GetTreeState(child, state_array); in GetTreeState()
2921 void project_view::SetTreeState(CArray<int> *state_array) in SetTreeState() argument
2926 if (!state_array) in SetTreeState()
2933 if (state_array->GetCount() == 0) in SetTreeState()
2940 if (state_array->GetAt(0)) in SetTreeState()
2949 state_array->RemoveAt(0); in SetTreeState()
2951 if (state_array->GetCount() && child) in SetTreeState()
2953 SetTreeState(child, state_array); in SetTreeState()
2961 void project_view::SetTreeState(HTREEITEM hParent, CArray<int> *state_array) in SetTreeState() argument
2963 if (!state_array) in SetTreeState()
2970 if (state_array->GetCount() == 0) in SetTreeState()
2977 if (state_array->GetAt(0)) in SetTreeState()
2986 state_array->RemoveAt(0); in SetTreeState()
2988 if (state_array->GetCount() && child) in SetTreeState()
2990 SetTreeState(child, state_array); in SetTreeState()