Home
last modified time | relevance | path

Searched refs:lines (Results 1 – 3 of 3) 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:
941 return len(lines)
944 def FindNextMultiLineCommentEnd(lines, lineix): argument
946 while lineix < len(lines):
947 if lines[lineix].strip().endswith('*/'):
950 return len(lines)
953 def RemoveMultiLineCommentsFromRange(lines, begin, end): argument
[all …]
Dgenerate-operator-out.py40 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n')
49 for raw_line in lines:
/art/compiler/dex/quick/
Dresource_mask.cc134 constexpr bool CheckTwoRegsMaskTable(size_t lines) { in CheckTwoRegsMaskTable() argument
135 return lines == 0 || in CheckTwoRegsMaskTable()
136 (CheckTwoRegsMaskLine(lines - 1) && CheckTwoRegsMaskTable(lines - 1u)); in CheckTwoRegsMaskTable()