Lines Matching refs:it

49   for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)  in getLastArgNoClaim()  local
50 if ((*it)->getOption().matches(Id)) in getLastArgNoClaim()
51 return *it; in getLastArgNoClaim()
57 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
58 if ((*it)->getOption().matches(Id0) || in getLastArgNoClaim()
59 (*it)->getOption().matches(Id1)) in getLastArgNoClaim()
60 return *it; in getLastArgNoClaim()
67 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
68 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) || in getLastArgNoClaim()
69 (*it)->getOption().matches(Id2)) in getLastArgNoClaim()
70 return *it; in getLastArgNoClaim()
77 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it) in getLastArgNoClaim() local
78 if ((*it)->getOption().matches(Id0) || (*it)->getOption().matches(Id1) || in getLastArgNoClaim()
79 (*it)->getOption().matches(Id2) || (*it)->getOption().matches(Id3)) in getLastArgNoClaim()
80 return *it; in getLastArgNoClaim()
86 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
87 if ((*it)->getOption().matches(Id)) { in getLastArg()
88 Res = *it; in getLastArg()
98 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
99 if ((*it)->getOption().matches(Id0) || in getLastArg()
100 (*it)->getOption().matches(Id1)) { in getLastArg()
101 Res = *it; in getLastArg()
113 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
114 if ((*it)->getOption().matches(Id0) || in getLastArg()
115 (*it)->getOption().matches(Id1) || in getLastArg()
116 (*it)->getOption().matches(Id2)) { in getLastArg()
117 Res = *it; in getLastArg()
128 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
129 if ((*it)->getOption().matches(Id0) || in getLastArg()
130 (*it)->getOption().matches(Id1) || in getLastArg()
131 (*it)->getOption().matches(Id2) || in getLastArg()
132 (*it)->getOption().matches(Id3)) { in getLastArg()
133 Res = *it; in getLastArg()
145 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
146 if ((*it)->getOption().matches(Id0) || in getLastArg()
147 (*it)->getOption().matches(Id1) || in getLastArg()
148 (*it)->getOption().matches(Id2) || in getLastArg()
149 (*it)->getOption().matches(Id3) || in getLastArg()
150 (*it)->getOption().matches(Id4)) { in getLastArg()
151 Res = *it; in getLastArg()
163 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
164 if ((*it)->getOption().matches(Id0) || in getLastArg()
165 (*it)->getOption().matches(Id1) || in getLastArg()
166 (*it)->getOption().matches(Id2) || in getLastArg()
167 (*it)->getOption().matches(Id3) || in getLastArg()
168 (*it)->getOption().matches(Id4) || in getLastArg()
169 (*it)->getOption().matches(Id5)) { in getLastArg()
170 Res = *it; in getLastArg()
183 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
184 if ((*it)->getOption().matches(Id0) || in getLastArg()
185 (*it)->getOption().matches(Id1) || in getLastArg()
186 (*it)->getOption().matches(Id2) || in getLastArg()
187 (*it)->getOption().matches(Id3) || in getLastArg()
188 (*it)->getOption().matches(Id4) || in getLastArg()
189 (*it)->getOption().matches(Id5) || in getLastArg()
190 (*it)->getOption().matches(Id6)) { in getLastArg()
191 Res = *it; in getLastArg()
204 for (const_iterator it = begin(), ie = end(); it != ie; ++it) { in getLastArg() local
205 if ((*it)->getOption().matches(Id0) || in getLastArg()
206 (*it)->getOption().matches(Id1) || in getLastArg()
207 (*it)->getOption().matches(Id2) || in getLastArg()
208 (*it)->getOption().matches(Id3) || in getLastArg()
209 (*it)->getOption().matches(Id4) || in getLastArg()
210 (*it)->getOption().matches(Id5) || in getLastArg()
211 (*it)->getOption().matches(Id6) || in getLastArg()
212 (*it)->getOption().matches(Id7)) { in getLastArg()
213 Res = *it; in getLastArg()
316 for (const_iterator it = begin(), ie = end(); it != ie; ++it) in ClaimAllArgs() local
317 if (!(*it)->isClaimed()) in ClaimAllArgs()
318 (*it)->claim(); in ClaimAllArgs()