Home
last modified time | relevance | path

Searched refs:lineix (Results 1 – 1 of 1) sorted by relevance

/tools/repohooks/tools/
Dcpplint.py1365 def FindNextMultiLineCommentStart(lines, lineix): argument
1367 while lineix < len(lines):
1368 if lines[lineix].strip().startswith('/*'):
1370 if lines[lineix].strip().find('*/', 2) < 0:
1371 return lineix
1372 lineix += 1
1376 def FindNextMultiLineCommentEnd(lines, lineix): argument
1378 while lineix < len(lines):
1379 if lines[lineix].strip().endswith('*/'):
1380 return lineix
[all …]