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

1 2

  /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/library/src/
lib1.c 4 __declspec(dllexport) function
lib1_moveable.c 4 __declspec(dllexport) function
lib2.c 4 __declspec(dllexport) function
lib2_moveable.c 4 __declspec(dllexport) function
  /external/chromium_org/tools/gyp/test/module/src/
lib1.c 4 __declspec(dllexport) function
lib2.c 4 __declspec(dllexport) function
  /external/chromium_org/tools/gyp/test/link-dependency/
mymalloc.c 6 __declspec(dllexport) void foo() {} function
  /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);
dllexport.c 14 __declspec(dllexport) extern int ExternGlobalDecl;
18 __declspec(dllexport) int GlobalDef;
22 __declspec(dllexport) int GlobalInit = 1;
26 __declspec(dllexport) extern int GlobalDeclInit;
31 __declspec(dllexport) extern int GlobalRedecl1;
32 __declspec(dllexport) int GlobalRedecl1;
35 __declspec(dllexport) extern int GlobalRedecl2;
48 __declspec(dllexport) void def(void) {} function
53 __declspec(dllexport) inline void inlineFunc(void) {} function
54 __declspec(dllexport) inline void externInlineFunc(void) { function
102 void __declspec(dllimport) __declspec(dllexport) precedence1B(void) {} function
107 void __declspec(dllexport) __declspec(dllimport) precedence2B(void) {} function
    [all...]
dllimport.c 21 __declspec(dllimport) extern int ExternGlobalDecl;
26 __declspec(dllimport) int GlobalDecl;
31 __declspec(dllimport) extern int GlobalRedecl1;
32 __declspec(dllimport) extern int GlobalRedecl1;
36 __declspec(dllimport) int GlobalRedecl2;
37 __declspec(dllimport) int GlobalRedecl2;
43 __declspec(dllimport) extern int GlobalRedecl3;
55 __declspec(dllimport) void decl(void);
64 __declspec(dllimport) inline void inlineFunc(void) {} function
72 __declspec(dllimport) __attribute__((noinline)) inline void noinline(void) {
73 __declspec(dllimport) __attribute__((always_inline)) inline void alwaysInline(void) {} function
    [all...]
  /external/clang/test/Sema/
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 {{__declspec attribute 'aligned' is not supported}} */ function
21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */ function
23 __declspec(__noreturn__) void f7(void); /* expected-warning {{__declspec attribute '__noreturn__' is not supported}} */
dllexport.c 7 __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' attribute only applies to variables and functions}} function
12 struct __declspec(dllexport) Record {}; // expected-warning{{'dllexport' attribute only applies to variables and functions}} function
21 __declspec(dllexport) extern int ExternGlobalDecl;
24 __declspec(dllexport) int GlobalDef;
27 __declspec(dllexport) int GlobalInit1 = 1;
28 int __declspec(dllexport) GlobalInit2 = 1
72 __declspec(dllexport) inline void inlineFunc1() {} function
92 __declspec(dllexport) inline void redecl5() {} \/\/ expected-error{{redeclaration of 'redecl5' cannot add 'dllexport' attribute}} function
129 void __declspec(dllimport) __declspec(dllexport) precedence1B() {} \/\/ expected-warning{{'dllimport' attribute ignored}} function
132 void __declspec(dllexport) __declspec(dllimport) precedence2B() {} \/\/ expected-warning{{'dllimport' attribute ignored}} function
    [all...]
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}} function
12 struct __declspec(dllimport) Record {}; // expected-warning{{'dllimport' attribute only applies to variables and functions}} function
21 __declspec(dllimport) extern int ExternGlobalDecl;
24 __declspec(dllimport) int GlobalDecl;
32 __declspec(dllimport) extern int ExternGlobalInit = 1; // expected-error{{definition of dllimport data}}
33 __declspec(dllimport) int GlobalInit1 = 1; // expected-error{{definition of dllimport data}
108 __declspec(dllimport) void def() {} \/\/ expected-error{{dllimport cannot be applied to non-inline function definition}} function
111 __declspec(dllimport) inline void inlineFunc1() {} function
134 __declspec(dllimport) inline void redecl6() {} \/\/ expected-error{{redeclaration of 'redecl6' cannot add 'dllimport' attribute}} function
    [all...]
pragma-ms_struct.c 62 struct __declspec(ms_struct) bad { // expected-warning {{__declspec attribute 'ms_struct' is not supported}} function
MicrosoftExtensions.c 23 struct __declspec(uuid("00000000-0000-0000-C000-000000000046")) IUnknown {}; /* expected-error {{'uuid' attribute is not supported in C}} */
90 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' has been explicitly marked deprecated here}}
91 struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{'DS1' has been explicitly marked deprecated here}} function
94 __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' has been explicitly marked deprecated here}}
96 struct __declspec(deprecated(123)) DS2 {}; // expected-error {{'deprecated' attribute requires a string}}
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_stdlib.c 38 __declspec(selectany) int _fltused=1;
42 void __declspec(naked) _ftol() function
88 void __declspec(naked) _ftol2_sse() function
94 void __declspec(naked) _allmul() function
128 void __declspec(naked) _alldiv() function
211 void __declspec(naked) _aulldiv() function
264 void __declspec(naked) _allrem() function
346 void __declspec(naked) _aullrem() function
400 void __declspec(naked) _alldvrm() function
505 void __declspec(naked) _aulldvrm( function
573 void __declspec(naked) _allshl() function
595 void __declspec(naked) _aullshr() function
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.c 6 extern __declspec(dllimport) void __stdcall VarR4FromDec(void);
7 __declspec(deprecated) __declspec(deprecated) char * __cdecl ltoa( long _Val, char * _DstBuf, int _Radix);
8 __declspec(safebuffers) __declspec(noalias) __declspec(restrict) void * __cdecl xxx(void *_Memory); /* expected-warning{{__declspec attribute 'safebuffers' is not supported}} expected-warning{{__declspec attribute 'noalias' is not supported}} expected-warning{{__declspec attribute 'restrict' is not supported}} */
41 enum __declspec(deprecated) E2 { i, j, k }; /* expected-note {{'E2' has been explicitly marked deprecated here}} * function
42 __declspec(deprecated) enum E3 { a, b, c } e; \/* expected-note {{'e' has been explicitly marked deprecated here}} *\/ function
61 struct __declspec(frobble) S1 {}; \/* expected-warning {{__declspec attribute 'frobble' is not supported}} *\/ function
    [all...]
  /external/tcpdump/
addrtoname.c 762 __declspec(dllimport) function
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
scale.c 30 #define ALIGN16(var) __declspec(align(16)) var
520 #define TALIGN16(t, var) __declspec(align(16)) t _ ## var
640 __declspec(naked)
668 __declspec(naked) function
712 __declspec(naked)
744 __declspec(naked)
803 __declspec(naked)
836 __declspec(naked)
909 __declspec(naked)
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c 30 #define ALIGN16(var) __declspec(align(16)) var
520 #define TALIGN16(t, var) __declspec(align(16)) t _ ## var
640 __declspec(naked)
668 __declspec(naked) function
712 __declspec(naked)
744 __declspec(naked)
803 __declspec(naked)
836 __declspec(naked)
909 __declspec(naked)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
scale.c 30 #define ALIGN16(var) __declspec(align(16)) var
520 #define TALIGN16(t, var) __declspec(align(16)) t _ ## var
640 __declspec(naked)
668 __declspec(naked) function
712 __declspec(naked)
744 __declspec(naked)
803 __declspec(naked)
836 __declspec(naked)
909 __declspec(naked)
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 21952 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
24280 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
31065 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
62318 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 19203 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
24417 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
31889 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
68411 __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ function
132620 __declspec(dllexport) function
148101 __declspec(dllexport) function
148606 __declspec(dllexport) function
    [all...]

Completed in 1326 milliseconds

1 2