/external/webkit/WebCore/css/ |
CSSCursorImageValue.h | 35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotspot) 37 return adoptRef(new CSSCursorImageValue(url, hotspot)); 52 CSSCursorImageValue(const String& url, const IntPoint& hotspot);
|
/external/webkit/WebCore/html/ |
HTMLAnchorElement.cpp | 190 String url = deprecatedParseURL(getAttribute(hrefAttr)); local 203 url += "?"; 204 url += String::number(x); 205 url += ","; 206 url += String::number(y); 216 document()->frame()->loader()->urlSelected(document()->completeURL(url), getAttribute(targetAttr), evt, false, false, true, hasRel(RelationNoReferrer) ? NoReferrer : SendReferrer); 376 KURL url = href(); local 378 url.setFragmentIdentifier(value.substring(1)); 380 url.setFragmentIdentifier(value); 381 setHref(url.string()) 386 const KURL& url = href(); local 458 KURL url = href(); local 477 KURL url = href(); local 500 KURL url = href(); local 513 KURL url = href(); local [all...] |
/external/webkit/WebCore/loader/ |
SubstituteResource.h | 43 const KURL& url() const { return m_url; } function in class:WebCore::SubstituteResource 48 SubstituteResource(const KURL& url, const ResourceResponse& response, PassRefPtr<SharedBuffer> data) 49 : m_url(url)
|
DocLoader.cpp | 125 CachedImage* DocLoader::requestImage(const String& url) 132 CachedImage* resource = static_cast<CachedImage*>(requestResource(CachedResource::ImageResource, url, String())); 135 if (shouldBlockNetworkImage(url)) { 145 CachedFont* DocLoader::requestFont(const String& url) 147 return static_cast<CachedFont*>(requestResource(CachedResource::FontResource, url, String())); 150 CachedCSSStyleSheet* DocLoader::requestCSSStyleSheet(const String& url, const String& charset) 152 return static_cast<CachedCSSStyleSheet*>(requestResource(CachedResource::CSSStyleSheet, url, charset)); 155 CachedCSSStyleSheet* DocLoader::requestUserCSSStyleSheet(const String& url, const String& charset) 157 return cache()->requestUserCSSStyleSheet(this, url, charset); 160 CachedScript* DocLoader::requestScript(const String& url, const String& charset [all...] |
/external/webkit/WebCore/workers/ |
AbstractWorker.cpp | 55 KURL AbstractWorker::resolveURL(const String& url, ExceptionCode& ec) 57 if (url.isEmpty()) { 63 KURL scriptURL = scriptExecutionContext()->completeURL(url);
|
SharedWorker.h | 45 static PassRefPtr<SharedWorker> create(const String& url, const String& name, ScriptExecutionContext* context, ExceptionCode& ec) 47 return adoptRef(new SharedWorker(url, name, context, ec)); 55 SharedWorker(const String& url, const String& name, ScriptExecutionContext*, ExceptionCode&);
|
DedicatedWorkerThread.cpp | 47 DedicatedWorkerThread::DedicatedWorkerThread(const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy) 48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy) 57 PassRefPtr<WorkerContext> DedicatedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent) 59 return DedicatedWorkerContext::create(url, userAgent, this);
|
SharedWorkerThread.cpp | 46 SharedWorkerThread::SharedWorkerThread(const String& name, const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) 47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy) 56 PassRefPtr<WorkerContext> SharedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent) 58 return SharedWorkerContext::create(m_name, url, userAgent, this);
|
/external/webkit/WebCore/loader/appcache/ |
ApplicationCacheResource.h | 45 static PassRefPtr<ApplicationCacheResource> create(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> buffer = SharedBuffer::create()) 47 ASSERT(!url.hasFragmentIdentifier()); 48 return adoptRef(new ApplicationCacheResource(url, response, type, buffer)); 64 ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> buffer);
|
/external/webkit/WebCore/platform/chromium/ |
ChromiumDataObject.cpp | 38 url = KURL(); 54 return !url.isEmpty() 65 : url(other.url)
|
/external/webkit/WebCore/platform/gtk/ |
TemporaryLinkStubs.cpp | 47 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String &challengeString, const KURL &url) { return String(); }
|
/external/webkit/WebCore/platform/mac/ |
SSLKeyGeneratorMac.mm | 42 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL& url) 46 pageURL:url];
|
/external/webkit/WebCore/platform/network/chromium/ |
ResourceResponse.h | 45 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) 46 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename) 72 void setAppCacheManifestURL(const KURL& url) 74 m_appCacheManifestURL = url; 104 // The manifest url of the appcache this response was retrieved from, if any.
|
/external/webkit/WebKit/android/WebCoreSupport/ |
KeyGeneratorClient.h | 43 const String& challenge, const KURL& url) = 0;
|
ResourceLoaderAndroid.cpp | 45 bool ResourceLoaderAndroid::willLoadFromCache(const WebCore::KURL& url, int64_t identifier) 47 return WebCoreResourceLoader::willLoadFromCache(url, identifier);
|
/external/webkit/WebKit/chromium/public/ |
WebPluginParams.h | 41 WebURL url; member in struct:WebKit::WebPluginParams
|
WebSearchableFormData.h | 40 // SearchableFormData encapsulates a URL and encoding of an INPUT field that 50 // URL for the searchable form request. 51 const WebURL& url() const function in class:WebKit::WebSearchableFormData
|
WebStorageEventDispatcher.h | 51 const WebURL& url, bool isLocalStorage) = 0;
|
/external/webkit/WebKit/mac/Plugins/ |
WebNetscapeContainerCheckPrivate.h | 43 typedef uint32 (*WKN_CheckIfAllowedToLoadURLProcPtr)(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32, NPBool allowed, void* context), void* context); 45 typedef char* (*WKN_ResolveURLProcPtr)(NPP npp, const char* url, const char* target); 47 uint32 WKN_CheckIfAllowedToLoadURL(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32, NPBool allowed, void* context), void* context); 49 char* WKN_ResolveURL(NPP npp, const char* url, const char* target);
|
/external/webkit/WebKit/mac/Storage/ |
WebSecurityOriginPrivate.h | 35 - (id)initWithURL:(NSURL *)url;
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
http_server_base.py | 62 url = 'http%s://127.0.0.1:%d/' % (http_suffix, mapping['port']) 65 response = urllib.urlopen(url) 66 logging.debug("Server running at %s" % url) 68 logging.debug("Server NOT running at %s" % url)
|
/external/webkit/WebCore/platform/network/soup/ |
ResourceResponse.h | 42 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) 43 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
|
/packages/apps/Browser/src/com/android/browser/ |
BookmarkItem.java | 49 mUrlText = (TextView) findViewById(R.id.url); 117 * Set the new url for the bookmark item. 118 * @param url The new url for the bookmark item. 120 /* package */ void setUrl(String url) { 121 if (url == null) { 125 mUrl = url; 127 if (url.length() > BrowserSettings.MAX_TEXTVIEW_LEN) { 128 url = url.substring(0, BrowserSettings.MAX_TEXTVIEW_LEN) [all...] |
/external/webkit/WebCore/bindings/js/ |
JSLocationCustom.cpp | 91 // such cases when normally the string form of Location would be the URL. 131 // such cases when normally the string form of Location would be the URL. 187 static void navigateIfAllowed(ExecState* exec, Frame* frame, const KURL& url, bool lockHistory, bool lockBackForwardList) 193 if (!protocolIsJavaScript(url) || allowsAccessFromFrame(exec, frame)) 194 frame->redirectScheduler()->scheduleLocationChange(url.string(), lexicalFrame->loader()->outgoingReferrer(), lockHistory, lockBackForwardList, processingUserGesture(exec)); 202 KURL url = completeURL(exec, value.toString(exec)); local 203 if (url.isNull()) 209 navigateIfAllowed(exec, frame, url, !frame->script()->anyPageIsProcessingUserGesture(), false); 217 KURL url = frame->loader()->url(); local 231 KURL url = frame->loader()->url(); local 242 KURL url = frame->loader()->url(); local 253 KURL url = frame->loader()->url(); local 270 KURL url = frame->loader()->url(); local 281 KURL url = frame->loader()->url(); local 292 KURL url = frame->loader()->url(); local [all...] |
/external/webkit/WebCore/loader/archive/ |
ArchiveResourceCollection.cpp | 49 m_subresources.set((*iRes)->url(), iRes->get()); 71 const KURL& url = resource->url(); // get before passing PassRefPtr (which sets it to 0) local 72 m_subresources.set(url, resource); 75 ArchiveResource* ArchiveResourceCollection::archiveResourceForURL(const KURL& url) 77 ArchiveResource* resource = m_subresources.get(url).get();
|