Lines Matching refs:xNameAccess
112 getStringValue(const uno::Reference< container::XNameAccess >& xNameAccess, const rtl::OUString& aN… in getStringValue() argument
116 OSL_ASSERT(xNameAccess->hasByName(aName)); in getStringValue()
117 uno::Any aValue = xNameAccess->getByName(aName); in getStringValue()
125 getInt32Value(const uno::Reference< container::XNameAccess >& xNameAccess, in getInt32Value() argument
128 OSL_ASSERT(xNameAccess->hasByName(aName)); in getInt32Value()
129 uno::Any aValue = xNameAccess->getByName(aName); in getInt32Value()
215 uno::Reference< container::XNameAccess > xNameAccess( in getProxyForURL() local
220 OSL_ASSERT(xNameAccess->hasByName(UNISTRING("ooInetProxyType"))); in getProxyForURL()
221 uno::Any aValue = xNameAccess->getByName(UNISTRING("ooInetProxyType")); in getProxyForURL()
228 rHost = getStringValue(xNameAccess, UNISTRING("ooInetHTTPProxyName")); in getProxyForURL()
229 rPort = getInt32Value(xNameAccess, UNISTRING("ooInetHTTPProxyPort")); in getProxyForURL()
233 rHost = getStringValue(xNameAccess, UNISTRING("ooInetHTTPSProxyName")); in getProxyForURL()
234 rPort = getInt32Value(xNameAccess, UNISTRING("ooInetHTTPSProxyPort")); in getProxyForURL()
238 rHost = getStringValue(xNameAccess, UNISTRING("ooInetFTPProxyName")); in getProxyForURL()
239 rPort = getInt32Value(xNameAccess, UNISTRING("ooInetFTPProxyPort")); in getProxyForURL()