Lines Matching refs:n

94                     double n;  in ImpGetBool()  local
97 if( ImpScan( *p->pOUString, n, t, &nLen ) == SbxERR_OK ) in ImpGetBool()
102 if( n != 0.0 ) in ImpGetBool()
158 void ImpPutBool( SbxValues* p, sal_Int16 n ) in ImpPutBool() argument
160 if( n ) in ImpPutBool()
161 n = SbxTRUE; in ImpPutBool()
165 p->nChar = (xub_Unicode) n; break; in ImpPutBool()
167 p->nByte = (sal_uInt8) n; break; in ImpPutBool()
170 p->nInteger = n; break; in ImpPutBool()
172 p->nLong = n; break; in ImpPutBool()
174 p->nULong = (sal_uInt32) n; break; in ImpPutBool()
177 p->nUShort = (sal_uInt16) n; break; in ImpPutBool()
179 p->nSingle = n; break; in ImpPutBool()
182 p->nDouble = n; break; in ImpPutBool()
184 p->nInt64 = n; break; in ImpPutBool()
186 p->uInt64 = n; break; in ImpPutBool()
188 p->nULong64.Set( (sal_uInt32)n ); break; in ImpPutBool()
191 p->nLong64.Set( (sal_Int32)n ); break; in ImpPutBool()
194 ImpCreateDecimal( p )->setInt( (sal_Int16)n ); in ImpPutBool()
201 p->pOUString = new ::rtl::OUString( SbxRes( n ? STRING_TRUE : STRING_FALSE ) ); in ImpPutBool()
203 *p->pOUString = SbxRes( n ? STRING_TRUE : STRING_FALSE ); in ImpPutBool()
210 pVal->PutBool( sal_Bool( n != 0 ) ); in ImpPutBool()
216 *p->pChar = (xub_Unicode) n; break; in ImpPutBool()
218 *p->pByte = (sal_uInt8) n; break; in ImpPutBool()
221 *p->pInteger = (sal_Int16) n; break; in ImpPutBool()
224 *p->pUShort = (sal_uInt16) n; break; in ImpPutBool()
226 *p->pLong = n; break; in ImpPutBool()
228 *p->pULong = (sal_uInt32) n; break; in ImpPutBool()
230 *p->pSingle = n; break; in ImpPutBool()
233 *p->pDouble = n; break; in ImpPutBool()
235 *p->pnInt64 = n; break; in ImpPutBool()
237 *p->puInt64 = n; break; in ImpPutBool()
239 p->pULong64->Set( (sal_uInt32)n ); break; in ImpPutBool()
242 p->pLong64->Set( (sal_Int32)n ); break; in ImpPutBool()