Lines Matching refs:start
55 ComboCustom::ComboCustom(WindowManager* manager, const char* name, const AutoList<int>& start, cons… in ComboCustom() argument
56 : Window(manager, name, CVec2(0, 0), CVec2(1.4, 0.1 + start.count * 0.1)) in ComboCustom()
58 ASSERT(start.count == names.count && names.count == option.count); in ComboCustom()
60 int count = start.count; in ComboCustom()
76 Init(count, &counts[0], start.args, names.args, &optionArray[0]); in ComboCustom()
79 ComboCustom::ComboCustom(WindowManager* manager, const char* name, const AutoList<int>& start, cons… in ComboCustom() argument
80 : Window(manager, name, CVec2(0, 0), CVec2(1.4, 0.1 + start.count * 0.1)) in ComboCustom()
82 ASSERT(start.count == names.count && names.count == option.count); in ComboCustom()
84 int count = start.count; in ComboCustom()
100 Init(count, &counts[0], start.args, names.args, &optionArray[0]); in ComboCustom()
103 ComboCustom::ComboCustom(WindowManager* manager, const char* name, const std::vector<int>& start, c… in ComboCustom() argument
106 ASSERT(start.size() == names.size()); in ComboCustom()
110 int count = start.size(); in ComboCustom()
126 Init(count, &counts[0], &start[0], &names[0], &optionArray[0]); in ComboCustom()
129 void ComboCustom::Init(int num, const int* counts, const int* start, const char* const* names, cons… in Init() argument
136 choice[j] = start[j]; in Init()