Home
last modified time | relevance | path

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

/art/tools/
Dcpplint.py959 def FindNextMultiLineCommentStart(lines, lineix): argument
961 while lineix < len(lines):
962 if lines[lineix].strip().startswith('/*'):
964 if lines[lineix].strip().find('*/', 2) < 0:
965 return lineix
966 lineix += 1
970 def FindNextMultiLineCommentEnd(lines, lineix): argument
972 while lineix < len(lines):
973 if lines[lineix].strip().endswith('*/'):
974 return lineix
[all …]