Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance
933 def FindNextMultiLineCommentStart(lines, lineix): argument935 while lineix < len(lines):936 if lines[lineix].strip().startswith('/*'):938 if lines[lineix].strip().find('*/', 2) < 0:939 return lineix940 lineix += 1944 def FindNextMultiLineCommentEnd(lines, lineix): argument946 while lineix < len(lines):947 if lines[lineix].strip().endswith('*/'):948 return lineix[all …]