Home
last modified time | relevance | path

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

/tools/repohooks/tools/
Dcpplint.py1842 def FindNextMultiLineCommentStart(lines, lineix): argument
1844 while lineix < len(lines):
1845 if lines[lineix].strip().startswith('/*'):
1847 if lines[lineix].strip().find('*/', 2) < 0:
1848 return lineix
1849 lineix += 1
1853 def FindNextMultiLineCommentEnd(lines, lineix): argument
1855 while lineix < len(lines):
1856 if lines[lineix].strip().endswith('*/'):
1857 return lineix
[all …]