Lines Matching defs:it

165 		map<string, string>::iterator it = fConfiguration->fStringSettings.
167 for (; it != fConfiguration->fStringSettings.end(); it ++) {
168 stp_set_string_parameter(fVariables, it->first.c_str(),
169 it->second.c_str());
174 map<string, bool>::iterator it = fConfiguration->fBooleanSettings.
176 for (; it != fConfiguration->fBooleanSettings.end(); it ++) {
177 stp_set_boolean_parameter(fVariables, it->first.c_str(),
178 it->second);
183 map<string, int32>::iterator it = fConfiguration->fIntSettings.
185 for (; it != fConfiguration->fIntSettings.end(); it ++) {
186 stp_set_int_parameter(fVariables, it->first.c_str(),
187 it->second);
192 map<string, int32>::iterator it = fConfiguration->fDimensionSettings.
194 for (; it != fConfiguration->fDimensionSettings.end(); it ++) {
195 stp_set_dimension_parameter(fVariables, it->first.c_str(),
196 it->second);
201 map<string, double>::iterator it = fConfiguration->fDoubleSettings.
203 for (; it != fConfiguration->fDoubleSettings.end(); it ++) {
204 stp_set_float_parameter(fVariables, it->first.c_str(),
205 it->second);
262 // but it has to be absolute to left, top of page
269 list<GPBand*>::iterator it = fBands->begin();
270 for (; it != fBands->end(); it++) {
271 (*it)->fWhere += offset;
368 list<GPBand*>::iterator it = bands.begin();
369 if (it == bands.end())
372 GPBand* first = *it;
374 for (it ++; it != bands.end(); it ++) {
375 GPBand* band = *it;
417 // convert it to absolute y coordinate value
436 list<GPBand*>::iterator it = fBands->begin();
437 for (; it != fBands->end(); it ++) {
438 GPBand* band = *it;