Lines Matching refs:pFieldDesc
130 OFieldDescription* pFieldDesc = _rRow.GetActFieldDescr(); in operator <<() local
131 if(pFieldDesc) in operator <<()
134 _rStr.WriteByteString(pFieldDesc->GetName()); in operator <<()
135 _rStr.WriteByteString(pFieldDesc->GetDescription()); in operator <<()
136 _rStr.WriteByteString(pFieldDesc->GetHelpText()); in operator <<()
138 Any aValue = pFieldDesc->GetControlDefault(); in operator <<()
150 _rStr << pFieldDesc->GetType(); in operator <<()
152 _rStr << pFieldDesc->GetPrecision(); in operator <<()
153 _rStr << pFieldDesc->GetScale(); in operator <<()
154 _rStr << pFieldDesc->GetIsNullable(); in operator <<()
155 _rStr << pFieldDesc->GetFormatKey(); in operator <<()
156 _rStr << (sal_Int32)pFieldDesc->GetHorJustify(); in operator <<()
157 _rStr << sal_Int32(pFieldDesc->IsAutoIncrement() ? 1 : 0); in operator <<()
158 _rStr << sal_Int32(pFieldDesc->IsPrimaryKey() ? 1 : 0); in operator <<()
159 _rStr << sal_Int32(pFieldDesc->IsCurrency() ? 1 : 0); in operator <<()
173 OFieldDescription* pFieldDesc = new OFieldDescription(); in operator >>() local
174 _rRow.m_pActFieldDescr = pFieldDesc; in operator >>()
177 pFieldDesc->SetName(sValue); in operator >>()
180 pFieldDesc->SetDescription(sValue); in operator >>()
182 pFieldDesc->SetHelpText(sValue); in operator >>()
201 pFieldDesc->SetControlDefault(aControlDefault); in operator >>()
205 pFieldDesc->SetTypeValue(nValue); in operator >>()
208 pFieldDesc->SetPrecision(nValue); in operator >>()
210 pFieldDesc->SetScale(nValue); in operator >>()
212 pFieldDesc->SetIsNullable(nValue); in operator >>()
214 pFieldDesc->SetFormatKey(nValue); in operator >>()
216 pFieldDesc->SetHorJustify((SvxCellHorJustify)nValue); in operator >>()
219 pFieldDesc->SetAutoIncrement(nValue != 0); in operator >>()
221 pFieldDesc->SetPrimaryKey(nValue != 0); in operator >>()
223 pFieldDesc->SetCurrency(nValue != 0); in operator >>()