Lines Matching refs:nTextLen

5410         LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, 0, 0 ) / sizeof( WCHAR );  in ImplHandleIMECompositionInput()  local
5411 if ( nTextLen >= 0 ) in ImplHandleIMECompositionInput()
5413 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5414 ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5415 … aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5436 LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_COMPSTR, 0, 0 ) / sizeof( WCHAR ); in ImplHandleIMECompositionInput() local
5437 if ( nTextLen > 0 ) in ImplHandleIMECompositionInput()
5439 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5440 ImmGetCompositionStringW( hIMC, GCS_COMPSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5441 … aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5454 xub_StrLen nTextLen = aEvt.maText.Len(); in ImplHandleIMECompositionInput() local
5455 pSalAttrAry = new sal_uInt16[nTextLen]; in ImplHandleIMECompositionInput()
5456 memset( pSalAttrAry, 0, nTextLen*sizeof( sal_uInt16 ) ); in ImplHandleIMECompositionInput()
5457 for ( xub_StrLen i = 0; (i < nTextLen) && (i < nAttrLen); i++ ) in ImplHandleIMECompositionInput()
5483 if ( (nTextLen > 0) || !(lParam & GCS_RESULTSTR) ) in ImplHandleIMECompositionInput()
5486 if ( !nTextLen && !pFrame->mbCandidateMode ) in ImplHandleIMECompositionInput()
5497 aEvt.mnCursorPos = nTextLen; in ImplHandleIMECompositionInput()