Home
last modified time | relevance | path

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

/art/tools/
Dcpplint.py933 def FindNextMultiLineCommentStart(lines, lineix): argument
935 while lineix < len(lines):
936 if lines[lineix].strip().startswith('/*'):
938 if lines[lineix].strip().find('*/', 2) < 0:
939 return lineix
940 lineix += 1
944 def FindNextMultiLineCommentEnd(lines, lineix): argument
946 while lineix < len(lines):
947 if lines[lineix].strip().endswith('*/'):
948 return lineix
[all …]