OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dllimport
(Results
1 - 25
of
526
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/
direct_client.c
1
__declspec(
dllimport
) int dll_func (void);
/external/clang/test/Sema/
dllimport.c
7
__declspec(
dllimport
) typedef int typedef1; // expected-warning{{'
dllimport
' attribute only applies to variables and functions}}
8
typedef __declspec(
dllimport
) int typedef2; // expected-warning{{'
dllimport
' attribute only applies to variables and functions}}
9
typedef int __declspec(
dllimport
) typedef3; // expected-warning{{'
dllimport
' attribute only applies to variables and functions}}
10
typedef __declspec(
dllimport
) void (*FunTy)(); // expected-warning{{'
dllimport
' attribute only applies to variables and functions}}
11
enum __declspec(
dllimport
) Enum { EnumVal }; // expected-warning{{'
dllimport
' attribute only applies to variables and functions}
[
all
...]
dllexport.c
123
// dllexport takes precedence over
dllimport
if both are specified.
124
__attribute__((
dllimport
, dllexport)) extern int PrecedenceExternGlobal1A; // expected-warning{{'
dllimport
' attribute ignored}}
125
__declspec(
dllimport
) __declspec(dllexport) extern int PrecedenceExternGlobal1B; // expected-warning{{'
dllimport
' attribute ignored}}
127
__attribute__((dllexport,
dllimport
)) extern int PrecedenceExternGlobal2A; // expected-warning{{'
dllimport
' attribute ignored}}
128
__declspec(dllexport) __declspec(
dllimport
) extern int PrecedenceExternGlobal2B; // expected-warning{{'
dllimport
' attribute ignored}}
130
__attribute__((
dllimport
, dllexport)) int PrecedenceGlobal1A; // expected-warning{{'dllimport' attribute ignored}
[
all
...]
/external/clang/test/SemaCXX/
dllimport.cpp
18
__declspec(
dllimport
) typedef int typedef1; // expected-warning{{'
dllimport
' attribute only applies to variables, functions and classes}}
19
typedef __declspec(
dllimport
) int typedef2; // expected-warning{{'
dllimport
' attribute only applies to variables, functions and classes}}
20
typedef int __declspec(
dllimport
) typedef3; // expected-warning{{'
dllimport
' attribute only applies to variables, functions and classes}}
21
typedef __declspec(
dllimport
) void (*FunTy)(); // expected-warning{{'
dllimport
' attribute only applies to variables, functions and classes}}
22
enum __declspec(
dllimport
) Enum {}; // expected-warning{{'
dllimport
' attribute only applies to variables, functions and classes}
[
all
...]
PR19955.cpp
4
extern int __attribute__((
dllimport
)) var;
7
extern __attribute__((
dllimport
)) void fun();
/external/clang/test/CodeGen/
windows-on-arm-dllimport-dllexport.c
5
__declspec(
dllimport
) int import_int;
12
__declspec(
dllimport
) void import_function(int);
19
// CHECK: @import_int = external
dllimport
global i32
24
// CHECK: declare
dllimport
arm_aapcs_vfpcc void @import_function(i32)
dllimport.c
20
// CHECK: @ExternGlobalDecl = external
dllimport
global i32
21
__declspec(
dllimport
) extern int ExternGlobalDecl;
24
//
dllimport
implies a declaration.
25
// CHECK: @GlobalDecl = external
dllimport
global i32
26
__declspec(
dllimport
) int GlobalDecl;
30
// CHECK: @GlobalRedecl1 = external
dllimport
global i32
31
__declspec(
dllimport
) extern int GlobalRedecl1;
32
__declspec(
dllimport
) extern int GlobalRedecl1;
35
// CHECK: @GlobalRedecl2 = external
dllimport
global i32
36
__declspec(
dllimport
) int GlobalRedecl2
[
all
...]
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cygwin/
testdll.c
2
__attribute((
dllimport
)) int global_a;
/external/clang/test/Rewriter/
missing-dllimport.c
3
// Do not report that 'foo()' is redeclared without
dllimport
attribute.
7
__declspec(
dllimport
) int __cdecl foo(void);
/external/clang/test/CodeGenCXX/
dllimport.cpp
39
// MSC-DAG: @"\01?ExternGlobalDecl@@3HA" = external
dllimport
global i32
40
// GNU-DAG: @ExternGlobalDecl = external
dllimport
global i32
41
__declspec(
dllimport
) extern int ExternGlobalDecl;
44
//
dllimport
implies a declaration.
45
// MSC-DAG: @"\01?GlobalDecl@@3HA" = external
dllimport
global i32
46
// GNU-DAG: @GlobalDecl = external
dllimport
global i32
47
__declspec(
dllimport
) int GlobalDecl;
51
// MSC-DAG: @"\01?GlobalRedecl1@@3HA" = external
dllimport
global i32
52
// GNU-DAG: @GlobalRedecl1 = external
dllimport
global i32
53
__declspec(
dllimport
) extern int GlobalRedecl1
[
all
...]
dllimport-members.cpp
68
// M32-DAG: declare
dllimport
x86_thiscallcc void @"\01?normalDecl@ImportMembers@@QAEXXZ"(%struct.ImportMembers*)
69
// M64-DAG: declare
dllimport
void @"\01?normalDecl@ImportMembers@@QEAAXXZ"(%struct.ImportMembers*)
70
// M32-DAG: declare
dllimport
x86_thiscallcc void @"\01?normalInclass@ImportMembers@@QAEXXZ"(%struct.ImportMembers*)
71
// M64-DAG: declare
dllimport
void @"\01?normalInclass@ImportMembers@@QEAAXXZ"(%struct.ImportMembers*)
72
// M32-DAG: declare
dllimport
x86_thiscallcc void @"\01?normalInlineDef@ImportMembers@@QAEXXZ"(%struct.ImportMembers*)
73
// M64-DAG: declare
dllimport
void @"\01?normalInlineDef@ImportMembers@@QEAAXXZ"(%struct.ImportMembers*)
74
// M32-DAG: declare
dllimport
x86_thiscallcc void @"\01?normalInlineDecl@ImportMembers@@QAEXXZ"(%struct.ImportMembers*)
75
// M64-DAG: declare
dllimport
void @"\01?normalInlineDecl@ImportMembers@@QEAAXXZ"(%struct.ImportMembers*)
78
// G32-DAG: declare
dllimport
x86_thiscallcc void @_ZN13ImportMembers10normalDeclEv(%struct.ImportMembers*)
79
// G64-DAG: declare
dllimport
void @_ZN13ImportMembers10normalDeclEv(%struct.ImportMembers*
[
all
...]
dllimport-rtti.cpp
4
struct __declspec(
dllimport
) S {
7
// MSVC-DAG: @"\01??_7S@@6B@" = available_externally
dllimport
13
// GNU-DAG: @_ZTV1S = available_externally
dllimport
14
// GNU-DAG: @_ZTI1S = external
dllimport
19
struct __declspec(
dllimport
) V {
22
// GNU-DAG: @_ZTV1V = available_externally
dllimport
27
__declspec(
dllimport
) virtual void f();
/external/clang/test/Index/
index-attrs.c
10
void __declspec(
dllimport
) import_function(void);
12
// CHECK: <attribute>: attribute(
dllimport
)
13
void __attribute__((
dllimport
)) import_gnu_attribute(void);
15
// CHECK: <attribute>: attribute(
dllimport
)
index-attrs.cpp
11
struct __declspec(
dllimport
) import_s {
15
// CHECK: <attribute>: attribute(
dllimport
)
17
// CHECK: <attribute>: attribute(
dllimport
)
27
class __attribute__((
dllimport
)) import_gnu_s {
31
// CHECK: <attribute>: attribute(
dllimport
)
33
// CHECK: <attribute>: attribute(
dllimport
)
43
void __declspec(
dllimport
) import_function(void);
45
// CHECK: <attribute>: attribute(
dllimport
)
46
void __attribute__((
dllimport
)) import_gnu_function(void);
48
// CHECK: <attribute>: attribute(
dllimport
)
[
all
...]
/external/llvm/test/Linker/Inputs/
linkage2.ll
3
@test2_a = external
dllimport
global i8
/external/avahi/avahi-ui-sharp/
ServiceDialog.cs
13
[
DllImport
("avahi-ui")]
16
[
DllImport
("avahi-ui")]
19
[
DllImport
("avahi-ui")]
22
[
DllImport
("avahi-ui")]
25
[
DllImport
("avahi-ui")]
28
[
DllImport
("avahi-ui")]
31
[
DllImport
("avahi-ui")]
34
[
DllImport
("avahi-ui")]
37
[
DllImport
("avahi-ui")]
40
[
DllImport
("avahi-ui")
[
all
...]
/external/llvm/test/CodeGen/X86/
dllimport.ll
9
@Var1 = external
dllimport
global i32
10
@Var2 = available_externally
dllimport
unnamed_addr constant i32 1
12
declare
dllimport
void @fun()
14
define available_externally
dllimport
void @inline1() {
18
define available_externally
dllimport
void @inline2() alwaysinline {
22
declare
dllimport
x86_stdcallcc void @stdfun() nounwind
23
declare
dllimport
x86_fastcallcc void @fastfun() nounwind
24
declare
dllimport
x86_thiscallcc void @thisfun() nounwind
dllimport-x86_64.ll
9
@Var1 = external
dllimport
global i32
10
@Var2 = available_externally
dllimport
unnamed_addr constant i32 1
12
declare
dllimport
void @fun()
14
define available_externally
dllimport
void @inline1() {
18
define available_externally
dllimport
void @inline2() {
/external/llvm/test/Object/
dllimport.ll
10
declare
dllimport
void @f()
11
@v = external
dllimport
global i32
/external/mesa3d/src/mesa/drivers/osmesa/
SConscript
22
'_GDI32_', # prevent wgl* being declared __declspec(
dllimport
)
26
# prevent _glapi_* from being declared __declspec(
dllimport
)
/external/mesa3d/src/mesa/drivers/windows/gdi/
SConscript
11
'_GDI32_', # prevent wgl* being declared __declspec(
dllimport
)
15
# prevent _glapi_* from being declared __declspec(
dllimport
)
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mtxdm.h
15
__declspec(
dllimport
) HRESULT __cdecl GetDispenserManager(IDispenserManager **);
polarity.h
13
#define POLARITY __declspec(
dllimport
)
/prebuilts/go/darwin-x86/misc/cgo/testsovar/
cgoso_c.h
11
# define VAR __declspec(
dllimport
)
/prebuilts/go/linux-x86/misc/cgo/testsovar/
cgoso_c.h
11
# define VAR __declspec(
dllimport
)
Completed in 1706 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>