1
[inline]
Definition at line 117 of file StringParser.h.
References mP, and mText.
Referenced by Impala::Application::Util::DoDumpParameter(), Impala::Persistency::VideoSetRepositoryInFile::Get(), Impala::Persistency::ImageSetRepositoryInFile::Get(), Impala::Core::IDash::Href::GetCaseId(), Impala::Core::VideoSet::Mpeg7DocAudio::GetFractions(), Impala::Core::VideoSet::Mpeg7Doc::GetFractions(), Impala::Core::IDash::Server::GetJobs(), Impala::Core::VideoSet::Mpeg7DocAudio::GetMediaDuration(), Impala::Core::VideoSet::Mpeg7Doc::GetMediaDuration(), Impala::Core::VideoSet::Mpeg7DocAudio::GetMediaTimePoint(), Impala::Core::VideoSet::Mpeg7Doc::GetMediaTimePoint(), Impala::Core::IDash::Href::GetVideoId(), Impala::Core::Database::RawDataSet::Init(), Impala::Core::IDash::Server::ScheduleJob(), and Impala::Core::IDash::Server::StatusJob().
00118 { 00119 while ((mP != String::npos) && (--nrToFind >= 0)) 00120 { 00121 mP = mText.find(toChar, mP); 00122 if (mP != String::npos) 00123 mP++; 00124 } 00125 }