Searched refs:win (Results 1 - 25 of 218) sorted by relevance

123456789

/external/clang/test/Preprocessor/
H A Dmacro_arg_slocentry_merge.h5 #define WINDOW win
7 extern void f P_((WINDOW win));
/external/webkit/Source/WebCore/platform/wx/
H A DScrollViewWx.cpp59 void bindEvents(wxWindow* win) argument
62 win->Connect(wxEVT_SCROLLWIN_TOP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
63 win->Connect(wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
64 win->Connect(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
65 win->Connect(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
66 win->Connect(wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
67 win->Connect(wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
68 win->Connect(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
69 win->Connect(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
133 void ScrollView::setPlatformWidget(wxWindow* win) argument
144 wxWindow* win = platformWidget(); local
154 wxWindow* win = platformWidget(); local
181 wxWindow* win = platformWidget(); local
224 wxWindow* win = platformWidget(); local
234 wxWindow* win = platformWidget(); local
[all...]
/external/chromium/base/win/
H A Dwrapped_window_proc.cc5 #include "base/win/wrapped_window_proc.h"
11 base::win::WinProcExceptionFilter s_exception_filter = NULL;
16 namespace win { namespace in namespace:base
31 } // namespace win
H A Dwin_util_unittest.cc9 #include "base/win/win_util.h"
10 #include "base/win/windows_version.h"
14 namespace win { namespace in namespace:base
36 if (GetVersion() >= base::win::VERSION_VISTA) {
57 } // namespace win
H A Di18n.h16 namespace win { namespace in namespace:base
32 } // namespace win
H A Dwrapped_window_proc_unittest.cc5 #include "base/win/wrapped_window_proc.h"
61 wc.lpfnWndProc = base::win::WrappedWindowProc<TestWindowProc>;
72 base::win::WinProcExceptionFilter old_filter =
73 base::win::SetWinProcExceptionFilter(TestWrappedExceptionFiter::Filter);
78 base::win::SetWinProcExceptionFilter(old_filter);
H A Dwin_util.cc5 #include "base/win/win_util.h"
16 #include "base/win/registry.h"
20 #include "base/win/scoped_handle.h"
21 #include "base/win/windows_version.h"
24 namespace win { namespace in namespace:base
36 (base::win::GetVersion() >= base::win::VERSION_VISTA) ?
50 base::win::ScopedHandle token_scoped(token);
92 base::win::RegKey key(HKEY_LOCAL_MACHINE,
130 base::win
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11modes_c.h39 extern void X11_WaitMapped(_THIS, Window win);
40 extern void X11_WaitUnmapped(_THIS, Window win);
/external/sonivox/jet_tools/JetCreator/
H A DJetStatusEvent.py27 def EVT_JET_STATUS(win, func):
28 win.Connect(-1, -1, EVT_JET_STATUS_ID, func)
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_loader_win.h10 #include "base/win/object_watcher.h"
19 public base::win::ObjectWatcher::Delegate {
43 base::win::ObjectWatcher user_policy_watcher_;
44 base::win::ObjectWatcher machine_policy_watcher_;
/external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
H A Dinspector-wrappers-test-utils.js12 var win = obj.arguments[0].target.ownerDocument.defaultView;
13 xhr(win);
16 function xhr(win) {
17 var xhr = new win.XMLHttpRequest();
/external/chromium/base/
H A Dsys_info_win.cc13 #include "base/win/windows_version.h"
19 return win::OSInfo::GetInstance()->processors();
56 win::OSInfo* os_info = win::OSInfo::GetInstance();
57 win::OSInfo::VersionNumber version_number = os_info->version_number();
60 win::OSInfo::ServicePack service_pack = os_info->service_pack();
95 return win::OSInfo::GetInstance()->allocation_granularity();
102 win::OSInfo* os_info = win::OSInfo::GetInstance();
/external/chromium/net/base/
H A Dnetwork_change_notifier_win.h13 #include "base/win/object_watcher.h"
19 public base::win::ObjectWatcher::Delegate {
38 base::win::ObjectWatcher addr_watcher_;
H A Dplatform_mime_util_win.cc10 #include "base/win/registry.h"
19 base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
/external/opencv/cv/src/
H A Dcvcornersubpix.cpp45 int count, CvSize win, CvSize zeroZone,
63 int win_w = win.width * 2 + 1, win_h = win.height * 2 + 1;
86 if( win.width <= 0 || win.height <= 0 )
132 coeff = 1. / (win.width * win.width);
135 for( i = -win.width, k = 0; i <= win.width; i++, k++ )
140 if( win
44 cvFindCornerSubPix( const void* srcarr, CvPoint2D32f* corners, int count, CvSize win, CvSize zeroZone, CvTermCriteria criteria ) argument
[all...]
/external/chromium/webkit/glue/
H A Duser_agent.cc16 #include "base/win/windows_version.h"
67 base::win::OSInfo* os_info = base::win::OSInfo::GetInstance();
68 if (os_info->wow64_status() == base::win::OSInfo::WOW64_ENABLED) {
71 base::win::OSInfo::WindowsArchitecture windows_architecture =
73 if (windows_architecture == base::win::OSInfo::X64_ARCHITECTURE)
75 else if (windows_architecture == base::win::OSInfo::IA64_ARCHITECTURE)
/external/chromium/chrome/browser/history/
H A Dhistory_publisher_win.cc15 #include "base/win/registry.h"
16 #include "base/win/scoped_bstr.h"
17 #include "base/win/scoped_comptr.h"
18 #include "base/win/scoped_variant.h"
43 std::vector< base::win::ScopedComPtr<IChromeHistoryIndexer> >* indexers) {
45 base::win::RegistryKeyIterator r_iter(root, path);
49 base::win::ScopedComPtr<IChromeHistoryIndexer>(indexer));
120 base::win::ScopedVariant time(var_time, VT_DATE);
121 base::win::ScopedBstr url(ASCIIToWide(page_data.url.spec()).c_str());
122 base::win
[all...]
/external/chromium/chrome/common/
H A Dservice_process_util_win.cc15 #include "base/win/object_watcher.h"
16 #include "base/win/scoped_handle.h"
17 #include "base/win/win_util.h"
50 : public base::win::ObjectWatcher::Delegate {
69 base::win::ScopedHandle shutdown_event_;
70 base::win::ObjectWatcher watcher_;
78 base::win::ScopedHandle shutdown_event;
92 base::win::ScopedHandle event(
102 base::win::ScopedHandle ready_event;
115 base::win
[all...]
/external/qemu/slirp/
H A Dtcp_output.c70 register long len, win; local
98 win = min(tp->snd_wnd, tp->snd_cwnd);
111 if (win == 0) {
130 win = 1;
137 len = min(so->so_snd.sb_cc, win) - off;
151 if (win == 0) {
164 win = sbspace(&so->so_rcv);
197 if (win > 0) {
203 long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
437 if (win < (lon
[all...]
/external/qemu/slirp-android/
H A Dtcp_output.c70 register long len, win; local
98 win = min(tp->snd_wnd, tp->snd_cwnd);
111 if (win == 0) {
130 win = 1;
137 len = min(so->so_snd.sb_cc, win) - off;
151 if (win == 0) {
164 win = sbspace(&so->so_rcv);
197 if (win > 0) {
203 long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -
437 if (win < (lon
[all...]
/external/chromium/chrome/browser/
H A Dmemory_details_win.cc13 #include "base/win/scoped_handle.h"
14 #include "base/win/windows_version.h"
75 base::win::OSInfo::WindowsArchitecture windows_architecture =
76 base::win::OSInfo::GetInstance()->architecture();
78 base::win::ScopedHandle snapshot(
91 base::win::ScopedHandle process_handle(::OpenProcess(
96 ((windows_architecture == base::win::OSInfo::X64_ARCHITECTURE) ||
97 (windows_architecture == base::win::OSInfo::IA64_ARCHITECTURE)) &&
98 (base::win::OSInfo::GetWOW64StatusForProcess(process_handle) ==
99 base::win
[all...]
H A Dbackground_mode_manager_win.cc12 #include "base/win/registry.h"
39 base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
41 base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
54 base::win::RegKey read_key(kBackgroundModeRegistryRootKey,
56 base::win::RegKey write_key(kBackgroundModeRegistryRootKey,
/external/chromium/net/socket/
H A Dtcp_server_socket_win.h12 #include "base/win/object_watcher.h"
23 public base::win::ObjectWatcher::Delegate {
45 base::win::ObjectWatcher accept_watcher_;
/external/chromium/base/debug/
H A Dtrace_event_win.h13 #include "base/win/event_trace_provider.h"
45 class BASE_API TraceLog : public base::win::EtwTraceProvider {
131 const base::win::EtwEventType kTraceEventTypeBegin = 0x10;
132 const base::win::EtwEventType kTraceEventTypeEnd = 0x11;
133 const base::win::EtwEventType kTraceEventTypeInstant = 0x12;
/external/chromium/chrome/browser/importer/
H A Dfirefox_importer_utils_win.cc10 #include "base/win/registry.h"
31 base::win::RegKey reg_key(kFireFoxRegistryPaths[i],
48 base::win::RegKey reg_key(HKEY_LOCAL_MACHINE, registry_path.c_str(),
57 base::win::RegKey reg_key_directory(HKEY_LOCAL_MACHINE,

Completed in 683 milliseconds

123456789