Home
last modified time | relevance | path

Searched refs:KeyType (Results 1 – 25 of 32) sorted by relevance

12

/aoo42x/main/tools/workben/
H A Dhashtbl.hxx120 #define DECLARE_HASHTABLE_INTERN(ClassName,Owner,KeyType,ObjType) \ argument
132 ObjType Find (KeyType const& Key) const \
135 BOOL Insert (KeyType const& Key, ObjType Object) \
138 ObjType Delete (KeyType const&Key) \
143 #define DECLARE_HASHTABLE(ClassName,KeyType,ObjType) \ argument
144 DECLARE_HASHTABLE_INTERN(ClassName,FALSE,KeyType,ObjType)
147 #define DECLARE_HASHTABLE_OWNER(ClassName,KeyType,ObjType) \ argument
148 DECLARE_HASHTABLE_INTERN(ClassName##2,TRUE,KeyType,ObjType) \
164 #define IMPLEMENT_HASHTABLE_OWNER(ClassName,KeyType,ObjType) \ argument
/aoo42x/main/oox/inc/oox/drawingml/chart/
H A Dmodelbase.hxx80 template< typename KeyType, typename ModelType >
81 class ModelMap : public RefMap< KeyType, ModelType >
84 typedef typename RefMap< KeyType, ModelType >::key_type key_type;
85 typedef typename RefMap< KeyType, ModelType >::mapped_type mapped_type;
86 typedef typename RefMap< KeyType, ModelType >::value_type value_type;
91 inline ModelType& create( KeyType eKey ) { return insert( eKey, new ModelType ); } in create()
93 …inline ModelType& create( KeyType eKey, const Param1Type& rParam1 ) { return insert( eKey, new M… in create()
96 …inline ModelType& insert( KeyType eKey, ModelType* pModel ) { (*this)[ eKey ].reset( pModel ); r… in insert()
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOKeyContainer.java49 import com.sun.star.sdbcx.KeyType;
118 if (keyType == KeyType.FOREIGN) { in appendObject()
128 if (keyType == KeyType.PRIMARY) { in appendObject()
130 } else if (keyType == KeyType.FOREIGN) { in appendObject()
149 if (keyType == KeyType.FOREIGN) { in appendObject()
178 if (keyType == KeyType.FOREIGN) { in appendObject()
246 keyType = KeyType.PRIMARY; in dropObject()
249 if (keyType == KeyType.PRIMARY) { in dropObject()
H A DSqlTableHelper.java42 import com.sun.star.sdbcx.KeyType;
168 key = new OKey(pkName, isCaseSensitive, "", KeyType.PRIMARY, 0, 0, columns, table); in readPrimaryKey()
213 … keyProperties = new KeyProperties(referencedName, KeyType.FOREIGN, updateRule, deleteRule); in readForeignKeys()
/aoo42x/main/connectivity/source/commontools/
H A DTKeys.cxx151 if ( nKeyType == KeyType::FOREIGN ) in appendObject()
174 if ( nKeyType == KeyType::PRIMARY ) in appendObject()
178 else if ( nKeyType == KeyType::FOREIGN ) in appendObject()
198 if ( nKeyType == KeyType::FOREIGN ) in appendObject()
229 if ( nKeyType == KeyType::FOREIGN ) in appendObject()
288 sal_Int32 nKeyType = KeyType::PRIMARY; in dropObject()
294 if ( KeyType::PRIMARY == nKeyType ) in dropObject()
H A Ddbtools2.cxx278 if ( nKeyType == KeyType::PRIMARY ) in createStandardKeyStatement()
293 else if(nKeyType == KeyType::UNIQUE) in createStandardKeyStatement()
304 else if(nKeyType == KeyType::FOREIGN) in createStandardKeyStatement()
H A DTTableHelper.cxx334 … sdbcx::TKeyProperties pKeyProps(new sdbcx::KeyProperties(::rtl::OUString(),KeyType::PRIMARY,0,0)); in refreshPrimaryKeys()
393 …pKeyProps.reset(new sdbcx::KeyProperties(sReferencedName,KeyType::FOREIGN,nUpdateRule,nDeleteRule)… in refreshForgeinKeys()
/aoo42x/main/connectivity/source/drivers/ado/
H A DADatabaseMetaDataImpl.cxx502 sal_Int32 nKeyType = KeyType::PRIMARY; in MapKeyRule()
506 nKeyType = KeyType::PRIMARY; in MapKeyRule()
509 nKeyType = KeyType::FOREIGN; in MapKeyRule()
512 nKeyType = KeyType::UNIQUE; in MapKeyRule()
523 case KeyType::PRIMARY: in Map2KeyRule()
526 case KeyType::FOREIGN: in Map2KeyRule()
529 case KeyType::UNIQUE: in Map2KeyRule()
/aoo42x/main/filter/source/xsltfilter/
H A Dcontainerhelper.hxx33 template< typename KeyType, typename ObjType, typename CompType = ::std::less< KeyType > >
34 class RefMap : public ::std::map< KeyType, ::boost::shared_ptr< ObjType >, CompType >
37 typedef ::std::map< KeyType, ::boost::shared_ptr< ObjType >, CompType > container_type;
/aoo42x/main/oox/inc/oox/helper/
H A Drefmap.hxx43 template< typename KeyType, typename ObjType, typename CompType = ::std::less< KeyType > >
44 class RefMap : public ::std::map< KeyType, ::boost::shared_ptr< ObjType >, CompType >
47 typedef ::std::map< KeyType, ::boost::shared_ptr< ObjType >, CompType > container_type;
/aoo42x/main/udkapi/com/sun/star/container/
H A DEnumerableMap.idl85 @param KeyType
91 if <arg>KeyType</arg> or <arg>ValueType</arg> are unsupported types.
97 create( [in] type KeyType, [in] type ValueType )
105 @param KeyType
113 if <arg>KeyType</arg> or <arg>ValueType</arg> are unsupported types.
123 [in] type KeyType,
H A DXMap.idl56 <p>Implementations are free to accept any supertype of <code>KeyType</code> as keys.</p>
58 [attribute, readonly] type KeyType;
/aoo42x/main/connectivity/source/drivers/adabas/
H A DBKeys.cxx69 if(nKeyType == KeyType::PRIMARY) in appendObject()
73 else if(nKeyType == KeyType::FOREIGN) in appendObject()
95 if(nKeyType == KeyType::FOREIGN) in appendObject()
141 if(nKeyType == KeyType::FOREIGN) in appendObject()
H A DBTables.cxx255 if(nKeyType == KeyType::PRIMARY) in createTable()
276 else if(nKeyType == KeyType::UNIQUE) in createTable()
293 else if(nKeyType == KeyType::FOREIGN) in createTable()
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java59 import com.sun.star.sdbcx.KeyType;
604 if (keyType == KeyType.PRIMARY) { in createStandardKeyStatement()
612 } else if (keyType == KeyType.UNIQUE) { in createStandardKeyStatement()
615 } else if (keyType == KeyType.FOREIGN) { in createStandardKeyStatement()
735 if (keyType == KeyType.PRIMARY) { in getPrimaryKeyColumns()
/aoo42x/main/sc/source/filter/inc/
H A Dftools.hxx225 template< typename KeyType, typename ObjType >
226 class ScfRefMap : public ::std::map< KeyType, ScfRef< ObjType > >
229 typedef KeyType key_type;
/aoo42x/main/dbaccess/source/ui/querydesign/
H A DQueryTableView.cxx265 …pNewConnData->SetFieldType(JTCS_TO,isColumnInKeyType(xReferencedKeys,sRelatedColumn,KeyType::PRIMA… in addConnections()
521 if(KeyType::FOREIGN == nKeyType) in getKeyReferencedTo()
617 case KeyType::FOREIGN: in AddTabWin()
640 case KeyType::PRIMARY: in AddTabWin()
/aoo42x/main/wizards/com/sun/star/wizards/db/
H A DCommandMetaData.java27 import com.sun.star.sdbcx.KeyType;
613 if (curtype == KeyType.FOREIGN) in getReferencedTables()
651 if (curtype == KeyType.FOREIGN) in getKeyColumns()
H A DTableDescriptor.java46 import com.sun.star.sdbcx.KeyType;
161 xKey.setPropertyValue("Type", new Integer(KeyType.PRIMARY)); in createPrimaryKeys()
/aoo42x/main/offapi/com/sun/star/sdbcx/
H A DKeyType.idl31 published constants KeyType
H A DKeyDescriptor.idl48 @see com::sun::star::sdbcx::KeyType
H A DKey.idl60 @see com::sun::star::sdbcx::KeyType
/aoo42x/main/dbaccess/source/ui/tabledesign/
H A DTableController.cxx799 if(KeyType::PRIMARY == nKeyType) in appendPrimaryKey()
813 xKey->setPropertyValue(PROPERTY_TYPE,makeAny(KeyType::PRIMARY)); in appendPrimaryKey()
1390 if(KeyType::PRIMARY == nKeyType) in dropPrimaryKey()
/aoo42x/main/dbaccess/source/ui/relationdesign/
H A DRTableConnectionData.cxx316 xKey->setPropertyValue(PROPERTY_TYPE,makeAny(KeyType::FOREIGN)); in Update()
H A DRelationController.cxx390 if ( KeyType::FOREIGN == nKeyType ) in loadTableData()

Completed in 126 milliseconds

12