Searched refs:dllexport (Results 1 - 25 of 159) sorted by relevance

1234567

/external/v8/tools/gyp/test/win/uldi/
H A Ddll.cc5 __declspec(dllexport) void SomeFunction() {
/external/clang/test/Sema/
H A Ddllexport.c7 __declspec(dllexport) typedef int typedef1; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
8 typedef __declspec(dllexport) int typedef2; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
9 typedef int __declspec(dllexport) typedef3; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
10 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables and functions}}
11 enum __declspec(dllexport) Enum { EnumVal }; // expected-warning{{'dllexport' attribut
[all...]
/external/clang/test/CodeGen/
H A Ddllexport.c14 __declspec(dllexport) extern int ExternGlobalDecl;
16 // dllexport implies a definition.
17 // CHECK-DAG: @GlobalDef = common dllexport global i32 0, align 4
18 __declspec(dllexport) int GlobalDef;
21 // CHECK-DAG: @GlobalInit = dllexport global i32 1, align 4
22 __declspec(dllexport) int GlobalInit = 1;
25 // CHECK-DAG: @GlobalDeclInit = dllexport global i32 1, align 4
26 __declspec(dllexport) extern int GlobalDeclInit;
30 // CHECK-DAG: @GlobalRedecl1 = common dllexport global i32 0, align 4
31 __declspec(dllexport) exter
[all...]
H A Dwindows-on-arm-dllimport-dllexport.c3 __declspec(dllexport) int export_int;
7 __declspec(dllexport) void export_declared_function();
9 __declspec(dllexport) void export_implemented_function() {
20 // CHECK: @export_int = common dllexport global i32 0, align 4
22 // CHECK: define dllexport arm_aapcs_vfpcc void @export_implemented_function()
/external/clang/test/CodeGenCXX/
H A Dinline-dllexport-member.cpp4 struct __declspec(dllexport) s {
H A Dpr20897.cpp4 // __declspec(dllexport) causes us to export the implicit constructor.
5 struct __declspec(dllexport) Derived : virtual Base {
6 // CHECK-LABEL: define weak_odr dllexport x86_thiscallcc %struct.Derived* @"\01??0Derived@@QAE@ABU0@@Z"
19 // __declspec(dllexport) causes us to export the implicit copy constructor.
20 struct __declspec(dllexport) Derived2 : virtual Base {
21 // CHECK-LABEL: define weak_odr dllexport x86_thiscallcc %struct.Derived2* @"\01??0Derived2@@QAE@ABU0@@Z"
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)
29 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?normalInclass@ExportMembers@@QAEXXZ"(%struct.ExportMembers* %this)
30 // M64-DAG: define weak_odr dllexport void @"\01?normalInclass@ExportMembers@@QEAAXXZ"(%struct.ExportMembers* %this)
31 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?normalInlineDef@ExportMembers@@QAEXXZ"(%struct.ExportMembers* %this)
32 // M64-DAG: define weak_odr dllexport void @"\01?normalInlineDef@ExportMembers@@QEAAXXZ"(%struct.ExportMembers* %this)
33 // M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?normalInlineDecl@ExportMembers@@QAEXXZ"(%struct.ExportMembers* %this)
34 // M64-DAG: define weak_odr dllexport void @"\01?normalInlineDecl@ExportMembers@@QEAAXXZ"(%struct.ExportMembers* %this)
35 // G32-DAG: define dllexport x86_thiscallcc void @_ZN13ExportMembers9normalDefEv(%struct.ExportMembers* %this)
36 // G64-DAG: define dllexport voi
[all...]
H A Ddllexport.cpp36 __declspec(dllexport) extern int ExternGlobalDecl;
38 // dllexport implies a definition.
39 // MSC-DAG: @"\01?GlobalDef@@3HA" = dllexport global i32 0, align 4
40 // GNU-DAG: @GlobalDef = dllexport global i32 0, align 4
41 __declspec(dllexport) int GlobalDef;
44 // MSC-DAG: @"\01?GlobalInit1@@3HA" = dllexport global i32 1, align 4
45 // GNU-DAG: @GlobalInit1 = dllexport global i32 1, align 4
46 __declspec(dllexport) int GlobalInit1 = 1;
48 // MSC-DAG: @"\01?GlobalInit2@@3HA" = dllexport global i32 1, align 4
49 // GNU-DAG: @GlobalInit2 = dllexport globa
[all...]
H A Ddllexport-alias.cpp5 // are dllexport'ed.
7 class __declspec(dllexport) A {
17 // CHECK: @_ZN1AC1Ev = dllexport alias void (%class.A*), void (%class.A*)* @_ZN1AC2Ev
18 // CHECK: @_ZN1AD1Ev = dllexport alias void (%class.A*), void (%class.A*)* @_ZN1AD2Ev
/external/v8/tools/gyp/test/additional-targets/src/dir1/
H A Dlib1.c2 __declspec(dllexport)
/external/v8/tools/gyp/test/dependencies/module-dep/
H A Ddll.cc6 __declspec(dllexport)
/external/v8/tools/gyp/test/dependencies/sharedlib-linksettings/
H A Dsharedlib.c8 __declspec(dllexport)
/external/v8/tools/gyp/test/win/importlib/
H A Dhas-exports.cc5 __declspec(dllexport) void some_function() {
/external/v8/tools/gyp/test/win/linker-flags/
H A Dmapfile.cc5 __declspec(dllexport)
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_and_lib.cc10 extern "C" __declspec(dllexport) int f1() {
15 extern "C" __declspec(dllexport) int f2() {
H A Ddll_cerr.cc11 extern "C" __declspec(dllexport)
H A Ddll_intercept_memchr.cc7 extern "C" __declspec(dllexport)
H A Ddll_operator_array_new_left_oob.cc5 extern "C" __declspec(dllexport)
/external/clang/test/SemaCXX/
H A Ddllexport.cpp19 __declspec(dllexport) typedef int typedef1; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
20 typedef __declspec(dllexport) int typedef2; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
21 typedef int __declspec(dllexport) typedef3; // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
22 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only applies to variables, functions and classes}}
23 enum __declspec(dllexport) Enum {}; // expected-warning{{'dllexport' attribut
[all...]
H A Ddllexport-pr22591.cpp23 struct __declspec(dllexport) S {
/external/clang/test/Index/
H A Dindex-attrs.c3 void __declspec(dllexport) export_function(void) {}
5 // CHECK: <attribute>: attribute(dllexport)
6 void __attribute__((dllexport)) export_gnu_attribute(void) {}
8 // CHECK: <attribute>: attribute(dllexport)
H A Dindex-attrs.cpp3 struct __declspec(dllexport) export_s {
7 // CHECK: <attribute>: attribute(dllexport)
9 // CHECK: <attribute>: attribute(dllexport)
19 class __attribute__((dllexport)) export_gnu_s {
23 // CHECK: <attribute>: attribute(dllexport)
25 // CHECK: <attribute>: attribute(dllexport)
35 extern "C" void __declspec(dllexport) export_function(void) {}
37 // CHECK: <attribute>: attribute(dllexport)
38 extern "C" void __attribute__((dllexport)) export_gnu_function(void) {}
40 // CHECK: <attribute>: attribute(dllexport)
[all...]
/external/v8/tools/gyp/test/determinism/
H A Dsolib.cc2 __declspec(dllexport)
/external/v8/tools/gyp/test/ninja/solibs_avoid_relinking/
H A Dsolib.cc2 __declspec(dllexport)
/external/pcre/dist/
H A Dpcrecpp_internal.h45 information there, using __declspec(dllexport) without "extern" we have a
57 # define PCRECPP_EXP_DECL extern __declspec(dllexport)
58 # define PCRECPP_EXP_DEFN __declspec(dllexport)

Completed in 4199 milliseconds

1234567