Home
last modified time | relevance | path

Searched refs:rUrl (Results 1 – 25 of 158) sorted by relevance

1234567

/dports/editors/libreoffice/libreoffice-7.2.6.2/include/svl/
H A Dinethist.hxx44 void PutUrl_Impl (const INetURLObject &rUrl);
45 bool QueryUrl_Impl (const INetURLObject &rUrl);
69 bool QueryUrl (const INetURLObject &rUrl) in QueryUrl() argument
71 if (QueryProtocol (rUrl.GetProtocol())) in QueryUrl()
72 return QueryUrl_Impl (rUrl); in QueryUrl()
77 bool QueryUrl (const OUString &rUrl) in QueryUrl() argument
80 INetURLObject::CompareProtocolScheme (rUrl); in QueryUrl()
82 return QueryUrl_Impl (INetURLObject (rUrl)); in QueryUrl()
89 void PutUrl (const INetURLObject &rUrl) in PutUrl() argument
91 if (QueryProtocol (rUrl.GetProtocol())) in PutUrl()
[all …]
H A Durlbmk.hxx39 INetBookmark( const OUString &rUrl, const OUString &rDescr ) in INetBookmark() argument
40 : aUrl( rUrl ), aDescr( rDescr ) in INetBookmark()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/svl/
H A Dinethist.hxx50 void PutUrl_Impl (const INetURLObject &rUrl);
51 bool QueryUrl_Impl (const INetURLObject &rUrl);
75 bool QueryUrl (const INetURLObject &rUrl) in QueryUrl() argument
77 if (QueryProtocol (rUrl.GetProtocol())) in QueryUrl()
78 return QueryUrl_Impl (rUrl); in QueryUrl()
83 bool QueryUrl (const OUString &rUrl) in QueryUrl() argument
86 INetURLObject::CompareProtocolScheme (rUrl); in QueryUrl()
88 return QueryUrl_Impl (INetURLObject (rUrl)); in QueryUrl()
95 void PutUrl (const INetURLObject &rUrl) in PutUrl() argument
97 if (QueryProtocol (rUrl.GetProtocol())) in PutUrl()
[all …]
H A Durlbmk.hxx39 INetBookmark( const OUString &rUrl, const OUString &rDescr ) in INetBookmark() argument
40 : aUrl( rUrl ), aDescr( rDescr ) in INetBookmark()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svl/source/misc/
H A Dinethist.cxx220 sal_uInt32 h = crc32 (rUrl); in putUrl()
268 sal_uInt32 h = crc32 (rUrl); in queryUrl()
293 switch (rUrl.GetProtocol()) in NormalizeUrl_Impl()
304 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
309 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
311 if (!rUrl.HasURLPath()) in NormalizeUrl_Impl()
312 rUrl.SetURLPath("/"); in NormalizeUrl_Impl()
316 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
318 if (!rUrl.HasURLPath()) in NormalizeUrl_Impl()
319 rUrl.SetURLPath("/"); in NormalizeUrl_Impl()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svl/source/misc/
H A Dinethist.cxx222 sal_uInt32 h = crc32 (rUrl); in putUrl()
270 sal_uInt32 h = crc32 (rUrl); in queryUrl()
306 switch (rUrl.GetProtocol()) in NormalizeUrl_Impl()
317 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
322 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
324 if (!rUrl.HasURLPath()) in NormalizeUrl_Impl()
325 rUrl.SetURLPath("/"); in NormalizeUrl_Impl()
329 if (!rUrl.HasPort()) in NormalizeUrl_Impl()
331 if (!rUrl.HasURLPath()) in NormalizeUrl_Impl()
332 rUrl.SetURLPath("/"); in NormalizeUrl_Impl()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/cppuhelper/source/
H A Dunourl.cxx185 static inline Impl * create(OUString const & rUrl);
199 if (!rUrl.startsWithIgnoreAsciiCase("uno:")) in create()
202 sal_Int32 j = rUrl.indexOf(';', i); in create()
205 OUString aConnection(rUrl.copy(i, j - i)); in create()
207 j = rUrl.indexOf(0x3B, i); // ';' in create()
210 OUString aProtocol(rUrl.copy(i, j - i)); in create()
212 if (i == rUrl.getLength()) in create()
214 for (j = i; j < rUrl.getLength(); ++j) in create()
216 sal_Unicode c = rUrl[j]; in create()
226 return new Impl(aConnection, aProtocol, rUrl.copy(i)); in create()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/cppuhelper/source/
H A Dunourl.cxx185 static inline Impl * create(OUString const & rUrl);
199 if (!rUrl.startsWithIgnoreAsciiCase("uno:")) in create()
202 sal_Int32 j = rUrl.indexOf(';', i); in create()
205 OUString aConnection(rUrl.copy(i, j - i)); in create()
207 j = rUrl.indexOf(0x3B, i); // ';' in create()
210 OUString aProtocol(rUrl.copy(i, j - i)); in create()
212 if (i == rUrl.getLength()) in create()
214 for (j = i; j < rUrl.getLength(); ++j) in create()
216 sal_Unicode c = rUrl[j]; in create()
226 return new Impl(aConnection, aProtocol, rUrl.copy(i)); in create()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/l10ntools/source/
H A Dlocalize.cxx50 const OUString& rUrl, const OUStringLiteral* pList, size_t nLength) in matchList() argument
53 if (rUrl.endsWith(pList[i])) { in matchList()
60 bool passesNegativeList(const OUString& rUrl) { in passesNegativeList() argument
75 return !matchList(rUrl, list, SAL_N_ELEMENTS(list)); in passesNegativeList()
78 bool passesPositiveList(const OUString& rUrl) { in passesPositiveList() argument
82 return matchList(rUrl, list, SAL_N_ELEMENTS(list)); in passesPositiveList()
192 if (rUrl.endsWith(commands[i].extension) && in handleFile()
195 if (commands[i].positive ? passesPositiveList(rUrl) : passesNegativeList(rUrl)) in handleFile()
331 const OUString& rUrl, int nLevel, in handleDirectory() argument
334 osl::Directory dir(rUrl); in handleDirectory()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/l10ntools/source/
H A Dlocalize.cxx52 const OUString& rUrl, const std::u16string_view* pList, size_t nLength) in matchList() argument
55 if (rUrl.endsWith(pList[i])) { in matchList()
62 bool passesNegativeList(const OUString& rUrl) { in passesNegativeList() argument
77 return !matchList(rUrl, list, SAL_N_ELEMENTS(list)); in passesNegativeList()
80 bool passesPositiveList(const OUString& rUrl) { in passesPositiveList() argument
84 return matchList(rUrl, list, SAL_N_ELEMENTS(list)); in passesPositiveList()
198 if (rUrl.endsWith(commands[i].extension) && in handleFile()
201 if (commands[i].positive ? passesPositiveList(rUrl) : passesNegativeList(rUrl)) in handleFile()
368 const OUString& rUrl, int nLevel, in handleDirectory() argument
371 osl::Directory dir(rUrl); in handleDirectory()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/oox/source/core/
H A Dfilterbase.cxx93 DocumentOpenedGuard::DocumentOpenedGuard( const OUString& rUrl ) in DocumentOpenedGuard() argument
97 mbValid = rUrl.isEmpty() || (rUrlPool.maUrls.count( rUrl ) == 0); in DocumentOpenedGuard()
98 if( mbValid && !rUrl.isEmpty() ) in DocumentOpenedGuard()
100 rUrlPool.maUrls.insert( rUrl ); in DocumentOpenedGuard()
101 maUrl = rUrl; in DocumentOpenedGuard()
266 bool lclIsDosDrive( const OUString& rUrl, sal_Int32 nPos = 0 ) in lclIsDosDrive() argument
269 (rUrl.getLength() >= nPos + 3) && in lclIsDosDrive()
270 …((('A' <= rUrl[ nPos ]) && (rUrl[ nPos ] <= 'Z')) || (('a' <= rUrl[ nPos ]) && (rUrl[ nPos ] <= 'z… in lclIsDosDrive()
271 (rUrl[ nPos + 1 ] == ':') && in lclIsDosDrive()
272 (rUrl[ nPos + 2 ] == '/'); in lclIsDosDrive()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/oox/source/core/
H A Dfilterbase.cxx93 DocumentOpenedGuard::DocumentOpenedGuard( const OUString& rUrl ) in DocumentOpenedGuard() argument
97 mbValid = rUrl.isEmpty() || (rUrlPool.maUrls.count( rUrl ) == 0); in DocumentOpenedGuard()
98 if( mbValid && !rUrl.isEmpty() ) in DocumentOpenedGuard()
100 rUrlPool.maUrls.insert( rUrl ); in DocumentOpenedGuard()
101 maUrl = rUrl; in DocumentOpenedGuard()
254 bool lclIsDosDrive( const OUString& rUrl, sal_Int32 nPos = 0 ) in lclIsDosDrive() argument
257 (rUrl.getLength() >= nPos + 3) && in lclIsDosDrive()
258 …((('A' <= rUrl[ nPos ]) && (rUrl[ nPos ] <= 'Z')) || (('a' <= rUrl[ nPos ]) && (rUrl[ nPos ] <= 'z… in lclIsDosDrive()
259 (rUrl[ nPos + 1 ] == ':') && in lclIsDosDrive()
260 (rUrl[ nPos + 2 ] == '/'); in lclIsDosDrive()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/filter/excel/
H A Dxihelper.cxx595 case '#': rUrl += "%23"; break; in lclAppendUrlChar()
596 case '%': rUrl += "%25"; break; in lclAppendUrlChar()
597 default: rUrl += OUStringChar( cChar ); in lclAppendUrlChar()
668 rUrl += "\\\\"; in DecodeUrl()
672 rUrl += ":\\"; in DecodeUrl()
676 rUrl += "<NULL-DRIVE!>"; in DecodeUrl()
683 rUrl += ":"; in DecodeUrl()
688 rUrl += "\\"; in DecodeUrl()
696 rUrl += "..\\"; in DecodeUrl()
739 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/filter/excel/
H A Dxihelper.cxx595 case '#': rUrl += "%23"; break; in lclAppendUrlChar()
596 case '%': rUrl += "%25"; break; in lclAppendUrlChar()
597 default: rUrl += OUStringChar( cChar ); in lclAppendUrlChar()
668 rUrl += "\\\\"; in DecodeUrl()
672 rUrl += ":\\"; in DecodeUrl()
676 rUrl += "<NULL-DRIVE!>"; in DecodeUrl()
683 rUrl += ":"; in DecodeUrl()
688 rUrl += "\\"; in DecodeUrl()
696 rUrl += "..\\"; in DecodeUrl()
739 lclAppendUrlChar( rUrl, *pChar ); in DecodeUrl()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/svtools/source/dialogs/
H A DServerDetailsControls.cxx131 bool HostDetailsContainer::setUrl( const INetURLObject& rUrl ) in setUrl() argument
137 m_sHost = rUrl.GetHost( ); in setUrl()
138 m_pDialog->m_xEDHost->set_text( rUrl.GetHost( ) ); in setUrl()
139 m_pDialog->m_xEDPort->set_value( rUrl.GetPort( ) ); in setUrl()
140 m_pDialog->m_xEDRoot->set_text( rUrl.GetURLPath() ); in setUrl()
233 bool SmbDetailsContainer::setUrl( const INetURLObject& rUrl ) in setUrl() argument
235 bool bSuccess = rUrl.GetProtocol() == INetProtocol::Smb; in setUrl()
239 OUString sShare = rUrl.getName( 0 ); in setUrl()
240 OUString sFullPath = rUrl.GetURLPath( ); in setUrl()
250 m_sHost = rUrl.GetHost( ); in setUrl()
[all …]
H A DServerDetailsControls.hxx52 virtual bool setUrl( const INetURLObject& rUrl );
77 virtual bool setUrl( const INetURLObject& rUrl ) override;
111 virtual bool setUrl( const INetURLObject& rUrl ) override;
131 virtual bool setUrl( const INetURLObject& rUrl ) override;
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svtools/source/dialogs/
H A DServerDetailsControls.cxx133 bool HostDetailsContainer::setUrl( const INetURLObject& rUrl ) in setUrl() argument
139 m_sHost = rUrl.GetHost( ); in setUrl()
140 m_pDialog->m_xEDHost->set_text( rUrl.GetHost( ) ); in setUrl()
141 m_pDialog->m_xEDPort->set_value( rUrl.GetPort( ) ); in setUrl()
142 m_pDialog->m_xEDRoot->set_text( rUrl.GetURLPath() ); in setUrl()
233 bool SmbDetailsContainer::setUrl( const INetURLObject& rUrl ) in setUrl() argument
235 bool bSuccess = rUrl.GetProtocol() == INetProtocol::Smb; in setUrl()
239 OUString sShare = rUrl.getName( 0 ); in setUrl()
240 OUString sFullPath = rUrl.GetURLPath( ); in setUrl()
250 m_sHost = rUrl.GetHost( ); in setUrl()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/onlineversion/
H A Donlineversionchecker.cpp133 QUrl rUrl; in checkForNewVersion() local
137 rUrl = QUrl(QLatin1String("https://files.kde.org/digikam/FILES")); in checkForNewVersion()
141rUrl = QUrl(QLatin1String("https://invent.kde.org/websites/digikam-org/-/raw/master/data/release.y… in checkForNewVersion()
146 download(rUrl); in checkForNewVersion()
151 QUrl rUrl; in downloadReleaseNotes() local
155 rUrl = QUrl(QLatin1String("https://invent.kde.org/graphics/digikam/-/raw/master/NEWS")); in downloadReleaseNotes()
159rUrl = QUrl(QString::fromLatin1("https://invent.kde.org/graphics/digikam/-/raw/master/project/NEWS… in downloadReleaseNotes()
164 download(rUrl); in downloadReleaseNotes()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/framework/source/services/
H A Dmediatypedetectionhelper.cxx60 OUString& rUrl = rSeq[i]; in mapStrings() local
61 INetContentType eType = INetContentTypes::GetContentTypeFromURL( rUrl ); in mapStrings()
66 rUrl = aType; in mapStrings()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/svtools/
H A DServerDetailsControls.hxx52 virtual bool setUrl( const INetURLObject& rUrl );
77 virtual bool setUrl( const INetURLObject& rUrl ) override;
111 virtual bool setUrl( const INetURLObject& rUrl ) override;
131 virtual bool setUrl( const INetURLObject& rUrl ) override;
/dports/editors/libreoffice/libreoffice-7.2.6.2/framework/source/services/
H A Dmediatypedetectionhelper.cxx68 OUString& rUrl = rSeq[i]; in mapStrings() local
69 INetContentType eType = INetContentTypes::GetContentTypeFromURL( rUrl ); in mapStrings()
74 rUrl = aType; in mapStrings()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/writerperfect/qa/unit/
H A DImportTest.cxx52 WpftLoader createLoader(const OUString& rUrl, const OUString& rFactoryUrl) const;
91 WpftLoader ImportTest::createLoader(const OUString& rUrl, const OUString& rFactoryUrl) const in createLoader() argument
94 aDesc[utl::MediaDescriptor::PROP_URL()] <<= rUrl; in createLoader()
105 return WpftLoader(rUrl, xFilter, rFactoryUrl, m_xDesktop, m_xTypeMap, m_xContext); in createLoader()
/dports/editors/libreoffice/libreoffice-7.2.6.2/writerperfect/qa/unit/
H A DImportTest.cxx57 WpftLoader createLoader(const OUString& rUrl, const OUString& rFactoryUrl) const;
96 WpftLoader ImportTest::createLoader(const OUString& rUrl, const OUString& rFactoryUrl) const in createLoader() argument
99 aDesc[utl::MediaDescriptor::PROP_URL()] <<= rUrl; in createLoader()
110 return WpftLoader(rUrl, xFilter, rFactoryUrl, m_xDesktop, m_xTypeMap, m_xContext); in createLoader()
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/sfx2/
H A DDocumentSigner.hxx35 DocumentSigner(OUString const& rUrl) in DocumentSigner() argument
36 : m_aUrl(rUrl) in DocumentSigner()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/sfx2/
H A DDocumentSigner.hxx35 DocumentSigner(OUString const& rUrl) in DocumentSigner() argument
36 : m_aUrl(rUrl) in DocumentSigner()

1234567