Lines Matching defs:it

12  * you can redistribute it and/or modify it under the terms of the GNU
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
89 for (GuestEnvironmentArray::const_iterator it = environment.begin();
90 it != environment.end() && RT_SUCCESS(rc);
91 ++it)
93 rc = Set((*it));
102 for (std::map<Utf8Str, Utf8Str>::const_iterator it = mEnvironment.begin();
103 it != mEnvironment.end();
104 ++it, ++s)
106 environment[s] = Bstr(it->first + "=" + it->second).raw();
122 std::map<Utf8Str, Utf8Str>::const_iterator it = mEnvironment.begin();
123 for (; it != mEnvironment.end() && curPos < nPos;
124 ++it, ++curPos) { }
126 if (it != mEnvironment.end())
127 return Utf8Str(it->first + "=" + it->second);
226 for (std::map<Utf8Str, Utf8Str>::const_iterator it = that.mEnvironment.begin();
227 it != that.mEnvironment.end();
228 ++it)
230 mEnvironment[it->first] = it->second;
408 for (GuestCtrlStreamPairsIter it = otherBlock.mPairs.begin();
409 it != otherBlock.end(); it++)
411 mPairs[it->first] = new
412 if (it->second.pszValue)
414 RTMemFree(it->second.pszValue);
415 it->second.pszValue = NULL;
441 for (GuestCtrlStreamPairMapIterConst it = mPairs.begin();
442 it != mPairs.end(); it++)
444 LogFlowFunc(("\t%s=%s\n", it->first.c_str(), it->second.mValue.c_str()));
585 GuestCtrlStreamPairMapIter it = mPairs.find(Utf8Key);
586 if (it != mPairs.end())
587 mPairs.erase(it);
634 /* Rewind the buffer if it's empty. */
851 * Just cancel the event, but don't remove it from the
852 * wait events map. Don't delete it though, this (hopefully)
1044 * original one!) because it was signalled. */