Home
last modified time | relevance | path

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

/tools/repohooks/tools/
Dcpplint.py1359 def FindNextMultiLineCommentStart(lines, lineix): argument
1361 while lineix < len(lines):
1362 if lines[lineix].strip().startswith('/*'):
1364 if lines[lineix].strip().find('*/', 2) < 0:
1365 return lineix
1366 lineix += 1
1370 def FindNextMultiLineCommentEnd(lines, lineix): argument
1372 while lineix < len(lines):
1373 if lines[lineix].strip().endswith('*/'):
1374 return lineix
[all …]