Lines Matching refs:WCHAR
1216 …DBG_ASSERT( sizeof( WCHAR ) == sizeof( xub_Unicode ), "WinSalFrame::SetTitle(): WCHAR != sal_Unico… in SetTitle()
2529 …DBG_ASSERT( sizeof( WCHAR ) == sizeof( xub_Unicode ), "WinSalFrame::ImplGetKeyNameTextW(): WCHAR !… in ImplGetKeyNameText()
2532 WCHAR aKeyBuf[ nMaxKeyLen ]; in ImplGetKeyNameText()
2548 for( WCHAR *pW=aKeyBuf, *pE=pW+nKeyLen; pW < pE; ++pW ) in ImplGetKeyNameText()
5413 LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, 0, 0 ) / sizeof( WCHAR ); in ImplHandleIMECompositionInput()
5416 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5417 ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5439 LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_COMPSTR, 0, 0 ) / sizeof( WCHAR ); in ImplHandleIMECompositionInput()
5442 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5443 ImmGetCompositionStringW( hIMC, GCS_COMPSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5726 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5734 nRet = sizeof(RECONVERTSTRING) + (aEvt.maText.Len() + 1) * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5738 pReconvertString->dwCompStrOffset = aEvt.mnStart * sizeof(WCHAR); in ImplHandleIMEReconvertString()
5743 …(LPWSTR)(pReconvertString + 1), aEvt.maText.GetBuffer(), (aEvt.maText.Len() + 1) * sizeof(WCHAR) ); in ImplHandleIMEReconvertString()
5762 sal_uLong nTmpStart = pReconvertString->dwCompStrOffset / sizeof(WCHAR); in ImplHandleIMEConfirmReconvertString()