Lines Matching refs:xColumns
461 Reference< XNameAccess > xColumns = GetDataColumns(); in GetIdentifierColumn() local
465 if (xColumns.is() && xColumns->hasByName(sIdentifierColumnName)) in GetIdentifierColumn()
468 xColumns->getByName(sIdentifierColumnName).getValue(), UNO_QUERY); in GetIdentifierColumn()
488 rtl::OUString lcl_AddProperty(Reference< XNameAccess > xColumns, in lcl_AddProperty() argument
506 if (xColumns->hasByName(uColumnName)) in lcl_AddProperty()
507 …xCol = Reference< sdb::XColumn > (*(Reference< XInterface > *)xColumns->getByName(uColumnName).get… in lcl_AddProperty()
522 Reference< XNameAccess > xColumns; in getByName() local
525 xColumns = xSupplyCols->getColumns(); in getByName()
527 if (!xColumns.is()) in getByName()
533 if (xColumns->hasByName(sId)) in getByName()
534 …xColumn = Reference< sdb::XColumn > (*(Reference< XInterface > *)xColumns->getByName(sId).getValue… in getByName()
551 pValues[nEntry].Value <<= lcl_AddProperty(xColumns, pMapping, sColName); in getByName()
648 Reference< XNameAccess > xColumns = GetDataColumns(); in hasElements() local
649 return xColumns.is() && (xColumns->getElementNames().getLength() != 0); in hasElements()