Home | History | Annotate | Download | only in Option

Lines Matching refs:it

51   for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
52 if ((*it)->getOption().matches(Id))
53 return *it;
59 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
60 if ((*it)->getOption().matches(Id)) {
61 Res = *it;
71 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
72 if ((*it)->getOption().matches(Id0) ||
73 (*it)->getOption().matches(Id1)) {
74 Res = *it;
86 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
87 if ((*it)->getOption().matches(Id0) ||
88 (*it)->getOption().matches(Id1) ||
89 (*it)->getOption().matches(Id2)) {
90 Res = *it;
101 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
102 if ((*it)->getOption().matches(Id0) ||
103 (*it)->getOption().matches(Id1) ||
104 (*it)->getOption().matches(Id2) ||
105 (*it)->getOption().matches(Id3)) {
106 Res = *it;
118 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
119 if ((*it)->getOption().matches(Id0) ||
120 (*it)->getOption().matches(Id1) ||
121 (*it)->getOption().matches(Id2) ||
122 (*it)->getOption().matches(Id3) ||
123 (*it)->getOption().matches(Id4)) {
124 Res = *it;
136 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
137 if ((*it)->getOption().matches(Id0) ||
138 (*it)->getOption().matches(Id1) ||
139 (*it)->getOption().matches(Id2) ||
140 (*it)->getOption().matches(Id3) ||
141 (*it)->getOption().matches(Id4) ||
142 (*it)->getOption().matches(Id5)) {
143 Res = *it;
156 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
157 if ((*it)->getOption().matches(Id0) ||
158 (*it)->getOption().matches(Id1) ||
159 (*it)->getOption().matches(Id2) ||
160 (*it)->getOption().matches(Id3) ||
161 (*it)->getOption().matches(Id4) ||
162 (*it)->getOption().matches(Id5) ||
163 (*it)->getOption().matches(Id6)) {
164 Res = *it;
177 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
178 if ((*it)->getOption().matches(Id0) ||
179 (*it)->getOption().matches(Id1) ||
180 (*it)->getOption().matches(Id2) ||
181 (*it)->getOption().matches(Id3) ||
182 (*it)->getOption().matches(Id4) ||
183 (*it)->getOption().matches(Id5) ||
184 (*it)->getOption().matches(Id6) ||
185 (*it)->getOption().matches(Id7)) {
186 Res = *it;
274 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
275 if (!(*it)->isClaimed())
276 (*it)->claim();
305 for (iterator it = begin(), ie = end(); it != ie; ++it)
306 delete *it;