Lines Matching refs:it
269 for (size_t it = 0; it < length; ++it) {
270 auto result = find(g_doubleSegment.begin(), g_doubleSegment.end(), temp[it]);
272 if (path.empty() && it == length - 1) {
280 if (it == length - 1) {
286 result = find(g_singlesegment.begin(), g_singlesegment.end(), temp[it]);
287 if (result != g_singlesegment.end() && it == length - 1) {
293 path.push_back(temp[it]);
315 int it = stoi(input);
317 if (it > maxPort) {
323 if (i.first == urlinfo.scheme && i.second == it) {
329 urlinfo.port = it;
802 std::string it = urlinfo.path[0];
803 if (isalpha(it[0]) && (it[1] == ':' || it[1] == '|')) {
804 if (it.size() == 2) { // 2:The length is 2
805 it[1] = ':';
1707 void URLSearchParams::HandleIllegalChar(std::wstring& inputStr, std::wstring::const_iterator it)
1710 advance(iter, std::distance<std::wstring::const_iterator>(iter, it));
1963 for (auto it = searchParams.begin(); it < (searchParams.end() - 1) && !searchParams.empty();) {
1964 if (*it == cppName) {
1966 *(it + 1) = cppValue;
1968 it += 2; // 2:Searching for the number and number of keys and values
1970 it = searchParams.erase(it, it + 2); // 2:Searching for the number and number of keys and values
1973 it += 2; // 2:Searching for the number and number of keys and values
2012 for (auto it = searchParams.begin(); it != searchParams.end(); it += stepSize) {
2013 toKeys.push_back(*it);
2032 for (auto it = searchParams.begin();
2033 it != searchParams.end();
2034 it += stepSize) {
2035 toKeys.push_back(*(it + 1));