HomeSort by relevance Sort by last modified time
    Searched refs:__declspec (Results 1 - 25 of 620) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
ms-declspecs.c 3 __declspec(selectany) int x1 = 1;
4 const __declspec(selectany) int x2 = 2;
8 struct __declspec(align(16)) S {
17 __declspec(naked) void t3() {} function
20 void __declspec(nothrow) t22();
24 __declspec(noinline) void t2() {} function
27 __declspec(noreturn) void f20_t(void);
dllimport-dllexport.c 9 __declspec(dllimport) void foo3();
10 __declspec(dllexport) void foo3(){}
12 __declspec(dllexport) void foo4();
  /external/clang/test/SemaCXX/
attr-selectany.cpp 4 __declspec(selectany) void foo() { } // expected-error{{'selectany' can only be applied to data items with external linkage}}
6 __declspec(selectany) int x1 = 1;
8 const __declspec(selectany) int x2 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
10 extern const __declspec(selectany) int x3 = 3;
13 const __declspec(selectany) int x4 = 4;
16 extern __declspec(selectany) int x5;
18 static __declspec(selectany) int x6 = 2; // expected-error{{'selectany' can only be applied to data items with external linkage}}
23 extern __declspec(selectany) int x7; // expected-warning{{attribute declaration must precede definition}}
33 __declspec(selectany) X x(1);
  /external/chromium_org/tools/gyp/test/additional-targets/src/dir1/
lib1.c 2 __declspec(dllexport) function
  /external/chromium_org/tools/gyp/test/dependencies/sharedlib-linksettings/
sharedlib.c 8 __declspec(dllexport) function
  /external/chromium_org/tools/gyp/test/win/importlib/
has-exports.cc 5 __declspec(dllexport) void some_function() {
hello.cc 5 __declspec(dllimport) void some_function();
  /external/chromium_org/tools/gyp/test/win/linker-flags/
mapfile.cc 5 __declspec(dllexport)
  /external/clang/test/Rewriter/
dllimport-typedef.c 6 typedef __declspec(dllimport) int CB(void);
missing-dllimport.c 7 __declspec(dllimport) int __cdecl foo(void);
  /external/clang/test/Sema/
dllimport-dllexport.c 22 inline void __declspec(dllexport) foo7(){} // expected-warning{{dllexport attribute ignored}} function
23 inline void __declspec(dllimport) foo8(){} // expected-warning{{dllimport attribute ignored}} function
25 void __declspec(dllimport) foo9(){} // expected-error{{dllimport attribute can be applied only to symbol declaration}} function
27 void __declspec(dllimport) __declspec(dllexport) foo10(); // expected-warning{{dllimport attribute ignored}}
29 void __declspec(dllexport) foo11();
30 void __declspec(dllimport) foo11(); // expected-warning{{dllimport attribute ignored}}
32 typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}}
34 typedef int __declspec(dllimport) type2; // expected-warning{{'dllimport' attribute only applies to variables and functions}}
36 void __declspec(dllimport) foo12()
    [all...]
MicrosoftCompatibility.c 14 __declspec(noreturn) void f6( void ) { function
18 __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */
19 struct __declspec(aligned) S2 {}; /* expected-warning {{unknown __declspec attribute 'aligned' ignored}} */ function
21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */ function
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
warning-level3.cc 6 struct __declspec(align(8)) C8 { __int64 i; };
7 struct __declspec(align(4)) C4 { C8 m8; };
  /external/chromium/net/base/
net_export.h 17 #define NET_EXPORT __declspec(dllexport)
18 #define NET_EXPORT_PRIVATE __declspec(dllexport)
20 #define NET_EXPORT __declspec(dllimport)
21 #define NET_EXPORT_PRIVATE __declspec(dllimport)
  /external/chromium_org/base/
base_export.h 12 #define BASE_EXPORT __declspec(dllexport)
13 #define BASE_EXPORT_PRIVATE __declspec(dllexport)
15 #define BASE_EXPORT __declspec(dllimport)
16 #define BASE_EXPORT_PRIVATE __declspec(dllimport)
  /external/chromium_org/crypto/
crypto_export.h 16 #define CRYPTO_EXPORT __declspec(dllexport)
17 #define CRYPTO_EXPORT_PRIVATE __declspec(dllexport)
19 #define CRYPTO_EXPORT __declspec(dllimport)
20 #define CRYPTO_EXPORT_PRIVATE __declspec(dllimport)
  /external/chromium_org/net/base/
net_export.h 16 #define NET_EXPORT __declspec(dllexport)
17 #define NET_EXPORT_PRIVATE __declspec(dllexport)
19 #define NET_EXPORT __declspec(dllimport)
20 #define NET_EXPORT_PRIVATE __declspec(dllimport)
  /external/chromium_org/tools/gyp/test/ninja/solibs_avoid_relinking/
solib.cc 2 __declspec(dllexport)
  /external/chromium_org/webkit/browser/
webkit_storage_browser_export.h 12 #define WEBKIT_STORAGE_BROWSER_EXPORT __declspec(dllexport)
13 #define WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE __declspec(dllexport)
15 #define WEBKIT_STORAGE_BROWSER_EXPORT __declspec(dllimport)
16 #define WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE __declspec(dllimport)
  /external/chromium_org/sync/base/
sync_export.h 12 #define SYNC_EXPORT __declspec(dllexport)
13 #define SYNC_EXPORT_PRIVATE __declspec(dllexport)
15 #define SYNC_EXPORT __declspec(dllimport)
16 #define SYNC_EXPORT_PRIVATE __declspec(dllimport)
18 #define SYNC_EXPORT __declspec(dllimport)
  /external/chromium/base/
base_api.h 18 #define BASE_API __declspec(dllexport)
20 #define BASE_API __declspec(dllimport)
  /external/chromium/googleurl/src/
url_common.h 40 #define GURL_API __declspec(dllexport)
42 #define GURL_API __declspec(dllimport)
  /external/chromium/ui/base/
ui_export.h 16 #define UI_EXPORT __declspec(dllexport)
18 #define UI_EXPORT __declspec(dllimport)
  /external/chromium_org/ash/
ash_export.h 15 #define ASH_EXPORT __declspec(dllexport)
17 #define ASH_EXPORT __declspec(dllimport)
  /external/chromium_org/base/i18n/
base_i18n_export.h 12 #define BASE_I18N_EXPORT __declspec(dllexport)
14 #define BASE_I18N_EXPORT __declspec(dllimport)

Completed in 395 milliseconds

1 2 3 4 5 6 7 8 91011>>