Searched defs:normalDef (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddllexport-members.cpp27 // M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@ExportMembers@@QAEXXZ"(%struct.ExportMembers* %this)
28 // M64-DAG: define dllexport void @"\01?normalDef@ExportMembers@@QEAAXXZ"(%struct.ExportMembers* %this)
44 __declspec(dllexport) void normalDef();
128 void ExportMembers::normalDef() {} function in class:ExportMembers
152 // M32-DAG: define dllexport x86_thiscallcc void @"\01?normalDef@Nested@ExportMembers@@QAEXXZ"(%"struct.ExportMembers::Nested"* %this)
153 // M64-DAG: define dllexport void @"\01?normalDef@Nested@ExportMembers@@QEAAXXZ"(%"struct.ExportMembers::Nested"* %this)
168 __declspec(dllexport) void normalDef();
251 void ExportMembers::Nested::normalDef() {} function in class:ExportMembers::Nested
462 template<typename T> void normalDef() {} function in struct:MemFunTmpl
547 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01??$normalDef
582 template<> __declspec(dllexport) void MemFunTmpl::normalDef<ExplicitSpec_Def_Exported>() {} function in class:MemFunTmpl
583 template<> __declspec(dllexport) inline void MemFunTmpl::normalDef<ExplicitSpec_InlineDef_Exported>() {} function in class:MemFunTmpl
[all...]
H A Ddllimport-members.cpp66 // M32-DAG: define x86_thiscallcc void @"\01?normalDef@ImportMembers@@QAEXXZ"(%struct.ImportMembers* %this)
67 // M64-DAG: define void @"\01?normalDef@ImportMembers@@QEAAXXZ"(%struct.ImportMembers* %this)
92 __declspec(dllimport) void normalDef(); // dllimport ignored
198 void ImportMembers::normalDef() {} // dllimport ignored function in class:ImportMembers
208 USEMF(ImportMembers, normalDef)
238 // M32-DAG: define x86_thiscallcc void @"\01?normalDef@Nested@ImportMembers@@QAEXXZ"(%"struct.ImportMembers::Nested"* %this)
239 // M64-DAG: define void @"\01?normalDef@Nested@ImportMembers@@QEAAXXZ"(%"struct.ImportMembers::Nested"* %this)
264 __declspec(dllimport) void normalDef(); // dllimport ignored
371 void ImportMembers::Nested::normalDef() {} // dllimport ignored function in class:ImportMembers::Nested
381 USEMF(ImportMembers::Nested, normalDef)
653 template<typename T> void normalDef() {} function in struct:MemFunTmpl
805 template<> __declspec(dllimport) inline void MemFunTmpl::normalDef<ExplicitSpec_InlineDef_Imported>() {} function in class:MemFunTmpl
[all...]
/external/clang/test/SemaCXX/
H A Ddllexport.cpp527 __declspec(dllexport) void normalDef();
531 __declspec(dllexport) void normalDef();
563 void ExportMembers::Nested::normalDef() {} function in class:ExportMembers::Nested
564 void ExportMembers::normalDef() {} function in class:ExportMembers
583 __declspec(dllexport) void normalDef();
598 __declspec(dllexport) void ExportMemberDefs::normalDef() {} function in class:ExportMemberDefs
694 void normalDef(); // expected-note{{previous declaration is here}}
709 __declspec(dllexport) void MemberRedecl::normalDef() {} // expected-error{{redeclaration of 'MemberRedecl::normalDef' cannot add 'dllexport' attribute}} function in class:MemberRedecl
731 template<typename T> __declspec(dllexport) void normalDef();
753 template<typename T> void ExportMemberTmpl::normalDef() {} function in class:ExportMemberTmpl
783 template<typename T> __declspec(dllexport) void MemTmplRedecl::normalDef() {} // expected-error{{redeclaration of 'MemTmplRedecl::normalDef' cannot add 'dllexport' attribute}} function in class:MemTmplRedecl
799 template<typename T> void normalDef() {} function in struct:MemFunTmpl
854 template<> __declspec(dllexport) void MemFunTmpl::normalDef<ExplicitSpec_Def_Exported>() {} function in class:MemFunTmpl
855 template<> __declspec(dllexport) inline void MemFunTmpl::normalDef<ExplicitSpec_InlineDef_Exported>() {} function in class:MemFunTmpl
949 template<typename T> void ExportClassTmplMembers<T>::normalDef() {} function in class:ExportClassTmplMembers
986 template<typename T> __declspec(dllexport) void CTMR<T>::normalDef() {} // expected-error{{redeclaration of 'CTMR::normalDef' cannot add 'dllexport' attribute}} function in class:CTMR
1031 template<typename T> template<typename U> void ExportClsTmplMemTmpl<T>::normalDef() {} function in class:ExportClsTmplMemTmpl
1062 template<typename T> template<typename U> __declspec(dllexport) void CTMTR<T>::normalDef() {} // expected-error{{redeclaration of 'CTMTR::normalDef' cannot add 'dllexport' attribute}} function in class:CTMTR
[all...]
H A Ddllimport.cpp444 __declspec(dllimport) void normalDef(); // expected-note{{previous declaration is here}} expected-note{{previous attribute is here}}
452 __declspec(dllimport) void normalDef(); // expected-note{{previous declaration is here}} expected-note{{previous attribute is here}}
492 void ImportMembers::Nested::normalDef() {} // expected-warning{{'ImportMembers::Nested::normalDef' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}} function in class:ImportMembers::Nested
493 void ImportMembers::normalDef() {} // expected-warning{{'ImportMembers::normalDef' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}} function in class:ImportMembers
519 __declspec(dllimport) void normalDef();
536 __declspec(dllimport) void ImportMemberDefs::normalDef() {} // expected-error{{dllimport cannot be applied to non-inline function definition}} function in class:ImportMemberDefs
650 void normalDef(); // expected-note{{previous declaration is here}}
671 __declspec(dllimport) void MemberRedecl::normalDef() {} // expecte function in class:MemberRedecl
740 template<typename T> void ImportMemberTmpl::normalDef() {} // expected-warning{{'ImportMemberTmpl::normalDef' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}} function in class:ImportMemberTmpl
780 template<typename T> __declspec(dllimport) void MemTmplRedecl::normalDef() {} // expected-error{{redeclaration of 'MemTmplRedecl::normalDef' cannot add 'dllimport' attribute}} function in class:MemTmplRedecl
812 template<typename T> void normalDef() {} function in struct:MemFunTmpl
890 template<> __declspec(dllimport) void MemFunTmpl::normalDef<ExplicitSpec_Def_Imported>() {} // error on mingw function in class:MemFunTmpl
894 template<> __declspec(dllimport) inline void MemFunTmpl::normalDef<ExplicitSpec_InlineDef_Imported>() {} function in class:MemFunTmpl
1010 template<typename T> void ImportClassTmplMembers<T>::normalDef() {} // expected-warning{{'ImportClassTmplMembers::normalDef' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}} function in class:ImportClassTmplMembers
1058 template<typename T> __declspec(dllimport) void CTMR<T>::normalDef() {} // expected-error{{redeclaration of 'CTMR::normalDef' cannot add 'dllimport' attribute}} function in class:CTMR
1126 template<typename T> template<typename U> void ImportClsTmplMemTmpl<T>::normalDef() {} // expected-warning{{'ImportClsTmplMemTmpl::normalDef' redeclared without 'dllimport' attribute: previous 'dllimport' ignored}} function in class:ImportClsTmplMemTmpl
1167 template<typename T> template<typename U> __declspec(dllimport) void CTMTR<T>::normalDef() {} // expected-error{{redeclaration of 'CTMTR::normalDef' cannot add 'dllimport' attribute}} function in class:CTMTR
[all...]

Completed in 69 milliseconds