/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/ |
H A D | TokenDecoder.java | 136 v.add(readNameToken(bis)); in getTokenVector() 186 int len = ((int)bis.read())*2; in readStringToken() 187 int options = (int)bis.read(); in readStringToken() 217 buffer[0] = (byte) bis.read(); in readNameToken() 269 bis.skip(10); in read3DCellRefToken() 272 buffer[1] = (byte) bis.read(); in read3DCellRefToken() 275 buffer[1] = (byte) bis.read(); in read3DCellRefToken() 306 bis.skip(10); in read3DCellAreaRefToken() 309 buffer[1] = (byte) bis.read(); in read3DCellAreaRefToken() 312 buffer[1] = (byte) bis.read(); in read3DCellAreaRefToken() [all …]
|
/trunk/main/scripting/java/com/sun/star/script/framework/container/ |
H A D | ParcelDescriptor.java | 124 ByteArrayInputStream bis = null; in ParcelDescriptor() local 126 bis = new ByteArrayInputStream(EMPTY_DOCUMENT); in ParcelDescriptor() 127 this.document = XMLParserFactory.getParser().parse(bis); in ParcelDescriptor() 130 if (bis != null) in ParcelDescriptor() 131 bis.close(); in ParcelDescriptor() 163 ByteArrayInputStream bis = null; in ParcelDescriptor() local 165 bis = new ByteArrayInputStream(EMPTY_DOCUMENT); in ParcelDescriptor() 166 this.document = XMLParserFactory.getParser().parse(bis); in ParcelDescriptor() 169 if (bis != null) in ParcelDescriptor() 170 bis.close(); in ParcelDescriptor()
|
H A D | DeployedUnoPackagesDB.java | 57 ByteArrayInputStream bis = null; in DeployedUnoPackagesDB() local 59 bis = new ByteArrayInputStream(EMPTY_DOCUMENT); in DeployedUnoPackagesDB() 60 this.document = XMLParserFactory.getParser().parse(bis); in DeployedUnoPackagesDB() 63 if (bis != null) in DeployedUnoPackagesDB() 64 bis.close(); in DeployedUnoPackagesDB()
|
H A D | Parcel.java | 232 ByteArrayInputStream bis = null; in writeParcelDescriptor() local 238 bis = new ByteArrayInputStream( bos.toByteArray() ); in writeParcelDescriptor() 240 xis = new XInputStreamImpl( bis ); in writeParcelDescriptor() 246 if (bis != null) bis.close(); in writeParcelDescriptor()
|
H A D | ScriptMetaData.java | 363 ByteArrayInputStream bis = new ByteArrayInputStream( getSourceBytes() ); in writeSourceFile() local 364 XInputStreamImpl xis = new XInputStreamImpl( bis ); in writeSourceFile()
|
H A D | ParcelContainer.java | 474 … ByteArrayInputStream bis = new ByteArrayInputStream( bos.toByteArray() ); in createParcel() local 475 XInputStreamImpl xis = new XInputStreamImpl( bis ); in createParcel()
|
/trunk/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/ |
H A D | Base64.java | 1189 Base64.InputStream bis = null; in decodeFromFile() local 1207 bis = new Base64.InputStream( in decodeFromFile() 1212 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in decodeFromFile() 1226 try{ bis.close(); } catch( Exception e) {} in decodeFromFile() 1246 Base64.InputStream bis = null; in encodeFromFile() local 1256 bis = new Base64.InputStream( in encodeFromFile() 1261 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in encodeFromFile() 1274 try{ bis.close(); } catch( Exception e) {} in encodeFromFile()
|
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ |
H A D | SystemManager.java | 345 BufferedInputStream bis; in copy() local 356 bis = new BufferedInputStream(fis); in copy() 359 b = new byte[bis.available()]; in copy() 360 bis.read(b); in copy() 362 bis.close(); in copy()
|
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/test/ |
H A D | ConverterInfoList.java | 69 BufferedInputStream bis = new BufferedInputStream(is); in ConverterInfoList() local 71 props.load(bis); in ConverterInfoList() 72 bis.close(); in ConverterInfoList()
|
/trunk/main/rsc/doku/feinkonz.43/ |
H A D | rsc.doc | 2531 bereich umfa�t Werte von 0 bis 65535. 2534 bereich umfa�t Werte von 0 bis 65535. 2538 Werte von 0 bis 3600. 2542 Werte von 0 bis 3600. 2615 bereich umfa�t Werte von 0 bis 65536. 2658 Werte von 0 bis 65535. 2662 Werte von -32768 bis 32767. 3102 Zahlenbereich umfa�t Werte von -32768 bis 32767. 3108 bis 32767. 3149 Zahlenbereich umfa�t Werte von -32768 bis 32767. [all …]
|
H A D | rscerror.doc | 1886 ERR_REFTODEEP Referenzen werden nur bis zu einer bestimmten Tiefe aufgel�st.
|
/trunk/test/testcommon/source/org/openoffice/test/common/ |
H A D | FileUtil.java | 842 BufferedInputStream bis = null; in zip() local 844 bis = new BufferedInputStream(new FileInputStream(f)); in zip() 849 while ((count = bis.read(data)) != -1) { in zip() 852 bis.close(); in zip() 854 if (bis != null) in zip() 855 bis.close(); in zip()
|
/trunk/main/xmerge/source/palmtests/qa/comparator/ |
H A D | XmlDiff.java | 75 BufferedInputStream bis = new BufferedInputStream(is); in XmlDiff() local 77 props_.load(bis); in XmlDiff() 78 bis.close(); in XmlDiff()
|
H A D | XmlZipExtract.java | 128 BufferedInputStream bis = new BufferedInputStream(is); in readStream() local 132 while ((eof = bis.read(buffer, 0, buffer.length)) > 0) { in readStream()
|
/trunk/main/xmerge/workben/ |
H A D | XmlDiff.java | 75 BufferedInputStream bis = new BufferedInputStream(is); in XmlDiff() local 77 props_.load(bis); in XmlDiff() 78 bis.close(); in XmlDiff()
|
/trunk/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/ |
H A D | DocDecoder.java | 210 ByteArrayInputStream bis = new ByteArrayInputStream(bytes); in readHeader() local 211 DataInputStream dis = new DataInputStream(bis); in readHeader()
|
/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
H A D | WSDecoder.java | 270 ByteArrayInputStream bis = new ByteArrayInputStream(bytes); in readHeader() local 271 DataInputStream dis = new DataInputStream(bis); in readHeader()
|
/trunk/main/xmerge/source/minicalc/java/org/openoffice/xmerge/converter/xml/sxc/minicalc/ |
H A D | MinicalcDecoder.java | 164 ByteArrayInputStream bis = new ByteArrayInputStream(cBytes); in addDeviceContent() local 170 ws.readNextRecord(bis, bisSize); in addDeviceContent()
|
/trunk/main/sd/source/ui/inc/ |
H A D | strings.hrc | 266 // Mind. bis 380 freihalten 276 /* Fortsetzung von RID_APP_START+43 bis RID_APP_START+58:
|
/trunk/main/sw/source/ui/frmdlg/ |
H A D | colmgr.cxx | 120 ASSERT(nPercent <= 100, LineHeight darf nur bis 100 % gross sein); in SetLineHeightPercent()
|
/trunk/extras/l10n/source/de/ |
H A D | localize.sdf | 11647 … 34 0 de DIM text(20,2) as String REM 63 Elemente; 0 bis 20 Ebene 1, 0 bis 20 Ebene 2 und 0 bis … 17922 …04060106.xhp 0 help par_id3149340 241 0 de \<emph\>Ganzzahl 1 bis 30\</emph\> sind bis zu 30 Gan… 17964 …04060106.xhp 0 help par_id3156348 269 0 de \<emph\>Ganzzahl 1 bis 30\</emph\> sind bis zu 30 Gan… 18089 …\01\04060106.xhp 0 help par_id3144460 365 0 de \<emph\>Zahl 1 bis 30\</emph\> sind bis zu 30 Arg… 18098 …\01\04060106.xhp 0 help par_id3160415 373 0 de \<emph\>Zahl 1 bis 30\</emph\> sind bis zu 30 Arg… 18189 …1\04060106.xhp 0 help par_id3163671 432 0 de \<emph\>Zahl 1 bis Zahl 30\</emph\> sind bis zu 30 … 20647 …weitert die oben angezeigte Tabelle. D2 bis D11 enthalten die Nummern 500, 1000 und so weiter bis … 42745 …port.xhp 0 help par_id3147297 10 0 de Wiederholen Sie die Schritte 1 bis 3, bis der ganze Text a… 49658 … 0 help par_id1797235 0 de Markiert bis zum Absatzanfang. Die nächste Tastatureingabe erweitert… 49666 …help par_id3729361 0 de Markiert bis zum Ende des Absatzes. Die nächste Tastatureingabe erweite… [all …]
|
/trunk/main/svx/inc/svx/ |
H A D | dialogs.hrc | 208 // 67 bis 72 frei
|
/trunk/extras/l10n/source/ss/ |
H A D | localize.sdf | 3606 …LD SID_CONVERT_TO_1BIT_THRESHOLD CMD_SID_CONVERT_TO_1BIT_THRESHOLD 0 ss 1-bis-~drempel 2002-02… 3607 …T_MATRIX SID_CONVERT_TO_1BIT_MATRIX CMD_SID_CONVERT_TO_1BIT_MATRIX 0 ss 1-bis-~versagting 2002… 3608 …4BIT_GRAYS SID_CONVERT_TO_4BIT_GRAYS CMD_SID_CONVERT_TO_4BIT_GRAYS 0 ss 4-bis-grys~kleur 2002-… 3609 …T_COLORS SID_CONVERT_TO_4BIT_COLORS CMD_SID_CONVERT_TO_4BIT_COLORS 0 ss 4-bis-~kleurpalet 2002… 3610 …8BIT_GRAYS SID_CONVERT_TO_8BIT_GRAYS CMD_SID_CONVERT_TO_8BIT_GRAYS 0 ss 8-bis-grysk~leur 2002-… 3611 …T_COLORS SID_CONVERT_TO_8BIT_COLORS CMD_SID_CONVERT_TO_8BIT_COLORS 0 ss 8-bis-~kleurpalet 2002… 3612 …MN_CONVERT_TO_24BIT SID_CONVERT_TO_24BIT CMD_SID_CONVERT_TO_24BIT 0 ss 24-bis- ~ware kleure 20… 19625 …Commands.UserInterface.Commands..uno:ConvertTo1BitThreshold Label 0 ss 1-bis drempel 2002-02-… 19626 …essCommands.UserInterface.Commands..uno:ConvertTo1BitMatrix Label 0 ss 1-bis-versag 2002-02-0… 19627 …ressCommands.UserInterface.Commands..uno:ConvertTo4BitGrays Label 0 ss 4-bis-gryskleur 2002-0… [all …]
|
/trunk/extras/l10n/source/st/ |
H A D | localize.sdf | 3606 …LD SID_CONVERT_TO_1BIT_THRESHOLD CMD_SID_CONVERT_TO_1BIT_THRESHOLD 0 st 1-bis-~drempel 2002-02… 3607 …T_MATRIX SID_CONVERT_TO_1BIT_MATRIX CMD_SID_CONVERT_TO_1BIT_MATRIX 0 st 1-bis-~versagting 2002… 3608 …4BIT_GRAYS SID_CONVERT_TO_4BIT_GRAYS CMD_SID_CONVERT_TO_4BIT_GRAYS 0 st 4-bis-grys~kleur 2002-… 3609 …T_COLORS SID_CONVERT_TO_4BIT_COLORS CMD_SID_CONVERT_TO_4BIT_COLORS 0 st 4-bis-~kleurpalet 2002… 3610 …8BIT_GRAYS SID_CONVERT_TO_8BIT_GRAYS CMD_SID_CONVERT_TO_8BIT_GRAYS 0 st 8-bis-grysk~leur 2002-… 3611 …T_COLORS SID_CONVERT_TO_8BIT_COLORS CMD_SID_CONVERT_TO_8BIT_COLORS 0 st 8-bis-~kleurpalet 2002… 3612 …MN_CONVERT_TO_24BIT SID_CONVERT_TO_24BIT CMD_SID_CONVERT_TO_24BIT 0 st 24-bis- ~ware kleure 20… 19625 …Commands.UserInterface.Commands..uno:ConvertTo1BitThreshold Label 0 st 1-bis drempel 2002-02-… 19626 …essCommands.UserInterface.Commands..uno:ConvertTo1BitMatrix Label 0 st 1-bis-versag 2002-02-0… 19627 …ressCommands.UserInterface.Commands..uno:ConvertTo4BitGrays Label 0 st 4-bis-gryskleur 2002-0… [all …]
|
/trunk/extras/l10n/source/tn/ |
H A D | localize.sdf | 3606 …LD SID_CONVERT_TO_1BIT_THRESHOLD CMD_SID_CONVERT_TO_1BIT_THRESHOLD 0 tn 1-bis-~drempel 2002-02… 3607 …T_MATRIX SID_CONVERT_TO_1BIT_MATRIX CMD_SID_CONVERT_TO_1BIT_MATRIX 0 tn 1-bis-~versagting 2002… 3608 …4BIT_GRAYS SID_CONVERT_TO_4BIT_GRAYS CMD_SID_CONVERT_TO_4BIT_GRAYS 0 tn 4-bis-grys~kleur 2002-… 3609 …T_COLORS SID_CONVERT_TO_4BIT_COLORS CMD_SID_CONVERT_TO_4BIT_COLORS 0 tn 4-bis-~kleurpalet 2002… 3610 …8BIT_GRAYS SID_CONVERT_TO_8BIT_GRAYS CMD_SID_CONVERT_TO_8BIT_GRAYS 0 tn 8-bis-grysk~leur 2002-… 3611 …T_COLORS SID_CONVERT_TO_8BIT_COLORS CMD_SID_CONVERT_TO_8BIT_COLORS 0 tn 8-bis-~kleurpalet 2002… 3612 …MN_CONVERT_TO_24BIT SID_CONVERT_TO_24BIT CMD_SID_CONVERT_TO_24BIT 0 tn 24-bis- ~ware kleure 20… 19625 …Commands.UserInterface.Commands..uno:ConvertTo1BitThreshold Label 0 tn 1-bis drempel 2002-02-… 19626 …essCommands.UserInterface.Commands..uno:ConvertTo1BitMatrix Label 0 tn 1-bis-versag 2002-02-0… 19627 …ressCommands.UserInterface.Commands..uno:ConvertTo4BitGrays Label 0 tn 4-bis-gryskleur 2002-0… [all …]
|