Home | History | Annotate | Download | only in win

Lines Matching refs:lResult

1954 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1956 LRESULT lResult = 0;
2050 lResult = DefWindowProc(hWnd, message, wParam, lParam);
2176 handled = webView->onGetObject(wParam, lParam, lResult);
2182 lResult = webView->onIMERequest(wParam, lParam);
2194 handled = webView->onIMENotify(wParam, lParam, &lResult);
2230 lResult = DefWindowProc(hWnd, message, wParam, lParam);
2233 return (message == WM_KEYDOWN || message == WM_SYSKEYDOWN || message == WM_KEYUP || message == WM_SYSKEYUP) ? !handled : lResult;
5425 bool WebView::onIMENotify(WPARAM wparam, LPARAM, LRESULT*)
5432 LRESULT WebView::onIMERequestCharPosition(Frame* targetFrame, IMECHARPOSITION* charPos)
5452 LRESULT WebView::onIMERequestReconvertString(Frame* targetFrame, RECONVERTSTRING* reconvertString)
5470 LRESULT WebView::onIMERequest(WPARAM request, LPARAM data)
5713 bool WebView::onGetObject(WPARAM wParam, LPARAM lParam, LRESULT& lResult) const
5715 lResult = 0;
5741 // in an LRESULT. If this call is not successful, Windows will handle the
5743 return SUCCEEDED(lResult = procPtr(__uuidof(IAccessible), wParam, accessible.get()));