Lines Matching refs:CLASS
13 RUN: lldb-test symbols %T/ClassLayoutTest.cpp.exe | FileCheck --check-prefix=CLASS %s
77 CLASS: name = "Class", size = 88, decl = ClassLayoutTest.cpp:74
78 CLASS-SAME: class Class : public MemberTest::Base {
79 CLASS: static int m_static;
80 CLASS: int m_public;
81 CLASS: Struct m_struct;
82 CLASS: Union m_union;
83 CLASS: int m_private;
84 CLASS: int m_protected;
85 CLASS: Class();
86 CLASS: Class(int);
87 CLASS: ~Class();
88 CLASS: {{(static )?}}int {{.*}}StaticMemberFunc(int, ...);
89 CLASS: int Get();
90 CLASS: int f(MemberTest::Friend);
91 CLASS: bool operator==(const MemberTest::Class &)
92 CLASS:}