/aoo42x/main/tools/workben/ |
H A D | hashtbl.hxx | 120 #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 D | modelbase.hxx | 80 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 D | OKeyContainer.java | 49 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 D | SqlTableHelper.java | 42 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 D | TKeys.cxx | 151 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 D | dbtools2.cxx | 278 if ( nKeyType == KeyType::PRIMARY ) in createStandardKeyStatement() 293 else if(nKeyType == KeyType::UNIQUE) in createStandardKeyStatement() 304 else if(nKeyType == KeyType::FOREIGN) in createStandardKeyStatement()
|
H A D | TTableHelper.cxx | 334 … 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 D | ADatabaseMetaDataImpl.cxx | 502 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 D | containerhelper.hxx | 33 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 D | refmap.hxx | 43 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 D | EnumerableMap.idl | 85 @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 D | XMap.idl | 56 <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 D | BKeys.cxx | 69 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 D | BTables.cxx | 255 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 D | DbTools.java | 59 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 D | ftools.hxx | 225 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 D | QueryTableView.cxx | 265 …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 D | CommandMetaData.java | 27 import com.sun.star.sdbcx.KeyType; 613 if (curtype == KeyType.FOREIGN) in getReferencedTables() 651 if (curtype == KeyType.FOREIGN) in getKeyColumns()
|
H A D | TableDescriptor.java | 46 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 D | KeyType.idl | 31 published constants KeyType
|
H A D | KeyDescriptor.idl | 48 @see com::sun::star::sdbcx::KeyType
|
H A D | Key.idl | 60 @see com::sun::star::sdbcx::KeyType
|
/aoo42x/main/dbaccess/source/ui/tabledesign/ |
H A D | TableController.cxx | 799 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 D | RTableConnectionData.cxx | 316 xKey->setPropertyValue(PROPERTY_TYPE,makeAny(KeyType::FOREIGN)); in Update()
|
H A D | RelationController.cxx | 390 if ( KeyType::FOREIGN == nKeyType ) in loadTableData()
|