Home
last modified time | relevance | path

Searched refs:wb (Results 1 – 19 of 19) sorted by relevance

/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/
H A DPocketExcelEncoder.java44 private Workbook wb; field in PocketExcelEncoder
57 wb = new Workbook(name); in PocketExcelEncoder()
72 wb.addWorksheet(sheetName); in createWorksheet()
83 Vector v = wb.getWorksheetNames(); in getNumberOfSheets()
97 return wb; in getWorkbook()
198 wb.addCell(row, column, fmt, cellContents); in addCell()
210 wb.addColInfo(columnRows); in setColumnRows()
224 wb.addNameDefinition(nd); in setNameDefinition()
235 wb.addSettings(s); in addSettings()
275 Vector v = wb.getWorksheetNames(); in getSheetName()
H A DPocketExcelDecoder.java49 private Workbook wb; field in PocketExcelDecoder
88 wb = (Workbook) e.nextElement(); in addDeviceContent()
100 Vector v = wb.getWorksheetNames(); in getNumberOfSheets()
113 Enumeration e = wb.getDefinedNames(); in getNameDefinitions()
132 return (wb.getSettings()); in getSettings()
180 ws = wb.getWorksheet(sheetIndex); in setWorksheet()
199 String wsName = wb.getSheetName(wsIndex); in getSheetName()
407 ExtendedFormat xf = wb.getExtendedFormat(cell.getIxfe()); in readCellFormat()
409 FontDescription fd = wb.getFontDescription(xf.getFontIndex()); in readCellFormat()
H A DSxcDocumentDeserializerImpl.java93 Workbook wb = (Workbook) e.nextElement(); in getWorkbookName() local
95 String workbookName = wb.getName(); in getWorkbookName()
112 Workbook wb = (Workbook) e.nextElement(); in getWorksheetNames() local
113 Vector v = wb.getWorksheetNames(); in getWorksheetNames()
H A DPluginFactoryImpl.java116 Workbook wb = new Workbook(name, is); in createDeviceDocument() local
117 return wb; in createDeviceDocument()
H A DSxcDocumentSerializerImpl.java104 Workbook wb = ((PocketExcelEncoder) encoder).getWorkbook(); in serialize() local
105 cd.addDocument(wb); in serialize()
/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DDefinedName.java51 private Workbook wb; field in DefinedName
53 public DefinedName(NameDefinition nd, Workbook wb) throws IOException { in DefinedName() argument
55 fh.setWorkbook(wb); in DefinedName()
56 this.wb = wb; in DefinedName()
73 public DefinedName(InputStream is, Workbook wb) throws IOException { in DefinedName() argument
76 fh.setWorkbook(wb); in DefinedName()
77 this.wb = wb; in DefinedName()
178 baseCellAddress = "$" + wb.getSheetName(0) + ".A1"; in getNameDefinition()
H A DWorksheet.java47 private Workbook wb; field in Worksheet
59 public Worksheet(Workbook wb) { in Worksheet() argument
60 this.wb = wb; in Worksheet()
140 Formula f = new Formula(is, wb); in read()
H A DFormula.java58 public Formula(int row, int column, String cellContents, int ixfe, Format fmt, Workbook wb) in Formula() argument
61 fh.setWorkbook(wb); in Formula()
128 public Formula(InputStream is, Workbook wb) throws IOException { in Formula() argument
130 fh.setWorkbook(wb); in Formula()
/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DTokenDecoder.java55 private Workbook wb; field in TokenDecoder
72 public void setWorkbook(Workbook wb) { in setWorkbook() argument
75 this.wb = wb; in setWorkbook()
221 Enumeration e = wb.getDefinedNames(); in readNameToken()
286 outputString = "$" + wb.getSheetName(Sheet1) + cellRef; in read3DCellRefToken()
288 … outputString = "$" + wb.getSheetName(Sheet1) + cellRef + ":$" + wb.getSheetName(Sheet2) + cellRef; in read3DCellRefToken()
334 outputString = "$" + wb.getSheetName(Sheet1) + cellRef1 + ":" + cellRef2; in read3DCellAreaRefToken()
336 …outputString = "$" + wb.getSheetName(Sheet1) + cellRef1 + ":$" + wb.getSheetName(Sheet2) + "." + c… in read3DCellAreaRefToken()
H A DFormulaHelper.java60 public void setWorkbook(Workbook wb) { in setWorkbook() argument
62 encoder.setWorkbook(wb); in setWorkbook()
63 decoder.setWorkbook(wb); in setWorkbook()
64 parser.setWorkbook(wb); in setWorkbook()
H A DTokenEncoder.java51 private Workbook wb; field in TokenEncoder
65 public void setWorkbook(Workbook wb) { in setWorkbook() argument
67 this.wb = wb; in setWorkbook()
328 Enumeration e = wb.getDefinedNames(); in nameDefinitionEncoder()
384 Vector names = wb.getWorksheetNames(); in findSheetIndex()
H A DFormulaParser.java50 private Workbook wb; field in FormulaParser
65 public void setWorkbook(Workbook wb) { in setWorkbook() argument
67 this.wb = wb; in setWorkbook()
/AOO41X/main/xmerge/source/minicalc/java/org/openoffice/xmerge/converter/xml/sxc/minicalc/
H A DMinicalcEncoder.java58 private Workbook wb; field in MinicalcEncoder
96 wb = new Workbook(name, password); in MinicalcEncoder()
116 ws = wb.createWorksheet(sheetName); in createWorksheet()
132 int numSheets = wb.getNumberOfSheets(); in getNumberOfSheets()
150 ws = wb.getWorksheet(sheetID); in getRecords()
538 return wb.getWorksheet(sheet).getName(); in getSheetName()
H A DMinicalcDecoder.java60 private Workbook wb; field in MinicalcDecoder
102 wb = new Workbook(name, password); in MinicalcDecoder()
147 String fullSheetName = new String(wb.getWorkbookName() + "-" + sheetName); in addDeviceContent()
175 wb.addWorksheet(ws); in addDeviceContent()
196 return wb.getNumberOfSheets(); in getNumberOfSheets()
213 ws = wb.getWorksheet(sheetIndex); in setWorksheet()
/AOO41X/test/testassistant/src/org/openoffice/test/assistant/views/
H A DVclExplorer.java325 IWorkbench wb = PlatformUI.getWorkbench(); in makeActions()
328 wb.getProgressService().run(true, false, op); in makeActions()
373 IWorkbench wb = PlatformUI.getWorkbench(); in doInsertCode() local
374 IWorkbenchWindow window = wb.getActiveWorkbenchWindow(); in doInsertCode()
/AOO41X/main/migrationanalysis/src/driver_docs/sources/excel/
H A DMigrationAnalyser.cls1580 Sub SetDocProperties(docAnalysis As DocumentAnalysis, wb As Workbook, fso As FileSystemObject)
1595 docAnalysis.PageCount = wb.Sheets.count
1613 wb.BuiltinDocumentProperties(appPropertyLastAuthor)
1615 val(wb.BuiltinDocumentProperties(appPropertyRevision))
1617 fso.GetFileName(wb.BuiltinDocumentProperties(appPropertyTemplate))
1619 wb.BuiltinDocumentProperties(appPropertyTimeLastSaved)
/AOO41X/main/extensions/source/macosx/spotlight/
H A Dioapi.m105 mode_fopen = "wb";
/AOO41X/main/testtools/source/cliversioning/
H A Dversion.cs41 uno.util.WeakBase wb = new uno.util.WeakBase(); in Version()
/AOO41X/extras/l10n/source/kid/
H A Dlocalize.sdf4814 ….src 0 string RID_SVXITEMS_FORBIDDEN_RULE_ON 0 kid 97a]wb‖Don't apply list of …
11481 …asic\shared\05060700.xhp 0 help par_id3153360 24 0 kid 2wb=fs‖Event …
17637 …calc\01\04060116.xhp 0 help bm_id3163826 0 kid 5kk]wb‖\<bookmark_value\>IM…
22324 …xt\schart\04\01020000.xhp 0 help par_id3154511 8 0 kid wb+8ei‖Select next obje…
25778 …hared\01\05230300.xhp 0 help par_id3150669 8 0 kid g+h-wb‖\<ahelp hid=\"SVX:ME…
26616 …hared\01\06050300.xhp 0 help par_id3155934 4 0 kid 4]6]wb‖\<ahelp hid=\"HID_VA…
26773 …hared\01\02100000.xhp 0 help par_id3151101 188 0 kid 064=wb‖After you close the …
30432 …hared\02\13020000.xhp 0 help par_id3152594 3 0 kid ll3]wb‖If you split the pag…
35633 …atabase\02010100.xhp 0 help par_id3152948 128 0 kid 9ck=wb‖NOT IN ('Smith') …
38433 …floating_toolbar.xhp 0 help par_idN107AC 0 kid 3-43wb‖Docking toolbars and…
[all …]