Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/scripts/
Dcpplint.py926 def FindNextMultiLineCommentStart(lines, lineix): argument
928 while lineix < len(lines):
929 if lines[lineix].strip().startswith('/*'):
931 if lines[lineix].strip().find('*/', 2) < 0:
932 return lineix
933 lineix += 1
937 def FindNextMultiLineCommentEnd(lines, lineix): argument
939 while lineix < len(lines):
940 if lines[lineix].strip().endswith('*/'):
941 return lineix
[all …]
/external/libvpx/libvpx/tools/
Dcpplint.py1112 def FindNextMultiLineCommentStart(lines, lineix): argument
1114 while lineix < len(lines):
1115 if lines[lineix].strip().startswith('/*'):
1117 if lines[lineix].strip().find('*/', 2) < 0:
1118 return lineix
1119 lineix += 1
1123 def FindNextMultiLineCommentEnd(lines, lineix): argument
1125 while lineix < len(lines):
1126 if lines[lineix].strip().endswith('*/'):
1127 return lineix
[all …]