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

1 2 3 4 5

  /external/clang/test/PCH/
single-token-macro.c 15 #ifdef __stdcall
16 // __stdcall is defined as __attribute__((__stdcall__)) for targeting mingw32.
17 #undef __stdcall macro
20 #define __stdcall macro
21 #define STDCALL __stdcall
  /external/clang/test/CodeGenCXX/
mangle-windows.cpp 7 void __stdcall f1(void) {}
15 extern "C" void __stdcall f3(void) {}
24 void __stdcall foo();
25 static void __stdcall bar();
39 extern "C" void __stdcall operator++(Foo &x) {
microsoft-abi-thunks.cpp 145 virtual void __stdcall foo();
148 virtual void __stdcall foo();
151 virtual void __stdcall foo();
  /external/clang/test/CodeGen/
mangle-windows-rtd.c 6 void __stdcall f2(void) {}
microsoft-call-conv-x64.c 4 void __stdcall f2(void);
10 void __stdcall f5(void) {
18 void (__stdcall *pf2)(void) = f2;
20 void (__stdcall *pf5)(void) = f5;
35 void __stdcall f7(foo) int foo; {}
microsoft-call-conv.c 6 void __stdcall f2(void);
13 void __stdcall f5(void) {
26 void (__stdcall *pf2)(void) = f2;
29 void (__stdcall *pf5)(void) = f5;
48 void __stdcall f7(foo) int foo; {}
59 void __stdcall f11(int x, ...) {};
mangle-windows.c 4 void __stdcall f1(void) {}
10 void __stdcall f3() {}
  /external/clang/test/Sema/
MicrosoftCompatibility-x64.c 2 int __stdcall f(void); /* expected-warning {{calling convention '__stdcall' ignored for this target}} */
4 /* This should compile without warning because __stdcall is treated
MicrosoftCompatibility-x86.c 2 int __stdcall f(void); /* expected-note {{previous declaration is here}} */
  /external/chromium_org/chrome/installer/gcapi/
gcapi.h 60 BOOL __stdcall GoogleChromeCompatibilityCheck(BOOL set_flag,
67 BOOL __stdcall LaunchGoogleChrome();
73 BOOL __stdcall LaunchGoogleChromeInBackground();
84 BOOL __stdcall LaunchGoogleChromeWithDimensions(int x,
97 int __stdcall GoogleChromeDaysSinceLastRun();
106 BOOL __stdcall CanOfferReactivation(const wchar_t* brand_code,
116 BOOL __stdcall ReactivateChrome(const wchar_t* brand_code,
127 BOOL __stdcall CanOfferRelaunch(const wchar_t** partner_brandcode_list,
141 BOOL __stdcall SetRelaunchOffered(const wchar_t** partner_brandcode_list,
148 typedef BOOL (__stdcall *GCCC_CompatibilityCheck)(BOOL, int, DWORD *)
    [all...]
  /external/chromium_org/ui/base/dragdrop/
drag_source_win.h 35 HRESULT __stdcall QueryContinueDrag(BOOL escape_pressed, DWORD key_state);
36 HRESULT __stdcall GiveFeedback(DWORD effect);
39 HRESULT __stdcall QueryInterface(const IID& iid, void** object);
40 ULONG __stdcall AddRef();
41 ULONG __stdcall Release();
drop_target_win.h 34 HRESULT __stdcall DragEnter(IDataObject* data_object,
38 HRESULT __stdcall DragOver(DWORD key_state,
41 HRESULT __stdcall DragLeave();
42 HRESULT __stdcall Drop(IDataObject* data_object,
48 HRESULT __stdcall QueryInterface(const IID& iid, void** object);
49 ULONG __stdcall AddRef();
50 ULONG __stdcall Release();
os_exchange_data_provider_win.h 56 HRESULT __stdcall GetData(FORMATETC* format_etc, STGMEDIUM* medium);
57 HRESULT __stdcall GetDataHere(FORMATETC* format_etc, STGMEDIUM* medium);
58 HRESULT __stdcall QueryGetData(FORMATETC* format_etc);
59 HRESULT __stdcall GetCanonicalFormatEtc(
61 HRESULT __stdcall SetData(
63 HRESULT __stdcall EnumFormatEtc(
65 HRESULT __stdcall DAdvise(FORMATETC* format_etc, DWORD advf,
67 HRESULT __stdcall DUnadvise(DWORD connection);
68 HRESULT __stdcall EnumDAdvise(IEnumSTATDATA** enumerator);
71 HRESULT __stdcall EndOperation
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 34 __stdcall
43 (__stdcall*
55 // I should define it here because they MISSED __stdcall in those headers.
60 __stdcall
  /external/clang/test/SemaCXX/
decl-microsoft-call-conv.cpp 11 void __stdcall free_func_stdcall(); // expected-note 2 {{previous declaration is here}}
15 void __stdcall free_func_default(); // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
19 void __stdcall free_func_cdecl(); // expected-error {{function declared 'stdcall' here was previously declared 'cdecl'}}
27 void __stdcall free_func_fastcall(); // expected-error {{function declared 'stdcall' here was previously declared 'fastcall'}}
53 void_fun_t __stdcall member_typedef_stdcall;
61 static void __stdcall static_member_stdcall1();
62 static void __stdcall static_member_stdcall2();
78 void __stdcall S::member_typedef_stdcall() {}
88 void __stdcall S::static_member_default3() {} // expected-error {{function declared 'stdcall' here was previously declared without calling convention}}
91 void __stdcall S::static_member_cdecl2() {} // expected-error {{function declared 'stdcall' here was previously (…)
    [all...]
  /external/clang/test/Parser/
arm-windows-calling-convention-handling.c 7 float __stdcall stdcall(float a, float b, float c, float d) { // expected-warning {{calling convention '__stdcall' ignored for this target}}
MicrosoftExtensions.c 2 __stdcall int func0(void);
3 int __stdcall func(void);
6 extern __declspec(dllimport) void __stdcall VarR4FromDec(void);
  /external/chromium_org/third_party/angle/src/common/
event_tracer.h 12 # define TRACE_ENTRY __stdcall
  /external/chromium_org/v8/test/cctest/
test-code-stubs.h 35 #define STDCALL __stdcall
  /external/chromium_org/content/browser/gamepad/
raw_input_data_fetcher_win.h 85 typedef NTSTATUS (__stdcall *HidPGetCapsFunc)(
87 typedef NTSTATUS (__stdcall *HidPGetButtonCapsFunc)(
90 typedef NTSTATUS (__stdcall *HidPGetValueCapsFunc)(
93 typedef NTSTATUS(__stdcall* HidPGetUsagesExFunc)(
101 typedef NTSTATUS (__stdcall *HidPGetUsageValueFunc)(
105 typedef NTSTATUS (__stdcall *HidPGetScaledUsageValueFunc)(
109 typedef BOOLEAN (__stdcall *HidDGetStringFunc)(
  /external/chromium_org/third_party/angle/src/libGLESv2/
libGLESv2.cpp 38 void __stdcall glActiveTexture(GLenum texture)
55 void __stdcall glAttachShader(GLuint program, GLuint shader)
101 void __stdcall glBeginQueryEXT(GLenum target, GLuint id)
122 void __stdcall glBindAttribLocation(GLuint program, GLuint index, const GLchar* name)
161 void __stdcall glBindBuffer(GLenum target, GLuint buffer)
208 void __stdcall glBindFramebuffer(GLenum target, GLuint framebuffer)
233 void __stdcall glBindRenderbuffer(GLenum target, GLuint renderbuffer)
250 void __stdcall glBindTexture(GLenum target, GLuint texture)
289 void __stdcall glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
302 void __stdcall glBlendEquation(GLenum mode
    [all...]
  /external/chromium_org/base/
bind_internal_win.h 16 // In the x64 architecture in Windows, __fastcall, __stdcall, etc, are all
27 // __stdcall Function: Arity 0.
29 class RunnableAdapter<R(__stdcall *)()> {
33 explicit RunnableAdapter(R(__stdcall *function)())
42 R (__stdcall *function_)();
63 // __stdcall Function: Arity 1.
65 class RunnableAdapter<R(__stdcall *)(A1)> {
69 explicit RunnableAdapter(R(__stdcall *function)(A1))
78 R (__stdcall *function_)(A1);
99 // __stdcall Function: Arity 2
    [all...]
port.h 43 #define API_CALL __stdcall
  /external/chromium_org/third_party/angle/src/libEGL/
libEGL.cpp 84 EGLint __stdcall eglGetError(void)
98 EGLDisplay __stdcall eglGetDisplay(EGLNativeDisplayType display_id)
105 EGLDisplay __stdcall eglGetPlatformDisplayEXT(EGLenum platform, void *native_display, const EGLint *attrib_list)
173 EGLBoolean __stdcall eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
196 EGLBoolean __stdcall eglTerminate(EGLDisplay dpy)
212 const char *__stdcall eglQueryString(EGLDisplay dpy, EGLint name)
237 EGLBoolean __stdcall eglGetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config)
265 EGLBoolean __stdcall eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config)
295 EGLBoolean __stdcall eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value)
315 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *at (…)
    [all...]
  /external/chromium_org/content/shell/tools/
content_shell_crash_service.cc 15 int __stdcall wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd_line,

Completed in 936 milliseconds

1 2 3 4 5