• Home
  • Raw
  • Download

Lines Matching full:second

93         std::cout << " fileName : " << it->second.first <<std::endl;  in GetFileName()
105 int scriptId = scriptIdIt->second; in SetFileSource()
108 if (it != fileSource_.end() && it->second.second.empty()) { in SetFileSource()
113 it->second.second.push_back(line); in SetFileSource()
117 it->second.second.push_back(fileSource.substr(startPos)); in SetFileSource()
128 for (const std::string& value : it->second.second) { in GetFileSource()
131 return it->second.second; in GetFileSource()
170 std::cout << (debugLineNum_ + 1) << " " << it->second.second[debugLineNum_] << std::endl; in GetDebugSources()
189 if (startLine >= static_cast<int>(it->second.second.size()) + STATR_LINE_OFFSET || in ListSourceCodeWithParameters()
192 static_cast<int>(it->second.second.size()) << " lines" << std::endl; in ListSourceCodeWithParameters()
202 if (endLine > static_cast<int>(it->second.second.size())) { in ListSourceCodeWithParameters()
203 endLine = static_cast<int>(it->second.second.size()); in ListSourceCodeWithParameters()
206 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSourceCodeWithParameters()
214 if (startLine > static_cast<int>(it->second.second.size()) || in ListSourceCodeWithParameters()
215 endLine > static_cast<int>(it->second.second.size()) || startLine < 1) { in ListSourceCodeWithParameters()
217 static_cast<int>(it->second.second.size()) << " lines" << std::endl; in ListSourceCodeWithParameters()
220 if (endLine > static_cast<int>(it->second.second.size())) { in ListSourceCodeWithParameters()
221 endLine = static_cast<int>(it->second.second.size()); in ListSourceCodeWithParameters()
224 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSourceCodeWithParameters()
248 if (endLine > static_cast<int>(it->second.second.size())) { in ListSource()
249 endLine = static_cast<int>(it->second.second.size()); in ListSource()
252 std::cout << (showLine + 1) << " " << it->second.second[showLine] << std::endl; in ListSource()