Searched refs:url (Results 176 - 200 of 2019) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DAuditFormatters.js60 url: function(url, displayText, allowExternalNavigation) method in class:WebInspector.AuditFormatters.Registry
63 a.href = sanitizeHref(url);
64 a.title = url;
65 a.textContent = displayText || url;
71 resourceLink: function(url, line)
74 return WebInspector.linkifyResourceAsNode(url, line, "console-message-url webkit-html-resource-link");
H A DResourceTreeModel.js88 WebInspector.inspectedPageURL = mainFramePayload.frame.url;
204 WebInspector.inspectedPageURL = frame.url;
275 var url = event.data.url;
276 if (frame._resourcesMap[url])
279 var resource = new WebInspector.Resource(null, url, frame.url, frameId, event.data.loaderId, WebInspector.resourceTypes[event.data.resourceType], event.data.mimeType);
317 var resource = msg.url ? this.resourceForURL(msg.url) : null;
329 if (!msg.url)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DDataURL.cpp43 ASSERT(handle->firstRequest().url().protocolIsData());
44 String url = handle->firstRequest().url().string(); local
46 int index = url.find(',');
52 String mediaType = url.substring(5, index - 5);
53 String data = url.substring(index + 1);
71 response.setURL(handle->firstRequest().url());
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorageEvent.cpp51 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
53 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
61 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
66 , m_url(url)
76 , m_url(initializer.url)
81 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
91 m_url = url;
H A DStorageEvent.h42 String url; member in struct:WebCore::StorageEventInit
49 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
56 const String& url() const { return m_url; } function in class:WebCore::StorageEvent
59 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
68 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPageSerializer.cpp158 KURL url = frame->document()->url();
159 if (url.isValid() && !url.isBlankURL())
163 url = m_serializer->urlForBlankFrame(frame);
164 appendAttribute(out, element, Attribute(frameOwnerURLAttributeName(*frameOwner), url.string()), namespaces);
177 PageSerializer::Resource::Resource(const KURL& url, const String& mimeType, PassRefPtr<SharedBuffer> data) argument
178 : url(url)
198 KURL url local
236 KURL url = document->completeURL(imageElement->getAttribute(HTMLNames::srcAttr)); local
242 KURL url = document->completeURL(linkElement->getAttribute(HTMLNames::hrefAttr)); local
257 serializeCSSStyleSheet(CSSStyleSheet* styleSheet, const KURL& url) argument
294 addImageToResources(CachedImage* image, RenderObject* imageRenderer, const KURL& url) argument
343 KURL url = document->completeURL(image->url()); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DApplicationCache.cpp85 const String& url = resource->url(); local
87 ASSERT(!m_resources.contains(url));
99 m_resources.set(url, resource);
102 unsigned ApplicationCache::removeResource(const String& url) argument
104 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url);
118 ApplicationCacheResource* ApplicationCache::resourceForURL(const String& url) argument
120 ASSERT(!KURL(ParsedURLString, url).hasFragmentIdentifier());
121 return m_resources.get(url);
126 if (!request.url()
154 isURLInOnlineWhitelist(const KURL& url) argument
172 urlMatchesFallbackNamespace(const KURL& url, KURL* fallbackURL) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/icon/
H A DIconController.cpp63 KURL IconController::url() function in class:WebCore::IconController
124 LOG(IconDatabase, "Committing iconURL %s to database for pageURLs %s and %s", icon.string().ascii().data(), m_frame->document()->url().string().ascii().data(), m_frame->loader()->initialRequest().url().string().ascii().data());
125 iconDatabase().setIconURLForPageURL(icon.string(), m_frame->document()->url().string());
126 iconDatabase().setIconURLForPageURL(icon.string(), m_frame->loader()->initialRequest().url().string());
140 if (!documentCanHaveIcon(m_frame->document()->url()))
143 KURL iconURL(url());
163 // Commit the icon url mapping to the database just in case we don't end up loading later.
171 // In this case, we may end up loading the icon later, but we still want to commit the icon url mapping to the database
210 KURL iconURL(url());
[all...]
/macosx-10.9.5/smb-697.95.1/NetFSPlugin/
H A Dsmb_netfs.c99 static netfsError SMB_ParseURL(CFURLRef url, CFDictionaryRef *urlParms) argument
101 return SMBNetFsParseURL(url, urlParms);
107 static netfsError SMB_CreateURL(CFDictionaryRef urlParms, CFURLRef *url) argument
109 return SMBNetFsCreateURL(urlParms, url);
115 static netfsError SMB_OpenSession(CFURLRef url, void *inConnection, argument
122 if ((inConnection == NULL) || (url == NULL)) {
128 error = SMBNetFsOpenSession(url, inConnection, openOptions, sessionInfo);
144 static netfsError SMB_GetServerInfo(CFURLRef url, void *inConnection, argument
150 if ((inConnection == NULL) || (url == NULL)) {
154 error = SMBNetFsGetServerInfo(url, inConnectio
194 SMB_Mount(void *inConnection, CFURLRef url, CFStringRef mPoint, CFDictionaryRef mOptions, CFDictionaryRef *mInfo) argument
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dnnlistserv.el33 (require 'mm-url)
84 "Perform the search and create a number-to-url alist."
91 map url page subject from )
97 (mm-url-decode-entities)
100 (setq url (match-string 1)
103 (setq url (concat (format (nnweb-definition 'address) page) url))
104 (unless (nnweb-get-hashtb url)
110 (concat "<" (nnweb-identifier url) "@kk>")
111 nil 0 0 url))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/apps/comm/
H A Dlink-checker.xotcl13 <tr><td>-url <td>Start-URL</td></tr>
17 which url should be treated as local
33 set opt(-url) http://localhost:8000/
34 set opt(-url) http://nm.wu-wien.ac.at/Lehre/
42 regexp {://(.*)$} $opt(-url) _ opt(-local)
47 regexp {http://([^/:]+)} $opt(-url) _ opt(-local)
67 Checker instproc isLocal {url} {
69 string match *://$local $url
71 Checker instproc isToCheck {url request methodvar} {
74 if {![regexp -nocase {http://([^/:]+)} $url
[all...]
H A Dget-regression.xotcl49 # -url http://localhost/index.html
54 # -url http://localhost/index.html
59 # -url http://localhost/index.html
66 # -url http://localhost/index.html
72 # -url http://localhost/muster-d1klausur.ps
79 foreach url $urls {
81 set t$i [Access [Access autoname a] -url $url \
87 foreach url $urls { sink$i reportTimes;incr i}
100 -url htt
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DScriptSourceCode.h46 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition& startPosition = TextPosition::minimumPosition())
47 : m_provider(JSC::StringSourceProvider::create(source, url.isNull() ? String() : url.string(), startPosition))
49 , m_url(url)
70 const KURL& url() const { return m_url; } function in class:WebCore::ScriptSourceCode
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebBackForwardListItem.cpp36 WebBackForwardListItem::WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID) argument
38 , m_url(url)
79 String url;
80 if (!decoder.decode(url))
95 return create(originalURL, url, title, data.data(), data.size(), itemID);
/macosx-10.9.5/emacs-92/emacs/lisp/url/
H A Durl-proxy.el0 ;;; url-proxy.el --- Proxy server support
26 (require 'url-parse)
27 (autoload 'url-warn "url")
29 (defun url-default-find-proxy-for-url (urlobj host)
31 ((or (and (assoc "no_proxy" url-proxy-services)
34 (assoc "no_proxy" url-proxy-services))
36 (equal "www" (url-type urlobj)))
38 ((cdr (assoc (url
[all...]
/macosx-10.9.5/ruby-104/ruby/test/uri/
H A Dtest_parser.rb10 url = 'http://a/b/c/d;p?q'
11 u0 = URI.parse(url)
12 u1 = URI.parse(url)
14 u2 = p.parse(url)
15 u3 = p.parse(url)
/macosx-10.9.5/smb-697.95.1/lib/smbclient/
H A Dsmbclient_netfs.h94 * @abstract Parse the url into a dictionary.
95 * @param url The smb url to parse
96 * @param urlParms A dictionary that contains all the parts of the url.
102 CFURLRef url,
107 * @abstract Create a url based on the dictionary
108 * @param urlParms A dictionary that contains all the parts of the url.
109 * @param url The smb url create from the dictionary
116 CFURLRef *url);
[all...]
H A Dnetfs.c133 SMBNetFsParseURL(CFURLRef url, CFDictionaryRef *urlParms) argument
137 if (url == NULL) {
140 return smb_url_to_dictionary(url, urlParms);
147 SMBNetFsCreateURL(CFDictionaryRef urlParms, CFURLRef *url) argument
149 *url = NULL;
154 return smb_dictionary_to_url(urlParms, url);
161 SMBNetFsOpenSession(CFURLRef url, SMBHANDLE inConnection, CFDictionaryRef argument
168 error = smb_open_session(hContext, url, openOptions, sessionInfo);
176 SMBNetFsGetServerInfo(CFURLRef url, SMBHANDLE inConnection, argument
183 error = smb_get_server_info(hContext, url, openOption
212 SMBNetFsMount(SMBHANDLE inConnection, CFURLRef url, CFStringRef mPoint, CFDictionaryRef mOptions, CFDictionaryRef *mInfo, void (*callout)(void *, void *), void *args) argument
245 char *url; local
[all...]
/macosx-10.9.5/smb-697.95.1/lib/
H A Dlibtest.c155 static int test_guest_anonymous_only(const char *url, int guest) argument
162 status = SMBOpenServerEx(url, &serverConnection, options);
185 static int test_accountname_sid(const char *url) argument
194 status = SMBOpenServerEx(url, &serverConnection, options);
231 static CFURLRef create_url_with_share(CFURLRef url, const char *share) argument
238 url = NULL;
241 errno = SMBNetFsParseURL(url, (CFDictionaryRef *)&urlParms);
243 url = NULL;
248 url = NULL;
249 error = SMBNetFsCreateURL(urlParms, &url);
261 netfs_test_mounts(SMBHANDLE inConnection, CFURLRef url) argument
379 do_mount(const char *mp, CFURLRef url, CFDictionaryRef openOptions, int mntflags) argument
429 CFURLRef url = NULL; local
556 CFURLRef url; local
605 CFURLRef url = NULL; local
713 CFURLRef url = NULL; local
757 CFURLRef url = NULL; local
812 CFURLRef url = NULL; local
906 CFURLRef url = NULL; local
1027 CFURLRef url = NULL; local
1254 dispalyDfsReferrals(const char *url) argument
1490 CFURLRef url; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/ldap/
H A Dapr_ldap_url.c100 static const char* skip_url_prefix(const char *url,
114 * Is this URL an ldap url?
117 APU_DECLARE(int) apr_ldap_is_ldap_url(const char *url) argument
122 if( url == NULL ) {
126 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
134 * Is this URL a secure ldap url?
137 APU_DECLARE(int) apr_ldap_is_ldaps_url(const char *url) argument
142 if( url == NULL ) {
146 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
154 * Is this URL an ldap socket url
157 apr_ldap_is_ldapi_url(const char *url) argument
174 skip_url_prefix(const char *url, int *enclosedp, const char **scheme) argument
269 char *url; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/ldap/
H A Dapr_ldap_url.c100 static const char* skip_url_prefix(const char *url,
114 * Is this URL an ldap url?
117 APU_DECLARE(int) apr_ldap_is_ldap_url(const char *url) argument
122 if( url == NULL ) {
126 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
134 * Is this URL a secure ldap url?
137 APU_DECLARE(int) apr_ldap_is_ldaps_url(const char *url) argument
142 if( url == NULL ) {
146 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
154 * Is this URL an ldap socket url
157 apr_ldap_is_ldapi_url(const char *url) argument
174 skip_url_prefix(const char *url, int *enclosedp, const char **scheme) argument
269 char *url; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp64 static bool verifyCustomHandlerURL(const String& baseURL, const String& url, ExceptionCode& ec) argument
69 int index = url.find(token);
76 // the "%s" token and prepending the base url, does not resolve.
77 String newURL = url;
127 void NavigatorContentUtils::registerProtocolHandler(Navigator* navigator, const String& scheme, const String& url, const String& title, ExceptionCode& ec) argument
138 if (!verifyCustomHandlerURL(baseURL, url, ec))
144 NavigatorContentUtils::from(navigator->frame()->page())->client()->registerProtocolHandler(scheme, baseURL, url, navigator->frame()->displayStringModifiedByEncoding(title));
167 String NavigatorContentUtils::isProtocolHandlerRegistered(Navigator* navigator, const String& scheme, const String& url, ExceptionCode& ec) argument
177 if (!verifyCustomHandlerURL(baseURL, url, ec))
183 return customHandlersStateString(NavigatorContentUtils::from(navigator->frame()->page())->client()->isProtocolHandlerRegistered(scheme, baseURL, url));
186 unregisterProtocolHandler(Navigator* navigator, const String& scheme, const String& url, ExceptionCode& ec) argument
[all...]
H A DNavigatorContentUtils.h51 static void registerProtocolHandler(Navigator*, const String& scheme, const String& url, const String& title, ExceptionCode&);
54 static String isProtocolHandlerRegistered(Navigator*, const String& scheme, const String& url, ExceptionCode&);
55 static void unregisterProtocolHandler(Navigator*, const String& scheme, const String& url, ExceptionCode&);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSShaderValue.h46 static PassRefPtr<WebKitCSSShaderValue> create(const String& url) { return adoptRef(new WebKitCSSShaderValue(url)); } argument
61 WebKitCSSShaderValue(const String& url);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DNavigationAction.h49 bool isEmpty() const { return m_resourceRequest.url().isEmpty(); }
51 KURL url() const { return m_resourceRequest.url(); } function in class:WebCore::NavigationAction

Completed in 244 milliseconds

1234567891011>>