Lines Matching refs:oSheet
39 protected XSpreadsheet oSheet; field in _XSubTotalCalculatable
42 oSheet = (XSpreadsheet) tEnv.getObjRelation("SHEET"); in before()
44 if (oSheet == null) { in before()
47 oSheet = (XSpreadsheet) UnoRuntime.queryInterface( in before()
50 if (oSheet == null) { in before()
63 oSheet.getCellByPosition(0, 0).setFormula("first"); in _applySubTotals()
64 oSheet.getCellByPosition(1, 0).setFormula("second"); in _applySubTotals()
65 oSheet.getCellByPosition(0, 3).setFormula(""); in _applySubTotals()
66 oSheet.getCellByPosition(0, 1).setValue(5); in _applySubTotals()
67 oSheet.getCellByPosition(0, 2).setValue(5); in _applySubTotals()
68 oSheet.getCellByPosition(1, 1).setValue(17); in _applySubTotals()
69 oSheet.getCellByPosition(1, 2).setValue(25); in _applySubTotals()
72 String formula = oSheet.getCellByPosition(0, 3).getFormula(); in _applySubTotals()
107 String formula = oSheet.getCellByPosition(0, 3).getFormula(); in _removeSubTotals()