Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance
959 def FindNextMultiLineCommentStart(lines, lineix): argument961 while lineix < len(lines):962 if lines[lineix].strip().startswith('/*'):964 if lines[lineix].strip().find('*/', 2) < 0:965 return lineix966 lineix += 1970 def FindNextMultiLineCommentEnd(lines, lineix): argument972 while lineix < len(lines):973 if lines[lineix].strip().endswith('*/'):974 return lineix[all …]