Lines Matching refs:nTempPos

367         xub_StrLen nTempPos = nMaxPos;  in ImplPatternMaxPos()  local
368 while ( nTempPos < rEditMask.Len() ) in ImplPatternMaxPos()
370 if ( rEditMask.GetChar(nTempPos) != EDITMASK_LITERAL ) in ImplPatternMaxPos()
372 nMaxPos = nTempPos; in ImplPatternMaxPos()
375 nTempPos++; in ImplPatternMaxPos()
445 xub_StrLen nTempPos = nNewPos; in ImplPatternLeftPos() local
446 while ( nTempPos ) in ImplPatternLeftPos()
448 if ( rEditMask.GetChar(nTempPos-1) != EDITMASK_LITERAL ) in ImplPatternLeftPos()
450 nNewPos = nTempPos-1; in ImplPatternLeftPos()
453 nTempPos--; in ImplPatternLeftPos()
466 xub_StrLen nTempPos = nNewPos; in ImplPatternRightPos() local
467 while ( nTempPos < rEditMask.Len() ) in ImplPatternRightPos()
469 if ( rEditMask.GetChar(nTempPos+1) != EDITMASK_LITERAL ) in ImplPatternRightPos()
471 nNewPos = nTempPos+1; in ImplPatternRightPos()
474 nTempPos++; in ImplPatternRightPos()
500 xub_StrLen nTempPos; in ImplPatternProcessKeyInput() local
590 nTempPos = nNewPos; in ImplPatternProcessKeyInput()
591 nNewPos = ImplPatternLeftPos( rEditMask, nTempPos ); in ImplPatternProcessKeyInput()
594nTempPos = ImplPatternRightPos( aStr, rEditMask, nFormatFlags, bSameMask, nNewPos ); in ImplPatternProcessKeyInput()
596 if ( nNewPos != nTempPos ) in ImplPatternProcessKeyInput()
664 nTempPos = nNewPos; in ImplPatternProcessKeyInput()
665 while ( nTempPos < rEditMask.Len() ) in ImplPatternProcessKeyInput()
667 if ( rEditMask.GetChar(nTempPos) == EDITMASK_LITERAL ) in ImplPatternProcessKeyInput()
670 if ( (rEditMask.GetChar(nTempPos+1) != EDITMASK_LITERAL ) && in ImplPatternProcessKeyInput()
671 ImplKommaPointCharEqual( cChar, rLiteralMask.GetChar(nTempPos) ) ) in ImplPatternProcessKeyInput()
673 nTempPos++; in ImplPatternProcessKeyInput()
674 … ImplPatternMaxPos( pEdit->GetText(), rEditMask, nFormatFlags, bSameMask, nNewPos, nTempPos ); in ImplPatternProcessKeyInput()
675 if ( nTempPos > nNewPos ) in ImplPatternProcessKeyInput()
677 pEdit->SetSelection( Selection( nTempPos ) ); in ImplPatternProcessKeyInput()
683 nTempPos++; in ImplPatternProcessKeyInput()