Lines Matching full:dllexport
4 inline void __attribute__((dllexport)) foo1(){} // expected-warning{{dllexport attribute ignored}}
9 void __attribute__((dllimport, dllexport)) foo4(); // expected-warning{{dllimport attribute ignored}}
11 void __attribute__((dllexport)) foo5();
14 typedef int __attribute__((dllexport)) type6; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
22 inline void __declspec(dllexport) foo7(){} // expected-warning{{dllexport attribute ignored}}
27 void __declspec(dllimport) __declspec(dllexport) foo10(); // expected-warning{{dllimport attribute ignored}}
29 void __declspec(dllexport) foo11();
32 typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
40 void __attribute__((dllexport)) foo13();
42 extern int foo14 __attribute__((dllexport));