Lines Matching refs:nSepPos
1244 sal_uInt16 nSepPos = aStr.Search( aDateSep ); in ImplDateGetValue() local
1245 if ( nSepPos == STRING_NOTFOUND ) in ImplDateGetValue()
1247 nSepPos = aStr.Search( aDateSep, nSepPos+1 ); in ImplDateGetValue()
1248 if ( ( nSepPos == STRING_NOTFOUND ) || ( nSepPos == (aStr.Len()-1) ) ) in ImplDateGetValue()
2480 xub_StrLen nSepPos = aStr.Search( rLocaleDataWrapper.getTimeSep() ); in ImplTimeGetValue() local
2485 if ( nSepPos == STRING_NOTFOUND ) in ImplTimeGetValue()
2486 nSepPos = aStr.Len(); in ImplTimeGetValue()
2487 if ( !ImplCutTimePortion( aStr, nSepPos, _bSkipInvalidCharacters, &nHour ) ) in ImplTimeGetValue()
2490 nSepPos = aStr.Search( rLocaleDataWrapper.getTimeSep() ); in ImplTimeGetValue()
2493 if ( nSepPos != STRING_NOTFOUND ) in ImplTimeGetValue()
2495 if ( !ImplCutTimePortion( aStr, nSepPos, _bSkipInvalidCharacters, &nMinute ) ) in ImplTimeGetValue()
2498 nSepPos = aStr.Search( rLocaleDataWrapper.getTimeSep() ); in ImplTimeGetValue()
2501 if ( nSepPos != STRING_NOTFOUND ) in ImplTimeGetValue()
2503 if ( !ImplCutTimePortion( aStr, nSepPos, _bSkipInvalidCharacters, &nSecond ) ) in ImplTimeGetValue()
2515 else if ( nSepPos == STRING_NOTFOUND ) in ImplTimeGetValue()
2525 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2526 aStr.Erase( 0, nSepPos+1 ); in ImplTimeGetValue()
2528 nSepPos = aStr.Search( rLocaleDataWrapper.getTimeSep() ); in ImplTimeGetValue()
2531 if ( nSepPos != STRING_NOTFOUND ) in ImplTimeGetValue()
2534 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2535 aStr.Erase( 0, nSepPos+1 ); in ImplTimeGetValue()
2537 nSepPos = aStr.Search( rLocaleDataWrapper.getTimeSep() ); in ImplTimeGetValue()
2540 if ( nSepPos != STRING_NOTFOUND ) in ImplTimeGetValue()
2544 nSecond = (short)aStr.Copy( 0, nSepPos ).ToInt32(); in ImplTimeGetValue()
2545 aStr.Erase( 0, nSepPos+1 ); in ImplTimeGetValue()