/aoo4110/main/odk/examples/java/ToDo/ |
H A D | ToDo.java | 388 sDate = this.getStringFromGregorianCalendar( in recalc() 590 String sDate = ( gregCal.get( Calendar.MONTH ) + 1 ) in getStringFromGregorianCalendar() local 595 return sDate; in getStringFromGregorianCalendar() 603 int []intDateValue = this.getDateValuesFromString( sDate ); in getGregorianCalendarFromString() 613 public int[] getDateValuesFromString( String sDate) { in getDateValuesFromString() argument 616 int intPositionFirstTag = sDate.indexOf( STRING_SEPARATOR ); in getDateValuesFromString() 617 int intPositionSecondTag = sDate.indexOf(STRING_SEPARATOR, in getDateValuesFromString() 622 sDate.substring(0, intPositionFirstTag)) - 1; in getDateValuesFromString() 628 sDate.substring(intPositionSecondTag + 1, sDate.length())); in getDateValuesFromString() 666 int intColumn, String sDate ) { in setStringToCell() argument [all …]
|
/aoo4110/main/wizards/com/sun/star/wizards/web/data/ |
H A D | CGSettings.java | 190 String sDate = dateUtils.format(dateFormat, date); in formatCreated() local 191 …return JavaTools.replaceSubString(resources[CGSettings.RESOURCE_CREATED_TEMPLATE], sDate, "%DATE"); in formatCreated() 196 String sDate = dateUtils.format(dateFormat, date); in formatUpdated() local 197 …return JavaTools.replaceSubString(resources[CGSettings.RESOURCE_UPDATED_TEMPLATE], sDate, "%DATE"); in formatUpdated()
|
/aoo4110/main/sc/source/filter/xml/ |
H A D | XMLExportDataPilot.cxx | 570 rtl::OUStringBuffer sDate; in WriteNumGroupInfo() local 571 rExport.GetMM100UnitConverter().convertDateTime(sDate, rGroupInfo.Start); in WriteNumGroupInfo() 572 rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_DATE_START, sDate.makeStringAndClear()); in WriteNumGroupInfo() 578 rtl::OUStringBuffer sDate; in WriteNumGroupInfo() local 579 rExport.GetMM100UnitConverter().convertDateTime(sDate, rGroupInfo.End); in WriteNumGroupInfo() 580 rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_DATE_END, sDate.makeStringAndClear()); in WriteNumGroupInfo() 598 rtl::OUStringBuffer sDate; in WriteNumGroupInfo() local
|
H A D | XMLChangeTrackingExportHelper.cxx | 132 rtl::OUStringBuffer sDate; in WriteChangeInfo() local 133 ScXMLConverter::ConvertDateTimeToString(pAction->GetDateTimeUTC(), sDate); in WriteChangeInfo() 137 rExport.Characters(sDate.makeStringAndClear()); in WriteChangeInfo()
|
H A D | XMLConverter.cxx | 345 void ScXMLConverter::ConvertDateTimeToString(const DateTime& aDateTime, rtl::OUStringBuffer& sDate) in ConvertDateTimeToString() argument 349 SvXMLUnitConverter::convertDateTime(sDate, aAPIDateTime); in ConvertDateTimeToString()
|
H A D | XMLConverter.hxx | 106 static void ConvertDateTimeToString(const DateTime& aDateTime, rtl::OUStringBuffer& sDate);
|
H A D | xmlexprt.cxx | 3719 rtl::OUStringBuffer sDate; in WriteCalculationSettings() local 3720 GetMM100UnitConverter().convertDateTime(sDate, 0.0, aNullDate); in WriteCalculationSettings() 3721 AddAttribute(XML_NAMESPACE_TABLE, XML_DATE_VALUE, sDate.makeStringAndClear()); in WriteCalculationSettings()
|
/aoo4110/main/writerfilter/source/dmapper/ |
H A D | ConversionHelper.cxx | 511 ::rtl::OUString sDate( rDateTimeString.getToken( 0, 'T', nIndex )); in convertDateTime() 513 aRet.Year = (sal_uInt16)sDate.getToken( 0, '-', nDateIndex ).toInt32(); in convertDateTime() 515 aRet.Month = (sal_uInt16)sDate.getToken( 0, '-', nDateIndex ).toInt32(); in convertDateTime() 517 aRet.Day = (sal_uInt16)sDate.getToken( 0, '-', nDateIndex ).toInt32(); in convertDateTime()
|
H A D | DomainMapper_Impl.cxx | 902 ::rtl::OUString sDate = rDateTime.getToken( 0, 'T', nIndex ); in lcl_DateStringToDateTime() 905 aDateTime.Year = sal_uInt16( sDate.getToken( 0, '-', nIndex ).toInt32() ); in lcl_DateStringToDateTime() 906 aDateTime.Month = sal_uInt16( sDate.getToken( 0, '-', nIndex ).toInt32() ); in lcl_DateStringToDateTime() 907 aDateTime.Day = sal_uInt16( sDate.copy( nIndex ).toInt32() ); in lcl_DateStringToDateTime() 3807 void DomainMapper_Impl::SetCurrentRedlineDate( rtl::OUString sDate ) in SetCurrentRedlineDate() argument 3813 uno::makeAny( ConversionHelper::convertDateTime( sDate ) ) ); in SetCurrentRedlineDate() 3819 pCurrent->m_sDate = sDate; in SetCurrentRedlineDate()
|
H A D | DomainMapper_Impl.hxx | 619 void SetCurrentRedlineDate( rtl::OUString sDate );
|
/aoo4110/main/extensions/source/logging/ |
H A D | loggerconfig.cxx | 122 rtl::OUString sDate = rtl::OUString::createFromAscii( buffer ); in lcl_substituteFileHandlerURLVariables_nothrow() local 132 aBuff.append( sDate ); in lcl_substituteFileHandlerURLVariables_nothrow() 147 Variable( RTL_CONSTASCII_USTRINGPARAM( "$(date)" ), sDate ), in lcl_substituteFileHandlerURLVariables_nothrow()
|
/aoo4110/main/forms/source/xforms/ |
H A D | convert.cxx | 465 ::rtl::OUString sDate = lcl_toXSD_UNODate_typed( aDate ); in lcl_toXSD_UNODateTime() 471 sInfo.append( sDate ); in lcl_toXSD_UNODateTime()
|
/aoo4110/main/sw/source/core/text/ |
H A D | EnhancedPDFExportHelper.cxx | 1621 String sDate; in EnhancedPDFExport() local 1623 … pNumFormatter->GetOutputString( aDateDiff.GetDate(), nFormat, sDate, &pColor ); in EnhancedPDFExport() 1628 sTitle += sDate; in EnhancedPDFExport()
|
/aoo4110/main/wizards/com/sun/star/wizards/reportbuilder/layout/ |
H A D | ReportBuilderLayouter.java | 1332 final String sDate = "rpt:now()"; // getDateString("EEE, d MMM yyyy HH:mm:ss zzzz"); in insertPageHeader() local 1366 aRect = insertFormattedField(xSection, sDate, aRect, nTitleWidth, aSOLabel); in insertPageHeader()
|
/aoo4110/main/svx/source/fmcomp/ |
H A D | gridcell.cxx | 2288 String sDate; in lcl_setFormattedDate_nothrow() local 2295 _rField.SetText( sDate ); in lcl_setFormattedDate_nothrow() 2299 sDate = _rField.GetText(); in lcl_setFormattedDate_nothrow() 2307 return sDate; in lcl_setFormattedDate_nothrow()
|
/aoo4110/extras/l10n/source/id/ |
H A D | localize.sdf | 16920 …c\shared\03030205.xhp 0 help par_id3153157 22 0 id Dim dDate As Double, sDate As String 2002-… 16922 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 id sDate = TimeSeri… 16924 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 id MsgBox sDate,64,… 17396 helpcontent2 source\text\sbasic\shared\03102200.xhp 0 help par_id3150487 11 0 id Dim sDate as Str… 17581 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 id Dim sDate as Str… 17583 …ed\03090101.xhp 0 help par_id3154943 17 0 id sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 17586 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 id If sDate < sToda… 17588 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 id ElseIf sDate > s… 17856 helpcontent2 source\text\sbasic\shared\03102300.xhp 0 help par_id3153970 11 0 id Dim sDate as Str… 18886 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 id Dim sDate as Str… [all …]
|
/aoo4110/extras/l10n/source/si/ |
H A D | localize.sdf | 9921 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 si Dim sDate as Str… 9923 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 si sDate = InputBox… 9924 …ed\03090101.xhp 0 help par_id3154943 17 0 si sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 9927 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 si If sDate < sToda… 9929 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 si ElseIf sDate > s… 11295 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 si Dim sDate as Str…
|
/aoo4110/extras/l10n/source/eo/ |
H A D | localize.sdf | 5684 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 eo sDate = DateSeri… 5691 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 eo msgbox sDate REM… 5694 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 eo Dim sDate as Str… 6001 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 eo sDate = TimeSeri… 6004 …c\shared\03030205.xhp 0 help par_id3153157 22 0 eo Dim dDate As Double, sDate As String 2002-… 6007 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 eo MsgBox sDate,64,… 6818 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 eo ElseIf sDate > s… 6820 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 eo Dim sDate as Str… 6829 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 eo sDate = InputBox… 6832 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 eo If sDate < sToda… [all …]
|
/aoo4110/extras/l10n/source/bo/ |
H A D | localize.sdf | 33821 …c\shared\03030205.xhp 0 help par_id3153157 22 0 bo Dim dDate As Double, sDate As String 2002-… 33823 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 bo sDate = TimeSeri… 33825 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 bo MsgBox sDate,64,… 34812 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 bo Dim sDate as Str… 34814 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 bo sDate = InputBox… 34815 …ed\03090101.xhp 0 help par_id3154943 17 0 bo sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 34818 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 bo If sDate < sToda… 34820 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 bo ElseIf sDate > s… 36680 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 bo Dim sDate as Str… 36682 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 bo sDate = DateSeri… [all …]
|
/aoo4110/extras/l10n/source/is/ |
H A D | localize.sdf | 18906 …c\shared\03030205.xhp 0 help par_id3153157 22 0 is Dim dDate As Double, sDate As String 2002-… 18908 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 is sDate = TimeSeri… 18910 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 is MsgBox sDate,64,… 19641 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 is Dim sDate as Str… 19643 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 is sDate = InputBox… 19644 …ed\03090101.xhp 0 help par_id3154943 17 0 is sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 19647 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 is If sDate < sToda… 19649 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 is ElseIf sDate > s… 21112 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 is Dim sDate as Str… 21114 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 is sDate = DateSeri… [all …]
|
/aoo4110/extras/l10n/source/ne/ |
H A D | localize.sdf | 5025 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 ne sDate = मिति श्र… 5032 …ext\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 ne सन्देश बाकस sDate REM ले ०९.०४.१९६४ … 5035 …ic\shared\03030101.xhp 0 help par_id3154791 18 0 ne स्ट्रिङको रूपमा Dim sDate 2002-02-02 02:0… 5342 …help par_id3153157 22 0 ne दोब्बर जस्तै गरि Dim dDate , स्ट्रिङको रूपमा sDate 2002-02-02 02:0… 5345 …ext\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 ne सन्देश बाकस sDate,64,"ढाँचा गर्न लाग… 6163 …xt\sbasic\shared\03090101.xhp 0 help par_id3146972 22 0 ne अतिरिक्त यदि sDate > sToday त्यसपछि … 6165 …ic\shared\03090101.xhp 0 help par_id3148645 13 0 ne स्ट्रिङको रूपमा Dim sDate 2002-02-02 02:0… 6175 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 ne sDate = आगत बाकस… 6178 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 ne यदि sDate < sTod… 6179 …ed\03090101.xhp 0 help par_id3154943 17 0 ne sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left…
|
/aoo4110/extras/l10n/source/ja/ |
H A D | localize.sdf | 29871 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 ja Dim sDate as Str… 29873 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 ja sDate = DateSeri… 29875 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 ja msgbox sDate REM… 30190 …c\shared\03030205.xhp 0 help par_id3153157 22 0 ja Dim dDate As Double, sDate As String 20130… 30192 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 ja sDate = TimeSeri… 30194 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 ja MsgBox sDate,64,… 31006 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 ja Dim sDate as Str… 31008 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 ja sDate = InputBox… 31009 …ed\03090101.xhp 0 help par_id3154943 17 0 ja sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 31012 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 ja If sDate < sToda… [all …]
|
/aoo4110/extras/l10n/source/km/ |
H A D | localize.sdf | 29871 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 km Dim sDate as Str… 29873 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 km sDate = DateSeri… 29875 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 km msgbox sDate REM… 30190 …c\shared\03030205.xhp 0 help par_id3153157 22 0 km Dim dDate As Double, sDate As String 20130… 30192 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 km sDate = TimeSeri… 30194 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 km MsgBox sDate,64,… 31006 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 km Dim sDate as Str… 31008 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 km sDate = InputBox… 31009 …ed\03090101.xhp 0 help par_id3154943 17 0 km sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 31012 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 km If sDate < sToda… [all …]
|
/aoo4110/extras/l10n/source/ko/ |
H A D | localize.sdf | 29871 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 ko Dim sDate as Str… 29873 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 ko sDate = DateSeri… 29875 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 ko msgbox sDate REM… 30190 …c\shared\03030205.xhp 0 help par_id3153157 22 0 ko Dim dDate As Double, sDate As String 20130… 30192 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 ko sDate = TimeSeri… 30194 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 ko MsgBox sDate,64,… 31006 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 ko Dim sDate as Str… 31008 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 ko sDate = InputBox… 31009 …ed\03090101.xhp 0 help par_id3154943 17 0 ko sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 31012 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 ko If sDate < sToda… [all …]
|
/aoo4110/extras/l10n/source/bg/ |
H A D | localize.sdf | 29871 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3154791 18 0 bg Dim sDate As Str… 29873 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3147125 20 0 bg sDate = DateSeri… 29875 helpcontent2 source\text\sbasic\shared\03030101.xhp 0 help par_id3151074 22 0 bg MsgBox sDate REM… 30190 …c\shared\03030205.xhp 0 help par_id3153157 22 0 bg Dim dDate As Double, sDate As String 20130… 30192 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3148456 24 0 bg sDate = TimeSeri… 30194 helpcontent2 source\text\sbasic\shared\03030205.xhp 0 help par_id3153417 26 0 bg MsgBox sDate, 64… 31006 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3148645 13 0 bg Dim sDate As Str… 31008 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154490 16 0 bg sDate = InputBox… 31009 …ed\03090101.xhp 0 help par_id3154943 17 0 bg sDate = Right$(sDate, 4) + Mid$(sDate, 4, 2) + Left… 31012 helpcontent2 source\text\sbasic\shared\03090101.xhp 0 help par_id3154792 20 0 bg If sDate < sToda… [all …]
|