Home
last modified time | relevance | path

Searched refs:iconURL (Results 1 – 25 of 313) sorted by relevance

12345678910>>...13

/dports/www/miniflux/v2-2.0.35/reader/icon/
H A Dfinder.go45 iconURL, err := parseDocument(rootURL, response.Body)
50 if strings.HasPrefix(iconURL, "data:") {
51 return parseImageDataURL(iconURL)
54 logger.Debug("[FindIcon] Fetching icon => %s", iconURL)
76 var iconURL string
80 iconURL = strings.TrimSpace(href)
84 if iconURL != "" {
89 if iconURL == "" {
90 iconURL = url.RootURL(websiteURL) + "favicon.ico"
92 iconURL, _ = url.AbsoluteURL(websiteURL, iconURL)
[all …]
H A Dfinder_test.go13iconURL := "data:image/webp;base64,UklGRhQJAABXRUJQVlA4TAcJAAAvv8AvEIU1atuOza3OCSaanSeobUa17T61bdu…
14 icon, err := parseImageDataURL(iconURL)
61 iconURL, err := parseDocument("http://www.example.org/", strings.NewReader(html))
66 if iconURL != "http://www.example.org/static/img/favicon.ico" {
67 t.Errorf(`Invalid icon URL, got %q`, iconURL)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/loader/icon/
H A DIconDatabase.cpp532 icon = getOrCreateIconRecord(iconURL); in setIconDataForIconURL()
585 String iconURL, pageURL; in setIconURLForPageURL() local
647 if (!isOpen() || iconURL.isEmpty()) in synchronousLoadDecisionForIconURL()
881 m_iconURLToRecordMap.set(iconURL, newIcon.get()); in getOrCreateIconRecord()
928 ASSERT(!iconURL.isEmpty()); in importIconURLForPageURL()
939 ASSERT(!iconURL.isEmpty()); in importIconDataForIconURL()
1225 String iconURL = query.getColumnText(1); in performURLImport() local
1245 if (!currentIcon || currentIcon->iconURL() != iconURL) { in performURLImport()
1877 iconID = addIconURLToSQLDatabase(iconURL); in setIconURLForPageURLInSQLDatabase()
1997 if (iconURL.isEmpty()) in removeIconFromSQLDatabase()
[all …]
H A DIconLoader.cpp72 ResourceRequest resourceRequest(m_frame->loader()->iconURL()); in startLoading()
77 …LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii()… in startLoading()
149 void IconLoader::finishLoading(const KURL& iconURL, PassRefPtr<SharedBuffer> data) in finishLoading() argument
158 if (!iconURL.isEmpty() && m_loadIsInProgress) { in finishLoading()
159 …base, "IconLoader::finishLoading() - Committing iconURL %s to database", iconURL.string().ascii().… in finishLoading()
160 m_frame->loader()->commitIconURLToIconDatabase(iconURL); in finishLoading()
164 iconDatabase().setIconDataForIconURL(data, iconURL.string()); in finishLoading()
H A DIconDatabase.h93 virtual void setIconURLForPageURL(const String& iconURL, const String& pageURL);
142 PassRefPtr<IconRecord> getOrCreateIconRecord(const String& iconURL);
179 virtual void importIconURLForPageURL(const String& iconURL, const String& pageURL);
180 virtual void importIconDataForIconURL(PassRefPtr<SharedBuffer> data, const String& iconURL);
214 int64_t getIconIDForIconURLFromSQLDatabase(const String& iconURL);
216 PassRefPtr<SharedBuffer> getImageDataForIconURLFromSQLDatabase(const String& iconURL);
217 void removeIconFromSQLDatabase(const String& iconURL);
H A DIconRecord.h60 IconSnapshot(const String& iconURL, int timestamp, SharedBuffer* data) in IconSnapshot() argument
61 : m_iconURL(iconURL) in IconSnapshot()
66 const String& iconURL() const { return m_iconURL; } in iconURL() function
91 String iconURL() { return m_iconURL; } in iconURL() function
H A DPageURLRecord.h45 PageURLSnapshot(const String& pageURL, const String& iconURL) in PageURLSnapshot() argument
47 , m_iconURL(iconURL) in PageURLSnapshot()
51 const String& iconURL() const { return m_iconURL; } in iconURL() function
/dports/lang/spidermonkey60/firefox-60.9.0/testing/web-platform/meta/credential-management/
H A Didl.https.html.ini36 …mary interface of new PasswordCredential({ id: "id", password: "pencil", iconURL: "https://example…
39 …[Stringification of new PasswordCredential({ id: "id", password: "pencil", iconURL: "https://examp…
42 …[PasswordCredential interface: new PasswordCredential({ id: "id", password: "pencil", iconURL: "ht…
51 …[PasswordCredential interface: new PasswordCredential({ id: "id", password: "pencil", iconURL: "ht…
54 …tial({ id: "id", password: "pencil", iconURL: "https://example.com/", name: "name" }) must inherit…
57 …[Credential interface: new PasswordCredential({ id: "id", password: "pencil", iconURL: "https://ex…
60 …[Credential interface: new PasswordCredential({ id: "id", password: "pencil", iconURL: "https://ex…
87 … of new FederatedCredential({ id: "id", provider: "https://example.com", iconURL: "https://example…
90 …[Stringification of new FederatedCredential({ id: "id", provider: "https://example.com", iconURL: …
102 …d", provider: "https://example.com", iconURL: "https://example.com/", name: "name" }) must inherit…
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/
H A DWebIconDatabase.cpp113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) in setIconURLForPageURL() argument
115 …LOG(IconDatabase, "WK2 UIProcess setting icon URL %s for page URL %s", iconURL.ascii().data(), pag… in setIconURLForPageURL()
117 m_iconDatabaseImpl->setIconURLForPageURL(iconURL, pageURL); in setIconURLForPageURL()
120 …bIconDatabase::setIconDataForIconURL(const CoreIPC::DataReference& iconData, const String& iconURL) in setIconDataForIconURL() argument
127 m_iconDatabaseImpl->setIconDataForIconURL(buffer.release(), iconURL); in setIconDataForIconURL()
135 void WebIconDatabase::synchronousIconURLForPageURL(const String&, String& iconURL) in synchronousIconURLForPageURL() argument
137 iconURL = String(); in synchronousIconURLForPageURL()
150 void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t callbackID) in getLoadDecisionForIconURL() argument
157 if (!m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || iconURL.isEmpty()) { in getLoadDecisionForIconURL()
164 IconLoadDecision decision = m_iconDatabaseImpl->synchronousLoadDecisionForIconURL(iconURL, 0); in getLoadDecisionForIconURL()
[all …]
H A DWebIconDatabase.messages.in26 SetIconURLForPageURL(WTF::String iconURL, WTF::String pageURL)
27 SetIconDataForIconURL(CoreIPC::DataReference iconData, WTF::String iconURL)
30 SynchronousIconURLForPageURL(WTF::String pageURL) -> (WTF::String iconURL)
31 SynchronousIconDataKnownForIconURL(WTF::String iconURL) -> (bool dataKnown)
32 SynchronousLoadDecisionForIconURL(WTF::String iconURL) -> (int loadDecision)
34 GetLoadDecisionForIconURL(WTF::String iconURL, uint64_t callbackID)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/IconDatabase/
H A DWebIconDatabaseProxy.cpp93 bool WebIconDatabaseProxy::synchronousIconDataKnownForIconURL(const String& iconURL) in synchronousIconDataKnownForIconURL() argument
100 IconLoadDecision WebIconDatabaseProxy::synchronousLoadDecisionForIconURL(const String& iconURL, Doc… in synchronousLoadDecisionForIconURL() argument
112 void WebIconDatabaseProxy::loadDecisionForIconURL(const String& iconURL, PassRefPtr<WebCore::IconLo… in loadDecisionForIconURL() argument
117 …m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0… in loadDecisionForIconURL()
127 void WebIconDatabaseProxy::iconDataForIconURL(const String& iconURL, PassRefPtr<WebCore::IconDataCa… in iconDataForIconURL() argument
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL) in setIconURLForPageURL() argument
133 …m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0… in setIconURLForPageURL()
136 …bIconDatabaseProxy::setIconDataForIconURL(PassRefPtr<SharedBuffer> iconData, const String& iconURL) in setIconDataForIconURL() argument
139 … m_process->connection()->send(Messages::WebIconDatabase::SetIconDataForIconURL(data, iconURL), 0); in setIconDataForIconURL()
/dports/misc/freeguide/freeguide-0.11.1/src/freeguide/common/lib/fgspecific/data/
H A DTVChannel.java33 protected String iconURL; field in TVChannel
75 if( channel.iconURL != null ) in mergeHeaderFrom()
77 iconURL = channel.iconURL; in mergeHeaderFrom()
149 return iconURL; in getIconURL()
158 public void setIconURL( final String iconURL ) in setIconURL() argument
160 this.iconURL = iconURL; in setIconURL()
H A DTVProgramme.java56 private String iconURL; field in TVProgramme
109 result.iconURL = iconURL; in clone()
651 if( iconURL == null ) in getIconURL()
674 path.append( iconURL.replaceAll( ICONPATH_RE_FROM, ICONPATH_RE_TO ) ); in getIconURL()
685 URL iconURL; in getIconURL() local
687 iconURL = new URL( this.iconURL ); in getIconURL()
689 InputStream i = iconURL.openStream( ); in getIconURL()
740 public void setIconURL( String iconURL ) in setIconURL() argument
742 this.iconURL = iconURL; in setIconURL()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mail/actors/
H A DLinkHandlerParent.jsm33 setIconFromLink(gTabmail, browser, { canUseForTab, iconURL }) {
41 iconURI = Services.io.newURI(iconURL);
61 browser.mIconURL = iconURL;
62 gTabmail.setTabIcon(tab, iconURL);
/dports/net-im/matterbridge/matterbridge-1.22.3/bridge/config/
H A Dconfig.go382 func GetIconURL(msg *Message, iconURL string) string {
386 iconURL = strings.Replace(iconURL, "{NICK}", msg.Username, -1)
387 iconURL = strings.Replace(iconURL, "{BRIDGE}", name, -1)
388 iconURL = strings.Replace(iconURL, "{PROTOCOL}", protocol, -1)
389 return iconURL
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/chrome/browser/passwords/
H A Dnotify_auto_signin_view_controller.mm71 // URL to user's avatar, corresponding to Credential.iconURL field in JS.
72 @property(assign, nonatomic) GURL iconURL; property
81 @synthesize iconURL = _iconURL;
85 iconURL:(GURL)iconURL
92 _iconURL = iconURL;
149 if (self.iconURL.is_valid()) {
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/actors/
H A DSidebarSearchParent.jsm29 let iconURL;
36 iconURL = NetUtil.newURI(browser.mIconURL);
77 .addEngine(engineURL.spec, iconURL ? iconURL.spec : null, true)
/dports/www/firefox-legacy/firefox-52.8.0esr/image/decoders/icon/
H A DnsIconProtocolHandler.cpp77 nsCOMPtr<nsIURL> iconURL; in NewURI() local
78 uri->GetIconURL(getter_AddRefs(iconURL)); in NewURI()
79 if (iconURL) { in NewURI()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/
H A DEngineResultSection.java378 if (iconURL != null) { in updateResults()
381 id = registerGrayedHitIcon(iconURL); in updateResults()
384 id = registerHitIcon(iconURL); in updateResults()
458 private String registerHitIcon(URL iconURL) { in registerHitIcon() argument
459 Image image = HelpUIResources.getImage(iconURL); in registerHitIcon()
461 searchResults.setImage(iconURL.toString(), image); in registerHitIcon()
462 return iconURL.toString(); in registerHitIcon()
475 private String registerGrayedHitIcon(URL iconURL) { in registerGrayedHitIcon() argument
476 Image image = HelpUIResources.getImage(iconURL); in registerGrayedHitIcon()
478 searchResults.setImage(iconURL.toString(), image); in registerGrayedHitIcon()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.ui.intro.quicklinks/src/org/eclipse/ui/intro/quicklinks/
H A DQuicklinksViewer.java298 String iconURL = MenuHelper.getIconURI(ce, attr);
299 if (iconURL != null) {
300 return asBrowserURL(iconURL);
409 private String asBrowserURL(String iconURL) {
410 if (iconURL.startsWith("file:") || iconURL.startsWith("http:")) { //$NON-NLS-1$ //$NON-NLS-2$
411 return iconURL;
414 URL original = new URL(iconURL);
425 return asDataURL(ImageDescriptor.createFromURL(new URL(iconURL)));
428 return iconURL;
/dports/www/firefox-esr/firefox-91.8.0/dom/manifest/
H A DManifestIcons.jsm69 const iconURL = new aWindow.URL(src, aWindow.location);
71 if (iconURL.protocol === "data:") {
72 return iconURL.href;
75 const request = new aWindow.Request(iconURL, { mode: "cors" });
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/meta/credential-management/
H A Didlharness.https.window.js.ini26 [PasswordCredential interface: attribute iconURL]
56 [FederatedCredential interface: attribute iconURL]
89 …[PasswordCredential interface: passwordCredential must inherit property "iconURL" with the proper …
92 …[FederatedCredential interface: federatedCredential must inherit property "iconURL" with the prope…
/dports/www/firefox/firefox-99.0/dom/manifest/
H A DManifestIcons.jsm69 const iconURL = new aWindow.URL(src, aWindow.location);
71 if (iconURL.protocol === "data:") {
72 return iconURL.href;
75 const request = new aWindow.Request(iconURL, { mode: "cors" });
/dports/mail/thunderbird/thunderbird-91.8.0/dom/manifest/
H A DManifestIcons.jsm69 const iconURL = new aWindow.URL(src, aWindow.location);
71 if (iconURL.protocol === "data:") {
72 return iconURL.href;
75 const request = new aWindow.Request(iconURL, { mode: "cors" });
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/meta/credential-management/
H A Didlharness.https.window.js.ini26 [PasswordCredential interface: attribute iconURL]
56 [FederatedCredential interface: attribute iconURL]
89 …[PasswordCredential interface: passwordCredential must inherit property "iconURL" with the proper …
92 …[FederatedCredential interface: federatedCredential must inherit property "iconURL" with the prope…

12345678910>>...13