Lines Matching refs:eSubTotal

152 	ScSubTotalFunc eSubTotal;  in GeneralToSubTotal()  local
155 case sheet::GeneralFunction_NONE: eSubTotal = SUBTOTAL_FUNC_NONE; break; in GeneralToSubTotal()
156 case sheet::GeneralFunction_SUM: eSubTotal = SUBTOTAL_FUNC_SUM; break; in GeneralToSubTotal()
157 case sheet::GeneralFunction_COUNT: eSubTotal = SUBTOTAL_FUNC_CNT2; break; in GeneralToSubTotal()
158 case sheet::GeneralFunction_AVERAGE: eSubTotal = SUBTOTAL_FUNC_AVE; break; in GeneralToSubTotal()
159 case sheet::GeneralFunction_MAX: eSubTotal = SUBTOTAL_FUNC_MAX; break; in GeneralToSubTotal()
160 case sheet::GeneralFunction_MIN: eSubTotal = SUBTOTAL_FUNC_MIN; break; in GeneralToSubTotal()
161 case sheet::GeneralFunction_PRODUCT: eSubTotal = SUBTOTAL_FUNC_PROD; break; in GeneralToSubTotal()
162 case sheet::GeneralFunction_COUNTNUMS: eSubTotal = SUBTOTAL_FUNC_CNT; break; in GeneralToSubTotal()
163 case sheet::GeneralFunction_STDEV: eSubTotal = SUBTOTAL_FUNC_STD; break; in GeneralToSubTotal()
164 case sheet::GeneralFunction_STDEVP: eSubTotal = SUBTOTAL_FUNC_STDP; break; in GeneralToSubTotal()
165 case sheet::GeneralFunction_VAR: eSubTotal = SUBTOTAL_FUNC_VAR; break; in GeneralToSubTotal()
166 case sheet::GeneralFunction_VARP: eSubTotal = SUBTOTAL_FUNC_VARP; break; in GeneralToSubTotal()
170 eSubTotal = SUBTOTAL_FUNC_NONE; in GeneralToSubTotal()
172 return eSubTotal; in GeneralToSubTotal()
176 sheet::GeneralFunction ScDataUnoConversion::SubTotalToGeneral( ScSubTotalFunc eSubTotal ) in SubTotalToGeneral() argument
179 switch (eSubTotal) in SubTotalToGeneral()