Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance
1842 def FindNextMultiLineCommentStart(lines, lineix): argument1844 while lineix < len(lines):1845 if lines[lineix].strip().startswith('/*'):1847 if lines[lineix].strip().find('*/', 2) < 0:1848 return lineix1849 lineix += 11853 def FindNextMultiLineCommentEnd(lines, lineix): argument1855 while lineix < len(lines):1856 if lines[lineix].strip().endswith('*/'):1857 return lineix[all …]