Home
last modified time | relevance | path

Searched refs:table (Results 126 – 150 of 1370) sorted by path

12345678910>>...55

/trunk/main/accessibility/workben/
H A DTODO12 * add table view
/trunk/main/automation/source/server/
H A Dsta_list.cxx1001 else if ( dynamic_cast< svt::table::TableControl* >(pBase) ) in ClientTree()
H A Dstatemnt.cxx799 dynamic_cast< svt::table::TableControl* > ( pBase->GetParent() ) ) in WriteControlData()
897 else if ( dynamic_cast< svt::table::TableControl* >(pBase) ) in WriteControlData()
5805 else if ( dynamic_cast< ::svt::table::TableControl* >(pControl) ) in Execute()
6151 … ::svt::table::TableControl *pTC = dynamic_cast< ::svt::table::TableControl* >(pControl); in Execute()
6159 … ::svt::table::PTableModel pModel = pTC->GetModel(); in Execute()
6171 … ::svt::table::PTableModel pModel = pTC->GetModel(); in Execute()
6250 … if ( pTC->GoToRow( ::svt::table::RowPos( nNr1-1 ) ) ) in Execute()
6256 ::svt::table::RowPos nLastPos; in Execute()
/trunk/main/boost/
H A Dboost_1_55_0.patch251 …-ur misc/boost_1_55_0/boost/unordered/detail/table.hpp misc/build/boost_1_55_0/boost/unordered/det…
252 --- misc/boost_1_55_0/boost/unordered/detail/table.hpp 2013-08-18 02:44:14.000000000 -0700
253 +++ misc/build/boost_1_55_0/boost/unordered/detail/table.hpp 2016-03-23 01:04:46.936005000 -0700
270 - assign_nodes<table> assign(*this);
272 + assign_nodes<table> assign_var(*this);
276 void assign(table const& x, true_type)
281 - move_assign_nodes<table> assign(*this);
282 + move_assign_nodes<table> assign_var(*this);
/trunk/main/bridges/source/cpp_uno/cc50_solaris_sparc/
H A Dcall.s122 ! get virtual table entry
/trunk/main/comphelper/source/property/
H A DTypeGeneration.cxx172 case CPPUTYPE_BORDERLINE: pType = &::getCppuType( (table::BorderLine*)0 ); break; in GenerateCppuType()
179 case CPPUTYPE_SHADOWFMT: pType = &::getCppuType( (table::ShadowFormat*)0 ); break; in GenerateCppuType()
193 case CPPUTYPE_TABLEBORDER: pType = &::getCppuType( (table::TableBorder*)0 ); break; in GenerateCppuType()
213 case CPPUTYPE_REFCELL: pType = &::getCppuType( (Reference<table::XCell>*)0 ); break; in GenerateCppuType()
236 …case CPPUTYPE_TABLEBORDERDISTANCES: pType = &::getCppuType( (table::TableBorderDistances*)0 );… in GenerateCppuType()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOCatalog.java157 String table = row.getString(3); in buildName() local
159 table = ""; in buildName()
161 …return DbTools.composeTableName(metadata, catalog, schema, table, false, ComposeRule.InDataManipul… in buildName()
H A DOColumnContainer.java47 private OTable table; field in OColumnContainer
62 this.table = table; in OColumnContainer()
87 …ewColumns = new SqlTableHelper().readColumns(metadata, table.catalogName, table.schemaName, table.… in createObject()
102 … String composedName = DbTools.composeTableNameForSelect(metadata.getConnection(), table); in createObject()
132 table.refreshColumns(); in impl_refresh()
137 if (table == null) { in appendObject()
142 …DbTools.createStandardColumnPart(descriptor, table.getConnection(), null, table.getTypeCreatePatte… in appendObject()
145 statement = table.getConnection().createStatement(); in appendObject()
155 Osl.ensure(table, "Table is null!"); in dropObject()
156 if (table == null) { in dropObject()
[all …]
H A DOIndex.java52 private OTable table; field in OIndex
56 … isPrimaryKeyIndex, boolean isClustered, List<String> columnNames, OTable table) throws ElementExi… in OIndex() argument
62 this.table = table; in OIndex()
138 return table; in getTable()
H A DOIndexColumnContainer.java60 … String table = AnyConverter.toString(index.getTable().getPropertyValue(PropertyIds.NAME.name)); in createObject() local
65 … index.getTable().getConnection().getMetaData().getIndexInfo(catalog, schema, table, false, false); in createObject()
81 … results = index.getTable().getConnection().getMetaData().getColumns(catalog, schema, table, name); in createObject()
H A DOIndexContainer.java53 protected OTable table; field in OIndexContainer
55 …public OIndexContainer(Object lock, List<String> names, boolean isCaseSensitive, OTable table) thr… in OIndexContainer() argument
57 this.table = table; in OIndexContainer()
68 XConnection connection = table.getConnection(); in createObject()
84 Object catalog = table.getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject()
85 … String schemaName = AnyConverter.toString(table.getPropertyValue(PropertyIds.SCHEMANAME.name)); in createObject()
86 String tableName = AnyConverter.toString(table.getPropertyValue(PropertyIds.NAME.name)); in createObject()
111 columnNames, table); in createObject()
126 results = metadata.getPrimaryKeys(catalog, schema, table); in isPrimaryKeyIndex()
142 XConnection connection = table.getConnection(); in appendObject()
[all …]
H A DOKey.java49 protected OTable table; field in OKey
63 …int updateRule, int deleteRule, List<String> columnNames, OTable table) throws ElementExistExcepti… in OKey() argument
69 this.table = table; in OKey()
130 return table; in getTable()
H A DOKeyColumnContainer.java60 … String table = AnyConverter.toString(tableProperties.getPropertyValue(PropertyIds.NAME.name)); in createObject() local
62 …Set results = key.getTable().getConnection().getMetaData().getImportedKeys(catalog, schema, table); in createObject()
76 … results = key.getTable().getConnection().getMetaData().getColumns(catalog, schema, table, name); in createObject()
H A DOKeyContainer.java55 private OTable table; field in OKeyContainer
58 …public OKeyContainer(Object lock, boolean isCaseSensitive, Map<String,OKey> keys, OTable table) th… in OKeyContainer() argument
78 this.table = table; in OKeyContainer()
109 XConnection connection = table.getConnection(); in appendObject()
125 …String tableName = DbTools.composeTableName(connection.getMetaData(), table, ComposeRule.InTableDe… in appendObject()
173 … String schema = AnyConverter.toString(this.table.getPropertyValue(PropertyIds.SCHEMANAME.name)); in appendObject()
174 … String table = AnyConverter.toString(this.table.getPropertyValue(PropertyIds.TABLENAME.name)); in appendObject() local
179 …nection.getMetaData().getImportedKeys(this.table.getPropertyValue(PropertyIds.CATALOGNAME.name), s… in appendObject()
182 …nnection.getMetaData().getPrimaryKeys(this.table.getPropertyValue(PropertyIds.CATALOGNAME.name), s… in appendObject()
234 XConnection connection = table.getConnection(); in dropObject()
[all …]
H A DSqlTableHelper.java74 …mns(XDatabaseMetaData metadata, String catalogName, String schema, String table) throws SQLExcepti… in readColumns() argument
80 XResultSet results = metadata.getColumns(catalog, schema, table, "%"); in readColumns()
137 boolean isCaseSensitive, OTable table) throws SQLException { in readKeys() argument
139 … primaryKey = readPrimaryKey(metadata, catalogName, schemaName, tableName, isCaseSensitive, table); in readKeys()
141 readForeignKeys(metadata, catalogName, schemaName, tableName, isCaseSensitive, keys, table); in readKeys()
146 …ame, String schemaName, String tableName, boolean isCaseSensitive, OTable table) throws SQLExcepti… in readPrimaryKey() argument
168 key = new OKey(pkName, isCaseSensitive, "", KeyType.PRIMARY, 0, 0, columns, table); in readPrimaryKey()
179 …String tableName, boolean isCaseSensitive, Map<String, OKey> keys, OTable table) throws SQLExcepti… in readForeignKeys() argument
208 … keyProperties.updateRule, keyProperties.deleteRule, keyProperties.columnNames, table); in readForeignKeys()
225 … keyProperties.updateRule, keyProperties.deleteRule, keyProperties.columnNames, table); in readForeignKeys()
[all …]
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java86 private String table = ""; field in DbTools.NameComponents
88 public NameComponents(String catalog, String schema, String table) { in NameComponents() argument
91 this.table = table; in NameComponents()
114 return table; in getTable()
117 public void setTable(String table) { in setTable() argument
118 this.table = table; in setTable()
173 composedName.append(quote ? quoteName(quoteString, table) : table); in composeTableName()
184 NameComponents nameComponents = getTableNameComponents(table); in composeTableName()
260 composedName.append(shouldQuote ? quoteName(quoteString, table) : table); in doComposeTableName()
276 String schema, String table) throws SQLException { in composeTableNameForSelect() argument
[all …]
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLDatabaseMetaData.java116 public XResultSet getColumnPrivileges(Object catalog, String schema, String table, in getColumnPrivileges() argument
128 jdbcCatalog, schema, table, columnNamePattern)); in getColumnPrivileges()
232 … return wrapResultSet(jdbcDatabaseMetaData.getVersionColumns(jdbcCatalog, schema, table)); in getVersionColumns()
356 return wrapResultSet(jdbcDatabaseMetaData.getExportedKeys(jdbcCatalog, schema, table)); in getExportedKeys()
372 return wrapResultSet(jdbcDatabaseMetaData.getImportedKeys(jdbcCatalog, schema, table)); in getImportedKeys()
379 …public XResultSet getPrimaryKeys(Object catalog, String schema, String table) throws SQLException { in getPrimaryKeys() argument
388 return wrapResultSet(jdbcDatabaseMetaData.getPrimaryKeys(jdbcCatalog, schema, table)); in getPrimaryKeys()
395 public XResultSet getIndexInfo(Object catalog, String schema, String table, in getIndexInfo() argument
406 jdbcCatalog, schema, table, unique, approximate)); in getIndexInfo()
413 public XResultSet getBestRowIdentifier(Object catalog, String schema, String table, in getBestRowIdentifier() argument
[all …]
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java95 ArrayList<ORowSetValue[]> table = new ArrayList<>(); in getColumns() local
141 table.add(rowOut); in getColumns()
143 return new PostgresqlDatabaseMetaDataResultSet(results, table); in getColumns()
345 ArrayList<ORowSetValue[]> table = new ArrayList<>(); in getTypeInfo() local
399 table.add(rowOut); in getTypeInfo()
402 return new PostgresqlDatabaseMetaDataResultSet(results, table); in getTypeInfo()
/trunk/main/connectivity/qa/complex/connectivity/hsqldb/
H A DDatabaseMetaData.java95 String table = rs.getString( 3 ); in test() local
97 …System.out.println("Catalog: " + catalog + " Schema: " + schema + " Table: " + table + " Type: " +… in test()
99 ResultSet rsColumns = m_xMD.getColumns(catalog,schema,table,"%"); in test()
/trunk/main/connectivity/qa/connectivity/tools/
H A DCRMDatabase.java153 HsqlTableDescriptor table = new HsqlTableDescriptor( "categories", in createTables() local
159 m_database.createTable( table, true ); in createTables()
164 table = new HsqlTableDescriptor( "products", in createTables()
169 m_database.createTable( table, true ); in createTables()
176 table = new HsqlTableDescriptor( "customers", in createTables()
184 m_database.createTable( table, true ); in createTables()
191 table = new HsqlTableDescriptor( "orders", in createTables()
197 m_database.createTable( table, true ); in createTables()
202 table = new HsqlTableDescriptor( "orders_details", in createTables()
207 m_database.createTable( table, true ); in createTables()
/trunk/main/connectivity/source/drivers/ado/
H A DADatabaseMetaData.cxx145 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getColumnPrivileges()
148 …ADORecordset *pRecordset = m_pADOConnection->getColumnPrivileges(catalog,schema,table,columnNamePa… in getColumnPrivileges()
286 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getExportedKeys()
288 ADORecordset *pRecordset = m_pADOConnection->getExportedKeys(catalog,schema,table); in getExportedKeys()
300 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getImportedKeys()
302 ADORecordset *pRecordset = m_pADOConnection->getImportedKeys(catalog,schema,table); in getImportedKeys()
315 …const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) throw(SQLExcepti… in getPrimaryKeys()
317 ADORecordset *pRecordset = m_pADOConnection->getPrimaryKeys(catalog,schema,table); in getPrimaryKeys()
330 const Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo()
333 ADORecordset *pRecordset = m_pADOConnection->getIndexInfo(catalog,schema,table,unique,approximate); in getIndexInfo()
H A DAwrapado.cxx1629 … ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) in getExportedKeys() argument
1651 varCriteria[nPos].setString(table); in getExportedKeys()
1670 … ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) in getImportedKeys() argument
1696 varCriteria[nPos].setString(table); in getImportedKeys()
1713 … ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table ) in getPrimaryKeys() argument
1735 varCriteria[nPos].setString(table); in getPrimaryKeys()
1753 …t ::com::sun::star::uno::Any& catalog, const ::rtl::OUString& schema, const ::rtl::OUString& table, in getIndexInfo()
1780 varCriteria[nPos].setString(table); in getIndexInfo()
2090 const ::rtl::OUString& table, in getColumnPrivileges()
2113 varCriteria[nPos].setString(table); in getColumnPrivileges()
/trunk/main/connectivity/source/drivers/calc/
H A DCDatabaseMetaData.cxx56 using namespace ::com::sun::star::table;
H A DCTable.cxx74 using namespace ::com::sun::star::table;
/trunk/main/connectivity/source/drivers/dbase/
H A DDDatabaseMetaData.cxx260 const Any& /*catalog*/, const ::rtl::OUString& /*schema*/, const ::rtl::OUString& table, in getIndexInfo()
281 ::cppu::extractInterface(xTable,xNames->getByName(table)); in getIndexInfo()
282 aRow[3] = new ORowSetValueDecorator(table); in getIndexInfo()

Completed in 132 milliseconds

12345678910>>...55