Searched refs:lines (Results 1 – 6 of 6) sorted by relevance
/art/tools/checker/ |
D | README | 6 Optimizing compiler. "Check lines" are assertions formatted as comments of the 11 passes. Each group of check lines therefore must start with a 'CHECK-START' 16 Matching of check lines is carried out in the order of appearance in the 17 source file. There are three types of check lines: 19 later than lines matched against any preceeding checks. Output 20 lines must therefore match the check lines in the same order. 23 later than lines matched against any preceeding in-order checks. 24 In other words, the order of output lines does not matter 27 later than lines matched against any preceeding checks and 28 earlier than lines matched against any subsequent checks. [all …]
|
/art/compiler/ |
D | cfi_test.h | 40 std::vector<std::string> lines; in GenerateExpected() local 56 ReformatCfi(Objdump(false, "-W"), &lines); in GenerateExpected() 65 ReformatAsm(&stream, &lines); in GenerateExpected() 67 std::stable_sort(lines.begin(), lines.end(), CompareByAddress); in GenerateExpected() 68 for (const std::string& line : lines) { in GenerateExpected() 101 static void ReformatCfi(const std::vector<std::string>& lines, in ReformatCfi() argument 104 for (const std::string& line : lines) { in ReformatCfi()
|
/art/tools/ |
D | cpplint.py | 959 def FindNextMultiLineCommentStart(lines, lineix): argument 961 while lineix < len(lines): 962 if lines[lineix].strip().startswith('/*'): 964 if lines[lineix].strip().find('*/', 2) < 0: 967 return len(lines) 970 def FindNextMultiLineCommentEnd(lines, lineix): argument 972 while lineix < len(lines): 973 if lines[lineix].strip().endswith('*/'): 976 return len(lines) 979 def RemoveMultiLineCommentsFromRange(lines, begin, end): argument [all …]
|
D | analyze-init-failures.py | 38 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n') 39 it = iter(lines)
|
D | generate-operator-out.py | 40 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n') 50 for raw_line in lines:
|
/art/compiler/debug/dwarf/ |
D | dwarf_test.h | 86 std::vector<std::string> lines; in Objdump() local 103 lines.push_back(str); in Objdump() 107 return lines; in Objdump()
|