Searched refs:recs (Results 1 – 8 of 8) sorted by relevance
/aoo4110/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/ |
H A D | WSDecoder.java | 69 byte[] parseRecords(Record[] recs) throws IOException { in parseRecords() argument 72 HeaderInfo header = readHeader(recs[0].getBytes()); in parseRecords() 74 byte[][] byteArrays = new byte[recs.length - 1][]; in parseRecords() 82 for (int i = 1; i < recs.length; i++) { in parseRecords() 83 byteArrays[i-1] = decompress(recs[i].getBytes(), in parseRecords() 91 for (int i = 1; i < recs.length; i++) { in parseRecords() 92 byteArrays[i-1] = recs[i].getBytes(); in parseRecords() 105 for (int i = 0; i < recs.length - 1; i++) in parseRecords() 109 for (int i = 0; i < recs.length - 1; i++) { in parseRecords() 126 Wse[] parseDocument(Record[] recs) throws IOException { in parseDocument() argument [all …]
|
H A D | WSEncoder.java | 201 Record recs[] = new Record[nRecs]; in getRecords() local 203 recs[i] = (Record)allRecs.elementAt(i); in getRecords() 204 return recs; in getRecords()
|
H A D | DocumentDeserializerImpl.java | 115 Record[] recs = pdb.getRecords(); in deserialize() local 117 Wse[] b = decoder.parseDocument(recs); in deserialize()
|
/aoo4110/main/xmerge/source/palmtests/qa/comparator/ |
H A D | PalmDB.java | 101 public PalmDB(String name, Record[] recs) in PalmDB() argument 104 this(name.getBytes(PDBUtil.ENCODING), recs); in PalmDB() 116 public PalmDB(byte[] name, Record[] recs) in PalmDB() argument 121 records = new Record[recs.length]; in PalmDB() 122 System.arraycopy(recs, 0, records, 0, recs.length); in PalmDB()
|
/aoo4110/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/ |
H A D | PalmDB.java | 142 short attribute, Record[] recs) in PalmDB() argument 146 attribute, recs); in PalmDB() 168 short attribute, Record[] recs) throws UnsupportedEncodingException { in PalmDB() argument 172 records = new Record[recs.length]; in PalmDB() 173 System.arraycopy(recs, 0, records, 0, recs.length); in PalmDB()
|
H A D | PalmDocument.java | 87 short attribute, Record[] recs) in PalmDocument() argument 89 pdb = new PalmDB(name, creatorID, typeID, version, attribute, recs); in PalmDocument()
|
/aoo4110/main/xmerge/source/aportisdoc/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/ |
H A D | DocDecoder.java | 68 String parseRecords(Record[] recs) throws IOException { in parseRecords() argument 71 HeaderInfo header = readHeader(recs[0].getBytes()); in parseRecords() 83 byte[] bytes = decompress(recs[i].getBytes(), in parseRecords() 95 byte[] bytes = recs[i].getBytes(); in parseRecords()
|
H A D | DocumentDeserializerImpl.java | 104 Record[] recs = pdb.getRecords(); in deserialize() local 107 String text = decoder.parseRecords(recs); in deserialize()
|
Completed in 34 milliseconds