HomeSort by relevance Sort by last modified time
    Searched refs:lResult (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/Driver/
WindowsToolChain.cpp 117 long lResult;
156 lResult = RegOpenKeyEx(hRootKey, partialKey, 0, KEY_READ, &hTopKey);
157 if (lResult == ERROR_SUCCESS) {
189 lResult = RegOpenKeyEx(hTopKey, bestName, 0, KEY_READ, &hKey);
190 if (lResult == ERROR_SUCCESS) {
191 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
193 if (lResult == ERROR_SUCCESS)
201 lResult = RegOpenKeyEx(hRootKey, subKey, 0, KEY_READ, &hKey);
202 if (lResult == ERROR_SUCCESS) {
203 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebInspectorProxyWin.cpp 72 LRESULT CALLBACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
92 LRESULT lResult = 0;
97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled);
100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled);
103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled);
106 lResult = onCloseEvent(hWnd, message, wParam, lParam, handled);
114 lResult = ::DefWindowProc(hWnd, message, wParam, lParam);
116 return lResult;
    [all...]
WebPopupMenuProxyWin.cpp 74 LRESULT CALLBACK WebPopupMenuProxyWin::WebPopupMenuProxyWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
92 LRESULT WebPopupMenuProxyWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
94 LRESULT lResult = 0;
99 lResult = onMouseActivate(hWnd, message, wParam, lParam, handled);
102 lResult = onSize(hWnd, message, wParam, lParam, handled);
105 lResult = onKeyDown(hWnd, message, wParam, lParam, handled);
108 lResult = onChar(hWnd, message, wParam, lParam, handled);
111 lResult = onMouseMove(hWnd, message, wParam, lParam, handled);
114 lResult = onLButtonDown(hWnd, message, wParam, lParam, handled)
    [all...]
WebView.cpp 106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
126 LRESULT lResult = 0;
138 lResult = 1;
141 lResult = onPaintEvent(hWnd, message, wParam, lParam, handled);
144 lResult = onPrintClientEvent(hWnd, message, wParam, lParam, handled);
161 lResult = onMouseEvent(hWnd, message, wParam, lParam, handled);
165 lResult = onWheelEvent(hWnd, message, wParam, lParam, handled);
168 lResult = onHorizontalScroll(hWnd, message, wParam, lParam, handled)
    [all...]
  /external/webkit/Tools/MiniBrowser/win/
BrowserWindow.cpp 46 LRESULT CALLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
69 LRESULT lResult = 0;
74 lResult = 1;
78 lResult = onCommand(LOWORD(wParam), handled);
98 lResult = ::DefWindowProc(window, message, wParam, lParam);
100 return lResult;
206 LRESULT BrowserWindow::onCommand(int commandID, bool& handled)
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.cpp 125 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
141 LRESULT MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
143 LRESULT lResult = 0;
177 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam);
179 return lResult;
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 760 LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
788 LRESULT PopupMenuWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
790 LRESULT lResult = 0;
815 lResult = 0;
867 lResult = 1;
875 lResult = 0;
891 lResult = 1;
1005 lResult = 0;
1014 lResult = DefWindowProc(hWnd, message, wParam, lParam)
    [all...]
  /frameworks/av/media/libmedia/
ToneGenerator.cpp     [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]

Completed in 450 milliseconds