Home | History | Annotate | Download | only in header

Lines Matching refs:it

97     AttributeMap::const_iterator it = headerAttributes->find(keyVector);
98 if (it == headerAttributes->end()) {
101 return it->second.data();
141 for (AttributeMap::const_iterator it = headerAttributes->begin();
142 it != headerAttributes->end(); ++it) {
143 if (it->first.empty() || it->second.empty()) {
147 if (!buffer->writeCodePointsAndAdvancePosition(&(it->first.at(0)), it->first.size(),
152 if (!buffer->writeCodePointsAndAdvancePosition(&(it->second.at(0)), it->second.size(),
193 AttributeMap::const_iterator it = headerAttributes->find(keyVector);
194 if (it == headerAttributes->end()) {
197 return it->second;
220 AttributeMap::const_iterator it = headerAttributes->find(*key);
221 if (it != headerAttributes->end()) {
224 for (size_t i = 0; i < it->second.size(); ++i) {
225 if (i == 0 && it->second.at(i) == '-') {
228 if (!isdigit(it->second.at(i))) {
233 value += it->second.at(i) - '0';