Lines Matching full:exported
9 // that need to be exported out of libbrillo. By default, any symbol not
10 // explicitly marked with BRILLO_EXPORT attribute is not exported.
20 void baz(); // Exported since it is a member of an exported class.
28 // virtual table (if any), and static member variables are exported.
32 // be exported and fail to link. Marking those inline explicitly might help.
39 // hide a member of an exported class:
44 void bar(); // Exported since it is a member of an exported class.
53 // that it must not be exported, since the compiler might still need it.
55 // if that private method is not exported.