Lines Matching refs:counts
63 std::vector<int> counts; in ComboCustom() local
64 counts.resize(count); in ComboCustom()
66 for (int i = 0; i < counts.size(); ++i) in ComboCustom()
67 counts[i] = option.args[i].count; in ComboCustom()
76 Init(count, &counts[0], start.args, names.args, &optionArray[0]); in ComboCustom()
87 std::vector<int> counts; in ComboCustom() local
88 counts.resize(count); in ComboCustom()
90 for (int i = 0; i < counts.size(); ++i) in ComboCustom()
91 counts[i] = option.args[i].size(); in ComboCustom()
100 Init(count, &counts[0], start.args, names.args, &optionArray[0]); in ComboCustom()
113 std::vector<int> counts; in ComboCustom() local
114 counts.resize(count); in ComboCustom()
116 for (int i = 0; i < counts.size(); ++i) in ComboCustom()
117 counts[i] = option[i].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
138 int count = counts[j]; in Init()