Lines Matching defs:found
370 bool CStreamEnumerator::Next(CStreamInfo &si, bool &found)
379 found = true;
382 found = false;
540 bool found;
541 if (!enumerator.Next(si, found))
543 if (!found)
788 bool CEnumerator::Next(CFileInfo &fi, bool &found)
797 found = true;
805 found = true;
809 found = false;
1207 bool CEnumerator::NextAny(CDirEntry &fi, bool &found)
1209 found = false;
1228 return true; // it's end of stream, and we report it with (found = false)
1267 found = true;
1272 bool CEnumerator::Next(CDirEntry &fi, bool &found)
1278 if (!NextAny(fi, found))
1280 if (!found)
1297 bool CEnumerator::Next(CDirEntry &fileInfo, bool &found)
1299 bool found;
1300 if (!Next(fi, found))
1302 return found;