Lines Matching refs:OUString

67 Sequence< OUString > defreg_getSupportedServiceNames()  in defreg_getSupportedServiceNames()
69 static Sequence < OUString > *pNames = 0; in defreg_getSupportedServiceNames()
75 static Sequence< OUString > seqNames(1); in defreg_getSupportedServiceNames()
76 seqNames.getArray()[0] = OUString(RTL_CONSTASCII_USTRINGPARAM(SERVICENAME)); in defreg_getSupportedServiceNames()
83 OUString defreg_getImplementationName() in defreg_getImplementationName()
85 static OUString *pImplName = 0; in defreg_getImplementationName()
91 static OUString implName( RTL_CONSTASCII_USTRINGPARAM( IMPLNAME ) ); in defreg_getImplementationName()
114 virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException);
115 … virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(RuntimeException);
116 virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(RuntimeException);
123 virtual OUString SAL_CALL getURL() throw(RuntimeException);
124 …virtual void SAL_CALL open( const OUString& rURL, sal_Bool bReadOnly, sal_Bool bCreate ) throw(Inv…
130 …virtual void SAL_CALL mergeKey( const OUString& aKeyName, const OUString& aUrl ) throw(InvalidRegi…
156 NestedKeyImpl( const OUString& aKeyName,
162 virtual OUString SAL_CALL getKeyName() throw(RuntimeException);
165 …virtual RegistryKeyType SAL_CALL getKeyType( const OUString& rKeyName ) throw(InvalidRegistryExcep…
171 …virtual OUString SAL_CALL getAsciiValue( ) throw(InvalidRegistryException, InvalidValueException,…
172 …virtual void SAL_CALL setAsciiValue( const OUString& value ) throw(InvalidRegistryException, Runti…
173 …virtual Sequence< OUString > SAL_CALL getAsciiListValue( ) throw(InvalidRegistryException, Invali…
174 …virtual void SAL_CALL setAsciiListValue( const ::com::sun::star::uno::Sequence< OUString >& seqVal…
175 …virtual OUString SAL_CALL getStringValue( ) throw(InvalidRegistryException, InvalidValueException…
176 …virtual void SAL_CALL setStringValue( const OUString& value ) throw(InvalidRegistryException, Runt…
177 …virtual Sequence< OUString > SAL_CALL getStringListValue( ) throw(InvalidRegistryException, Inval…
178 …virtual void SAL_CALL setStringListValue( const ::com::sun::star::uno::Sequence< OUString >& seqVa…
181 …virtual Reference< XRegistryKey > SAL_CALL openKey( const OUString& aKeyName ) throw(InvalidRegist…
182 …virtual Reference< XRegistryKey > SAL_CALL createKey( const OUString& aKeyName ) throw(InvalidRegi…
184 …virtual void SAL_CALL deleteKey( const OUString& rKeyName ) throw(InvalidRegistryException, Runtim…
186 …virtual Sequence< OUString > SAL_CALL getKeyNames( ) throw(InvalidRegistryException, RuntimeExcep…
187 …virtual sal_Bool SAL_CALL createLink( const OUString& aLinkName, const OUString& aLinkTarget ) thr…
188 …virtual void SAL_CALL deleteLink( const OUString& rLinkName ) throw(InvalidRegistryException, Runt…
189 …virtual OUString SAL_CALL getLinkTarget( const OUString& rLinkName ) throw(InvalidRegistryExceptio…
190 …virtual OUString SAL_CALL getResolvedName( const OUString& aKeyName ) throw(InvalidRegistryExcepti…
194 OUString computeName(const OUString& name);
196 OUString m_name;
228 NestedKeyImpl::NestedKeyImpl( const OUString& rKeyName, in NestedKeyImpl()
284 OUString NestedKeyImpl::computeName(const OUString& name) in computeName()
286 OUString resLocalName, resDefaultName; in computeName()
329 OUString SAL_CALL NestedKeyImpl::getKeyName() throw(RuntimeException) in getKeyName()
357 RegistryKeyType SAL_CALL NestedKeyImpl::getKeyType( const OUString& rKeyName ) in getKeyType()
481 OUString SAL_CALL NestedKeyImpl::getAsciiValue( ) in getAsciiValue()
501 void SAL_CALL NestedKeyImpl::setAsciiValue( const OUString& value ) in setAsciiValue()
524 Sequence< OUString > SAL_CALL NestedKeyImpl::getAsciiListValue( ) in getAsciiListValue()
544 void SAL_CALL NestedKeyImpl::setAsciiListValue( const Sequence< OUString >& seqValue ) in setAsciiListValue()
567 OUString SAL_CALL NestedKeyImpl::getStringValue( ) in getStringValue()
587 void SAL_CALL NestedKeyImpl::setStringValue( const OUString& value ) in setStringValue()
610 Sequence< OUString > SAL_CALL NestedKeyImpl::getStringListValue( ) in getStringListValue()
630 void SAL_CALL NestedKeyImpl::setStringListValue( const Sequence< OUString >& seqValue ) in setStringListValue()
696 Reference< XRegistryKey > SAL_CALL NestedKeyImpl::openKey( const OUString& aKeyName ) in openKey()
705 OUString resolvedName = computeName(aKeyName); in openKey()
731 Reference< XRegistryKey > SAL_CALL NestedKeyImpl::createKey( const OUString& aKeyName ) in createKey()
741 OUString resolvedName = computeName(aKeyName); in createKey()
803 void SAL_CALL NestedKeyImpl::deleteKey( const OUString& rKeyName ) in deleteKey()
810 OUString resolvedName = computeName(rKeyName); in deleteKey()
834 Sequence<OUString> localSeq, defaultSeq; in openKeys()
864 OUString name; in openKeys()
905 Sequence< OUString > SAL_CALL NestedKeyImpl::getKeyNames( ) in getKeyNames()
914 Sequence<OUString> localSeq, defaultSeq; in getKeyNames()
942 Sequence<OUString> retSeq(local + def - len); in getKeyNames()
972 sal_Bool SAL_CALL NestedKeyImpl::createLink( const OUString& aLinkName, const OUString& aLinkTarget… in createLink()
983 OUString linkName; in createLink()
984 OUString resolvedName; in createLink()
1004 resolvedName = m_name + OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + aLinkName; in createLink()
1028 void SAL_CALL NestedKeyImpl::deleteLink( const OUString& rLinkName ) in deleteLink()
1037 OUString linkName; in deleteLink()
1038 OUString resolvedName; in deleteLink()
1058 resolvedName = m_name + OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + rLinkName; in deleteLink()
1072 OUString SAL_CALL NestedKeyImpl::getLinkTarget( const OUString& rLinkName ) in getLinkTarget()
1081 OUString linkName; in getLinkTarget()
1082 OUString resolvedName; in getLinkTarget()
1102 resolvedName = m_name + OUString( RTL_CONSTASCII_USTRINGPARAM("/") ) + rLinkName; in getLinkTarget()
1105 OUString linkTarget; in getLinkTarget()
1125 OUString SAL_CALL NestedKeyImpl::getResolvedName( const OUString& aKeyName ) in getResolvedName()
1134 OUString resolvedName = computeName(aKeyName); in getResolvedName()
1200 throw NoSuchElementException( OUString( RTL_CONSTASCII_USTRINGPARAM( in nextElement()
1227 OUString SAL_CALL NestedRegistryImpl::getImplementationName( ) in getImplementationName()
1234 sal_Bool SAL_CALL NestedRegistryImpl::supportsService( const OUString& ServiceName ) in supportsService()
1238 Sequence< OUString > aSNL = getSupportedServiceNames(); in supportsService()
1239 const OUString * pArray = aSNL.getArray(); in supportsService()
1247 Sequence<OUString> SAL_CALL NestedRegistryImpl::getSupportedServiceNames( ) in getSupportedServiceNames()
1270 OUString SAL_CALL NestedRegistryImpl::getURL() throw(RuntimeException) in getURL()
1282 return OUString(); in getURL()
1286 void SAL_CALL NestedRegistryImpl::open( const OUString&, sal_Bool, sal_Bool ) in open() argument
1290 OUString::createFromAscii("the 'open' method is not specified for a nested registry"), in open()
1336 OUString::createFromAscii("the 'destroy' method is not specified for a nested registry"), in destroy()
1388 void SAL_CALL NestedRegistryImpl::mergeKey( const OUString& aKeyName, const OUString& aUrl ) in mergeKey()