Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance
1359 def FindNextMultiLineCommentStart(lines, lineix): argument1361 while lineix < len(lines):1362 if lines[lineix].strip().startswith('/*'):1364 if lines[lineix].strip().find('*/', 2) < 0:1365 return lineix1366 lineix += 11370 def FindNextMultiLineCommentEnd(lines, lineix): argument1372 while lineix < len(lines):1373 if lines[lineix].strip().endswith('*/'):1374 return lineix[all …]