Searched refs:lineix (Results 1 – 4 of 4) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/scripts/ |
D | cpplint.py | 926 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/ |
D | cpplint.py | 1112 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 …]
|
/external/libaom/libaom/tools/ |
D | cpplint.py | 1112 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 …]
|
/external/google-styleguide/cpplint/ |
D | cpplint.py | 1358 def FindNextMultiLineCommentStart(lines, lineix): argument 1360 while lineix < len(lines): 1361 if lines[lineix].strip().startswith('/*'): 1363 if lines[lineix].strip().find('*/', 2) < 0: 1364 return lineix 1365 lineix += 1 1369 def FindNextMultiLineCommentEnd(lines, lineix): argument 1371 while lineix < len(lines): 1372 if lines[lineix].strip().endswith('*/'): 1373 return lineix [all …]
|