• Home
  • Raw
  • Download

Lines Matching full:second

94         std::cout << " fileName : " << it->second.first <<std::endl;  in GetFileName()
106 int scriptId = scriptIdIt->second; in SetFileSource()
109 if (it != fileSource_.end() && it->second.second.empty()) { in SetFileSource()
114 it->second.second.push_back(line); in SetFileSource()
118 it->second.second.push_back(fileSource.substr(startPos)); in SetFileSource()
129 for (const std::string& value : it->second.second) { in GetFileSource()
132 return it->second.second; in GetFileSource()
171 std::cout << (debugLineNum_ + 1) << " " << it->second.second[debugLineNum_] << std::endl; in GetDebugSources()
190 if (startLine >= static_cast<int>(it->second.second.size()) + STATR_LINE_OFFSET || in ListSourceCodeWithParameters()
193 static_cast<int>(it->second.second.size()) << " lines" << std::endl; in ListSourceCodeWithParameters()
203 if (endLine > static_cast<int>(it->second.second.size())) { in ListSourceCodeWithParameters()
204 endLine = static_cast<int>(it->second.second.size()); in ListSourceCodeWithParameters()
207 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSourceCodeWithParameters()
215 if (startLine > static_cast<int>(it->second.second.size()) || in ListSourceCodeWithParameters()
216 endLine > static_cast<int>(it->second.second.size()) || startLine < 1) { in ListSourceCodeWithParameters()
218 static_cast<int>(it->second.second.size()) << " lines" << std::endl; in ListSourceCodeWithParameters()
221 if (endLine > static_cast<int>(it->second.second.size())) { in ListSourceCodeWithParameters()
222 endLine = static_cast<int>(it->second.second.size()); in ListSourceCodeWithParameters()
225 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSourceCodeWithParameters()
249 if (endLine > static_cast<int>(it->second.second.size())) { in ListSource()
250 endLine = static_cast<int>(it->second.second.size()); in ListSource()
253 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSource()