Searched refs:LT_COMPARE (Results 1 – 1 of 1) sorted by relevance
/external/lldb/source/Symbol/ |
D | LineTable.cpp | 147 #define LT_COMPARE(a,b) if (a != b) return a < b in operator ()() macro 148 LT_COMPARE (a.file_addr, b.file_addr); in operator ()() 150 LT_COMPARE (b.is_terminal_entry, a.is_terminal_entry); in operator ()() 151 LT_COMPARE (a.line, b.line); in operator ()() 152 LT_COMPARE (a.column, b.column); in operator ()() 153 LT_COMPARE (a.is_start_of_statement, b.is_start_of_statement); in operator ()() 154 LT_COMPARE (a.is_start_of_basic_block, b.is_start_of_basic_block); in operator ()() 156 LT_COMPARE (b.is_prologue_end, a.is_prologue_end); in operator ()() 157 LT_COMPARE (a.is_epilogue_begin, b.is_epilogue_begin); in operator ()() 158 LT_COMPARE (a.file_idx, b.file_idx); in operator ()() [all …]
|