Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance
1365 def FindNextMultiLineCommentStart(lines, lineix): argument1367 while lineix < len(lines):1368 if lines[lineix].strip().startswith('/*'):1370 if lines[lineix].strip().find('*/', 2) < 0:1371 return lineix1372 lineix += 11376 def FindNextMultiLineCommentEnd(lines, lineix): argument1378 while lineix < len(lines):1379 if lines[lineix].strip().endswith('*/'):1380 return lineix[all …]