Lines Matching refs:SourceLocationSpec
19 SourceLocationSpec invalid(FileSpec(), 0); in TEST()
22 SourceLocationSpec invalid_filespec(FileSpec(), 4); in TEST()
25 SourceLocationSpec invalid_line(FileSpec("/foo/bar"), 0); in TEST()
28 SourceLocationSpec valid_fs_line_no_column(FileSpec("/foo/bar"), 4); in TEST()
31 SourceLocationSpec invalid_fs_column(FileSpec(), 4, 0); in TEST()
34 SourceLocationSpec invalid_line_column(FileSpec("/foo/bar"), 0, 19); in TEST()
37 SourceLocationSpec valid_fs_line_zero_column(FileSpec("/foo/bar"), 4, 0); in TEST()
40 SourceLocationSpec valid_fs_line_column(FileSpec("/foo/bar"), 4, 19); in TEST()
49 SourceLocationSpec without_column(fs, line, LLDB_INVALID_COLUMN_NUMBER, false, in TEST()
60 SourceLocationSpec with_column(fs, line, column, true, false); in TEST()
70 static SourceLocationSpec Create(bool check_inlines, bool exact_match, in Create()
73 return SourceLocationSpec(fs, line, column, check_inlines, exact_match); in Create()
77 auto Equal = [](SourceLocationSpec lhs, SourceLocationSpec rhs, bool full) { in TEST()
78 return SourceLocationSpec::Equal(lhs, rhs, full); in TEST()
124 auto Cmp = [](SourceLocationSpec a, SourceLocationSpec b) { in TEST()
125 return SourceLocationSpec::Compare(a, b); in TEST()