Home | History | Annotate | Download | only in ndk_helper

Lines Matching defs:it

45     std::map<std::string, std::string>::const_iterator it = map_parameters.begin();
47 while( it != itEnd )
50 while( (pos = str.find( it->first, pos )) != std::string::npos )
58 str.replace( pos, it->first.length(), it->second );
59 str_replacement_map.replace( pos, it->first.length(), it->first.length(),
61 pos += it->second.length();
66 pos += it->second.length();
69 it++;