Lines Matching refs:nTextLen

5413         LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, 0, 0 ) / sizeof( WCHAR );  in ImplHandleIMECompositionInput()  local
5414 if ( nTextLen >= 0 ) in ImplHandleIMECompositionInput()
5416 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5417 ImmGetCompositionStringW( hIMC, GCS_RESULTSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5418 … aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5439 LONG nTextLen = ImmGetCompositionStringW( hIMC, GCS_COMPSTR, 0, 0 ) / sizeof( WCHAR ); in ImplHandleIMECompositionInput() local
5440 if ( nTextLen > 0 ) in ImplHandleIMECompositionInput()
5442 WCHAR* pTextBuf = new WCHAR[nTextLen]; in ImplHandleIMECompositionInput()
5443 ImmGetCompositionStringW( hIMC, GCS_COMPSTR, pTextBuf, nTextLen*sizeof( WCHAR ) ); in ImplHandleIMECompositionInput()
5444 … aEvt.maText = XubString( reinterpret_cast<const xub_Unicode*>(pTextBuf), (xub_StrLen)nTextLen ); in ImplHandleIMECompositionInput()
5457 xub_StrLen nTextLen = aEvt.maText.Len(); in ImplHandleIMECompositionInput() local
5458 pSalAttrAry = new sal_uInt16[nTextLen]; in ImplHandleIMECompositionInput()
5459 memset( pSalAttrAry, 0, nTextLen*sizeof( sal_uInt16 ) ); in ImplHandleIMECompositionInput()
5460 for ( xub_StrLen i = 0; (i < nTextLen) && (i < nAttrLen); i++ ) in ImplHandleIMECompositionInput()
5486 if ( (nTextLen > 0) || !(lParam & GCS_RESULTSTR) ) in ImplHandleIMECompositionInput()
5489 if ( !nTextLen && !pFrame->mbCandidateMode ) in ImplHandleIMECompositionInput()
5500 aEvt.mnCursorPos = nTextLen; in ImplHandleIMECompositionInput()