Lines Matching refs:n

224 void ImpPutChar( SbxValues* p, xub_Unicode n )  in ImpPutChar()  argument
231 p->nChar = n; break; in ImpPutChar()
234 p->nInteger = n; break; in ImpPutChar()
236 p->nLong = n; break; in ImpPutChar()
238 p->nSingle = n; break; in ImpPutChar()
241 p->nDouble = n; break; in ImpPutChar()
243 p->nInt64 = n; break; in ImpPutChar()
245 p->uInt64 = n; break; in ImpPutChar()
247 p->nULong64 = ImpDoubleToUINT64( (double)n ); break; in ImpPutChar()
249 p->nLong64 = ImpDoubleToINT64( (double)n ); break; in ImpPutChar()
251 p->nLong64 = ImpDoubleToCurrency( (double)n ); break; in ImpPutChar()
253 ImpCreateDecimal( p )->setChar( n ); in ImpPutChar()
272 p->pOUString = new ::rtl::OUString( n ); in ImpPutChar()
274 *p->pOUString = ::rtl::OUString( n ); in ImpPutChar()
280 pVal->PutChar( n ); in ImpPutChar()
286 *p->pChar = n; break; in ImpPutChar()
288 *p->pByte = (sal_uInt8) n; break; in ImpPutChar()
291 *p->pInteger = n; break; in ImpPutChar()
294 *p->pUShort = (sal_uInt16) n; break; in ImpPutChar()
296 *p->pLong = (sal_Int32) n; break; in ImpPutChar()
298 *p->pULong = (sal_uInt32) n; break; in ImpPutChar()
300 *p->pSingle = (float) n; break; in ImpPutChar()
303 *p->pDouble = (double) n; break; in ImpPutChar()
305 *p->pnInt64 = n; break; in ImpPutChar()
307 *p->puInt64 = n; break; in ImpPutChar()
309 *p->pULong64 = ImpDoubleToUINT64( (double)n ); break; in ImpPutChar()
311 *p->pLong64 = ImpDoubleToINT64( (double)n ); break; in ImpPutChar()
313 *p->pLong64 = ImpDoubleToCurrency( (double)n ); break; in ImpPutChar()