| /AOO41X/main/svx/workben/msview/ |
| H A D | msview.cxx | 86 class Atom class 89 ~Atom(); 92 static Atom* import( const DffRecordHeader& rRootRecordHeader, SvStream& rStCtrl ); 93 static Atom* import( UINT16 nRecType, SvStream& rStCtrl ); 104 inline const Atom* findFirstChildAtom( sal_uInt16 nRecType ) const; 107 const Atom* findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const; 110 inline const Atom* findFirstChildAtom( sal_uInt16 nRecType, sal_uInt16 nRecInstance ) const; 113 …const Atom* findNextChildAtom( sal_uInt16 nRecType, sal_uInt16 nRecInstance, const Atom* pLast ) c… 116 inline const Atom* findFirstChildAtom() const; 119 inline const Atom* findNextChildAtom( const Atom* pLast ) const; [all …]
|
| /AOO41X/main/rsc/inc/ |
| H A D | rscdb.hxx | 87 Atom nWinBitVarId; // Name der Winbitvariablen 88 Atom nBorderId; 89 Atom nHideId; 90 Atom nClipChildrenId; 91 Atom nSizeableId; 92 Atom nMoveableId; 93 Atom nMinimizeId; 94 Atom nMaximizeId; 95 Atom nCloseableId; 96 Atom nAppId; [all …]
|
| H A D | rscinst.hxx | 38 Atom HashId( const char * ); // Gibt zu einem String eine HashId 39 const char * GetHashString( Atom ); // Gibt zu einer Atom einen String 72 ERRTYPE SetVar( Atom nVarName, RscInstCopy & rInst ); 73 ERRTYPE SetConst( Atom nVarName, Atom nConstId ); 74 ERRTYPE SetBool( Atom nVarName, sal_Bool ); 79 ERRTYPE SetNumber( Atom nVarName, sal_Int32 ); 81 ERRTYPE SetString( Atom nVarName, const char * ); 82 ERRTYPE SetConst( Atom nConstId ); 87 ERRTYPE SetDefault( Atom nVarName ); 89 RscInst GetVar( Atom nVarName ); [all …]
|
| H A D | rsckey.hxx | 32 Atom nName; 45 Atom Put( Atom nName, sal_uInt32 nTyp, long nValue ); 46 Atom Put( Atom nName, sal_uInt32 nTyp ); 47 Atom Put( const char * pName, sal_uInt32 nTyp, long nValue ); 48 Atom Put( const char * pName, sal_uInt32 nTyp ); 49 Atom Put( Atom nName, sal_uInt32 nTyp, RscTop * pClass ); 50 Atom Put( const char * pName, sal_uInt32 nTyp, RscTop * pClass ); 53 sal_Bool Get( Atom nName, KEY_STRUCT * pEle );
|
| H A D | rscconst.hxx | 36 Atom nId; // Name der Konstante 42 RscConst( Atom nId, sal_uInt32 nTypId ); 47 ERRTYPE SetConstant( Atom nVarName, sal_Int32 lValue ); 48 Atom GetConstant( sal_uInt32 nPos ); 49 sal_Bool GetConstValue( Atom nConstId, sal_Int32 * pVal ) const; 50 sal_Bool GetValueConst( sal_Int32 nValue, Atom * pConstId ) const; 51 sal_uInt32 GetConstPos( Atom nConstId ); 65 RscEnum( Atom nId, sal_uInt32 nTypId ); 80 ERRTYPE SetConst( const RSCINST & rInst, Atom nValueId, 83 ERRTYPE GetConst( const RSCINST & rInst, Atom * ); [all …]
|
| H A D | rscclass.hxx | 39 Atom nVarName; // Variablenname 45 Atom nDataBaseName;//Name fuer Fremddatenbereich 62 RscClass( Atom nId, sal_uInt32 nTypId, RscTop * pSuperCl ); 68 ERRTYPE SetVariable( Atom nVarName, RscTop * pClass, 71 Atom nDataBaseName ); 73 RSCINST GetVariable( const RSCINST & rInst, Atom nVarName, 77 RSCINST GetCopyVar( const RSCINST & rInst, Atom nVarName ); 86 void SetDefault( const RSCINST & rData, Atom nVarId ); 88 RSCINST GetDefault( Atom nVarId ); 108 RscSysDepend( Atom nId, sal_uInt32 nTypId, RscTop * pSuper ); [all …]
|
| H A D | rsctop.hxx | 51 RscTop( Atom nId, sal_uInt32 nTypIdent, 87 virtual Atom GetConstant( sal_uInt32 ); 101 virtual ERRTYPE SetVariable( Atom nVarName, RscTop * pClass, 104 Atom nDataBaseName = InvalidAtom ); 111 virtual RSCINST GetVariable( const RSCINST & rInst, Atom nVarName, 115 virtual RSCINST GetCopyVar( const RSCINST & rInst, Atom nVarName ); 134 virtual ERRTYPE GetArrayEle( const RSCINST & rInst, Atom nId, 166 virtual ERRTYPE SetConst( const RSCINST & rInst, Atom nValueId, 170 virtual ERRTYPE SetNotConst( const RSCINST & rInst, Atom nId ); 178 virtual ERRTYPE GetConst( const RSCINST & rInst, Atom * pH ); [all …]
|
| H A D | rscflag.hxx | 39 RscFlag( Atom nId, sal_uInt32 nTypId ); 42 sal_Bool bOwnClass, Atom nConsId ); 47 sal_Bool IsDefault( const RSCINST & rInst, Atom nConstId ); 50 sal_Bool IsSet( const RSCINST & rInst, Atom nConstId ); 55 Atom nConstId ); 57 ERRTYPE SetConst( const RSCINST & rInst, Atom nValueId, 59 ERRTYPE SetNotConst( const RSCINST & rInst, Atom nConstId ); 70 Atom nConstId; //Id des zu setzenden Wertes 72 RscClient( Atom nId, sal_uInt32 nTypId, RscFlag * pClass, 73 Atom nConstantId );
|
| H A D | rschash.hxx | 30 typedef sal_uInt32 Atom; typedef 32 #define InvalidAtom Atom( ~0 ) 36 Atom m_nNextID; 37 std::hash_map< rtl::OString, Atom, rtl::OStringHash > m_aStringToID; 38 std::hash_map< Atom, rtl::OString > m_aIDToString; 44 Atom getID( const rtl::OString& rStr, bool bOnlyIfExists = false ); 45 const rtl::OString& getString( Atom nAtom );
|
| H A D | rscrange.hxx | 43 RscRange( Atom nId, sal_uInt32 nTypId ); 84 RscLongRange( Atom nId, sal_uInt32 nTypId ); 117 RscLongEnumRange( Atom nId, sal_uInt32 nTypId ); 119 ERRTYPE SetConst( const RSCINST & rInst, Atom nValueId, 131 RscIdRange( Atom nId, sal_uInt32 nTypId ); 172 RscBool( Atom nId, sal_uInt32 nTypId ); 197 RscBreakRange( Atom nId, sal_uInt32 nTypId );
|
| /AOO41X/main/vcl/unx/generic/dtrans/ |
| H A D | X11_selection.hxx | 177 Atom m_aProperty; 178 Atom m_aTarget; 194 Atom m_aAtom; 199 std::vector< Atom > m_aNativeTypes; 203 Atom m_aRequestedType; 207 Atom m_aUTF8Type; 340 Atom m_nCLIPBOARDAtom; 341 Atom m_nTARGETSAtom; 342 Atom m_nTIMESTAMPAtom; 343 Atom m_nTEXTAtom; [all …]
|
| H A D | X11_selection.cxx | 118 Atom nAtom; 535 SelectionAdaptor* SelectionManager::getAdaptor( Atom selection ) in getAdaptor() 537 ::std::hash_map< Atom, Selection* >::iterator it = in getAdaptor() 617 Atom nType, in convertData() 618 Atom nSelection, in convertData() 714 const OUString& SelectionManager::getString( Atom aAtom ) in getString() 718 ::std::hash_map< Atom, OUString >::const_iterator it; in getString() 735 Atom SelectionManager::getAtom( const OUString& rString ) in getAtom() 739 ::std::hash_map< OUString, Atom, OUStringHash >::const_iterator it; in getAtom() 742 static Atom nNoDisplayAtoms = 1; in getAtom() [all …]
|
| /AOO41X/main/sd/source/filter/ppt/ |
| H A D | pptatom.hxx | 35 class Atom class 38 ~Atom(); 41 static Atom* import( const DffRecordHeader& rRootRecordHeader, SvStream& rStCtrl ); 49 inline const Atom* findFirstChildAtom( sal_uInt16 nRecType ) const; 52 const Atom* findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const; 55 inline const Atom* findFirstChildAtom() const; 58 inline const Atom* findNextChildAtom( const Atom* pLast ) const; 76 Atom( const DffRecordHeader& rRecordHeader, SvStream& rStCtrl ); 80 Atom* mpFirstChild; 81 Atom* mpNextAtom; [all …]
|
| H A D | pptinanimations.hxx | 48 class Atom; 58 …void importAnimationContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::s… 59 …void importTimeContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::sun::s… 60 …void importAnimationNodeContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::co… 62 …void importAnimateSetContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::… 63 …void importAnimateFilterContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::co… 64 …void importAnimateContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com::sun… 65 …void importAnimateScaleContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com… 66 …void importAnimateColorContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::com… 67 …void importAnimateRotationContainer( const Atom* pAtom, const ::com::sun::star::uno::Reference< ::… [all …]
|
| H A D | pptatom.cpp | 34 Atom::Atom( const DffRecordHeader& rRecordHeader, SvStream& rStream ) in Atom() function in Atom 46 Atom* pLastAtom = NULL; in Atom() 62 Atom* pAtom = new Atom( aChildHeader, mrStream ); in Atom() 78 Atom::~Atom() in ~Atom() 80 Atom* pChild = mpFirstChild; in ~Atom() 83 Atom* pNextChild = pChild->mpNextAtom; in ~Atom() 90 Atom* Atom::import( const DffRecordHeader& rRootRecordHeader, SvStream& rStCtrl ) in import() 92 Atom* pRootAtom = new Atom( rRootRecordHeader, rStCtrl ); in import() 106 const Atom* Atom::findNextChildAtom( sal_uInt16 nRecType, const Atom* pLast ) const in findNextChildAtom() 108 Atom* pChild = pLast != NULL ? pLast->mpNextAtom : mpFirstChild; in findNextChildAtom()
|
| H A D | pptinanimations.cxx | 255 const Atom* pAtom = Atom::import( rProgTagContentHd, mrStCtrl ); in import() 279 Reference< XAnimationNode > AnimationImporter::createNode( const Atom* pAtom, const AnimationNode& … in createNode() 372 void AnimationImporter::importAnimationContainer( const Atom* pAtom, const Reference< XAnimationNod… in importAnimationContainer() 377 const Atom* pAnimationNodeAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimNode ); in importAnimationContainer() 382 … const Atom* pAnimationPropertySetAtom = pAtom->findFirstChildAtom( DFF_msofbtAnimPropertySet ); in importAnimationContainer() 1415 void AnimationImporter::importTimeContainer( const Atom* pAtom, const Reference< XAnimationNode >& … in importTimeContainer() 1427 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importTimeContainer() 1521 void AnimationImporter::importAnimationNodeContainer( const Atom* pAtom, const Reference< XAnimatio… in importAnimationNodeContainer() 1530 const Atom* pChildAtom = pAtom->findFirstChildAtom(); in importAnimationNodeContainer() 1591 void AnimationImporter::importAnimateFilterContainer( const Atom* pAtom, const Reference< XAnimatio… in importAnimateFilterContainer() [all …]
|
| /AOO41X/main/vcl/unx/generic/window/ |
| H A D | FWS.cxx | 37 static Atom fwsIconAtom; 39 static Atom FWS_CLIENT; 40 static Atom FWS_COMM_WINDOW; 41 static Atom FWS_PROTOCOLS; 42 static Atom FWS_STACK_UNDER; 43 static Atom FWS_PARK_ICONS; 44 static Atom FWS_PASS_ALL_INPUT; 45 static Atom FWS_PASSES_INPUT; 46 static Atom FWS_HANDLES_FOCUS; 48 static Atom FWS_REGISTER_WINDOW; [all …]
|
| /AOO41X/main/rsc/source/parser/ |
| H A D | rscicpx.cxx | 48 Atom nVal ) in InsWinBit() 57 Atom nId = aNmTb.Put( rName.GetBuffer(), VARNAME ); in InsWinBit() 72 Atom nId; in InitClassMgr() 108 Atom nId; in InitClassString() 126 Atom nId; in InitClassBitmap() 146 Atom nId; in InitClassColor() 174 Atom nId; in InitClassImage() 201 Atom nId; in InitClassImageList() 239 Atom nId; in InitClassWindow() 252 Atom nVarId, nDisableId, nOutputSizeId; in InitClassWindow() [all …]
|
| H A D | rsckey.cxx | 124 Atom RscNameTable::Put( Atom nName, sal_uInt32 nTyp, long nValue ){ 142 Atom RscNameTable::Put( const char * pName, sal_uInt32 nTyp, long nValue ) 147 Atom RscNameTable::Put( Atom nName, sal_uInt32 nTyp ) 152 Atom RscNameTable::Put( const char * pName, sal_uInt32 nTyp ) 154 Atom nId; 160 Atom RscNameTable::Put( Atom nName, sal_uInt32 nTyp, RscTop * pClass ) 165 Atom RscNameTable::Put( const char * pName, sal_uInt32 nTyp, RscTop * pClass ) 179 sal_Bool RscNameTable::Get( Atom nName, KEY_STRUCT * pEle ){
|
| /AOO41X/main/rsc/source/res/ |
| H A D | rscall.cxx | 36 Atom nRsc_XYMAPMODEId = InvalidAtom; 37 Atom nRsc_WHMAPMODEId = InvalidAtom; 38 Atom nRsc_X = InvalidAtom; 39 Atom nRsc_Y = InvalidAtom; 40 Atom nRsc_WIDTH = InvalidAtom; 41 Atom nRsc_HEIGHT = InvalidAtom; 42 Atom nRsc_DELTALANG = InvalidAtom; 43 Atom nRsc_DELTASYSTEM = InvalidAtom; 44 Atom nRsc_EXTRADATA = InvalidAtom;
|
| H A D | rsctop.cxx | 46 RscTop::RscTop( Atom nId, sal_uInt32 nTypIdent, RscTop * pSuperCl ) in RscTop() 116 Atom RscTop :: GetConstant( sal_uInt32 ){ in GetConstant() 196 ERRTYPE RscTop::SetVariable( Atom nVarName, RscTop * pClass, in SetVariable() 198 Atom nDataBaseName ) in SetVariable() 235 Atom nVarName, in GetVariable() 257 RSCINST RscTop::GetCopyVar( const RSCINST & rInst, Atom nVarName ) in GetCopyVar() 318 Atom nId, in GetArrayEle() 502 ERRTYPE RscTop::SetConst( const RSCINST & rInst, Atom nId, sal_Int32 nVal ) in SetConst() 519 ERRTYPE RscTop::SetNotConst( const RSCINST & rInst, Atom nId ){ in SetNotConst() 587 ERRTYPE RscTop::GetConst( const RSCINST & rInst, Atom * pH ){ in GetConst() [all …]
|
| H A D | rscconst.cxx | 53 RscConst::RscConst( Atom nId, sal_uInt32 nTypeId ) in RscConst() 98 ERRTYPE RscConst::SetConstant( Atom nVarName, sal_Int32 lValue ){ in SetConstant() 122 Atom RscConst::GetConstant( sal_uInt32 nPos ){ in GetConstant() 137 sal_Bool RscConst::GetConstValue( Atom nConst, sal_Int32 * pValue ) const in GetConstValue() 159 sal_Bool RscConst::GetValueConst( sal_Int32 lValue, Atom * pConst ) const in GetValueConst() 183 sal_uInt32 RscConst::GetConstPos( Atom nConst ) in GetConstPos() 244 RscEnum::RscEnum( Atom nId, sal_uInt32 nTypeId ) in RscEnum() 259 ERRTYPE RscEnum::SetConst( const RSCINST & rInst, Atom nConst, sal_Int32 /*nVal*/ ) in SetConst() 303 ERRTYPE RscEnum::GetConst( const RSCINST & rInst, Atom * pH ){ in GetConst()
|
| H A D | rscflag.cxx | 46 RscFlag::RscFlag( Atom nId, sal_uInt32 nTypeId ) in RscFlag() 75 ERRTYPE RscFlag::SetNotConst( const RSCINST & rInst, Atom nConst ) in SetNotConst() 99 ERRTYPE RscFlag::SetConst( const RSCINST & rInst, Atom nConst, sal_Int32 /*nVal*/ ) in SetConst() 178 sal_Bool bOwnClass, Atom nConstId ) in CreateClient() 240 sal_Bool RscFlag::IsDefault( const RSCINST & rInst, Atom nConstId ) in IsDefault() 265 Atom nConstId ) in IsValueDefault() 320 sal_Bool RscFlag::IsSet( const RSCINST & rInst, Atom nConstId ) in IsSet() 409 RscClient::RscClient( Atom nId, sal_uInt32 nTypeId, RscFlag * pClass, in RscClient() 410 Atom nConstantId ) in RscClient()
|
| /AOO41X/main/vcl/unx/generic/desktopdetect/ |
| H A D | desktopdetector.cxx | 66 Atom nAtom1 = XInternAtom( pDisplay, "GNOME_SM_PROXY", True ); in is_gnome_desktop() 67 Atom nAtom2 = XInternAtom( pDisplay, "NAUTILUS_DESKTOP_WINDOW_ID", True ); in is_gnome_desktop() 71 … Atom* pProperties = XListProperties( pDisplay, DefaultRootWindow( pDisplay ), &nProperties ); in is_gnome_desktop() 87 Atom nUTFAtom = XInternAtom( pDisplay, "UTF8_STRING", True ); in is_gnome_desktop() 88 Atom nNetWMNameAtom = XInternAtom( pDisplay, "_NET_WM_NAME", True ); in is_gnome_desktop() 100 Atom nType = None; in is_gnome_desktop() 156 Atom nFullSession = XInternAtom( pDisplay, "KDE_FULL_SESSION", True ); in KDEVersion() 157 Atom nKDEVersion = XInternAtom( pDisplay, "KDE_SESSION_VERSION", True ); in KDEVersion() 164 Atom aRealType = None; in KDEVersion() 237 Atom nDtAtom = XInternAtom( pDisplay, "_DT_WM_READY", True ); in is_cde_desktop()
|
| /AOO41X/main/vcl/unx/generic/app/ |
| H A D | wmadaptor.cxx | 249 Atom aRealType = None; in WMAdaptor() 312 Atom aWMakerRunning = XInternAtom( m_pDisplay, "_WINDOWMAKER_WM_PROTOCOLS", True ); in WMAdaptor() 348 Atom aRwmRunning = XInternAtom( m_pDisplay, "RWM_RUNNING", True ); in WMAdaptor() 386 Atom aTTAPlatform = XInternAtom( m_pDisplay, "TTA_CLIENT_PLATFORM", True ); in WMAdaptor() 435 Atom aRealType = None; in NetWMAdaptor() 482 Atom* pAtoms = (Atom*)pProperty; in NetWMAdaptor() 629 Atom aRealType = None; in GnomeWMAdaptor() 738 Atom* pAtoms = (Atom*)pProperty; in GnomeWMAdaptor() 834 Atom aRealType = None; in getNetWmName() 926 Atom nVersionAtom = XInternAtom( m_pDisplay, "_METACITY_VERSION", True ); in getNetWmName() [all …]
|