Lines Matching refs:Config
622 class Config;
657 inline ::rtl::OUString getName( const Config& rCfg, Type nKey ) const in getName()
661 inline ::rtl::OUString getName( const Config& rCfg, double fValue ) const in getName()
687 virtual ::rtl::OUString implGetName( const Config& rCfg, sal_Int64 nKey ) const = 0;
689 virtual ::rtl::OUString implGetNameDbl( const Config& rCfg, double fValue ) const = 0;
730 virtual ::rtl::OUString implGetName( const Config& rCfg, sal_Int64 nKey ) const;
732 virtual ::rtl::OUString implGetNameDbl( const Config& rCfg, double fValue ) const;
786 virtual ::rtl::OUString implGetName( const Config& rCfg, sal_Int64 nKey ) const;
788 virtual ::rtl::OUString implGetNameDbl( const Config& rCfg, double fValue ) const;
807 virtual ::rtl::OUString implGetName( const Config& rCfg, sal_Int64 nKey ) const;
843 virtual ::rtl::OUString implGetName( const Config& rCfg, sal_Int64 nKey ) const;
845 virtual ::rtl::OUString implGetNameDbl( const Config& rCfg, double fValue ) const;
865 NameListRef getNameList( const Config& rCfg ) const;
971 class Config : public Base class
974 explicit Config( const Config& rParent );
975 explicit Config(
978 explicit Config(
985 virtual ~Config();
1018 inline explicit Config() {} in Config() function in oox::dump::Config
1019 void construct( const Config& rParent );
1039 typedef ::boost::shared_ptr< Config > ConfigRef;
1044 Type Config::getIntOption( const String& rKey, Type nDefault ) const in getIntOption()
1053 ::boost::shared_ptr< ListType > Config::createNameList( const String& rListName ) in createNameList()
1059 ::rtl::OUString Config::getName( const NameListWrapper& rListWrp, Type nKey ) const in getName()
1066 bool Config::hasName( const NameListWrapper& rListWrp, Type nKey ) const in hasName()
1147 inline void writeName( const Config& rCfg, Type nData, const NameListWrapper& rListWrp ) in writeName()
1296 inline Config& cfg() const { return *mxConfig; } in cfg()