HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 276 - 300 of 1269) sorted by null

<<11121314151617181920>>

  /external/webkit/WebCore/bindings/v8/custom/
V8EventSourceConstructor.cpp 62 String url = toWebCoreString(args[0]); local
64 RefPtr<EventSource> eventSource = EventSource::create(url, context, ec);
  /external/webkit/WebCore/css/
CSSHelper.cpp 30 String deprecatedParseURL(const String& url)
32 StringImpl* i = url.impl();
  /external/webkit/WebCore/inspector/
TimelineRecordFactory.h 55 static ScriptObject createXHRReadyStateChangeData(InspectorFrontend*, const String& url, int readyState);
57 static ScriptObject createXHRLoadData(InspectorFrontend*, const String& url);
  /external/webkit/WebCore/loader/
RedirectScheduler.h 57 void scheduleRedirect(double delay, const String& url);
58 void scheduleLocationChange(const String& url, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true, bool userGesture = false);
CachedCSSStyleSheet.cpp 39 CachedCSSStyleSheet::CachedCSSStyleSheet(const String& url, const String& charset)
40 : CachedResource(url, CSSStyleSheet)
55 c->setCSSStyleSheet(m_url, m_response.url(), m_decoder->encoding().name(), this);
115 c->setCSSStyleSheet(m_url, m_response.url(), m_decoder->encoding().name(), this);
CachedXBLDocument.h 42 CachedXBLDocument(const String& url);
CachedXSLStyleSheet.h 40 CachedXSLStyleSheet(const String& url);
  /external/webkit/WebCore/loader/icon/
IconRecord.cpp 42 IconRecord::IconRecord(const String& url)
43 : m_iconURL(url)
52 LOG(IconDatabase, "Destroying IconRecord for icon url %s", m_iconURL.ascii().data());
  /external/webkit/WebCore/notifications/
NotificationCenter.idl 37 [V8Custom] Notification createHTMLNotification(in DOMString url) raises(Exception);
NotificationCenter.cpp 53 m_scriptExecutionContext->url(),
  /external/webkit/WebCore/platform/chromium/
ChromiumBridge.h 86 static void setCookies(const KURL& url, const KURL& firstPartyForCookies, const String& value);
87 static String cookies(const KURL& url, const KURL& firstPartyForCookies);
88 static String cookieRequestHeaderFieldValue(const KURL& url, const KURL& firstPartyForCookies);
89 static bool rawCookies(const KURL& url, const KURL& firstPartyForCookies, Vector<Cookie>*);
90 static void deleteCookie(const KURL& url, const String& cookieName);
91 static bool cookiesEnabled(const KURL& url, const KURL& firstPartyForCookies);
137 static String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challenge, const KURL& url);
214 static LinkHash visitedLinkHash(const UChar* url, unsigned length);
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerProxy.h 73 - (void)_load:(NSURL *)url;
76 - (void)_setPoster:(NSURL *)url;
  /external/webkit/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 43 SocketStreamHandlePrivate::SocketStreamHandlePrivate(SocketStreamHandle* streamHandle, const KURL& url) : QObject()
47 bool isSecure = url.protocolIs("wss");
66 unsigned int port = url.hasPort() ? url.port() : (isSecure ? 443 : 80);
68 QString host = url.host();
160 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
161 : SocketStreamHandleBase(url, client)
164 m_p = new SocketStreamHandlePrivate(this, url);
  /external/webkit/WebCore/plugins/
npapi.cpp 72 NPError NPN_GetURLNotify(NPP instance, const char* url, const char* target, void* notifyData)
74 return pluginViewForInstance(instance)->getURLNotify(url, target, notifyData);
77 NPError NPN_GetURL(NPP instance, const char* url, const char* target)
79 return pluginViewForInstance(instance)->getURL(url, target);
82 NPError NPN_PostURLNotify(NPP instance, const char* url, const char* target, uint32 len, const char* buf, NPBool file, void* notifyData)
84 return pluginViewForInstance(instance)->postURLNotify(url, target, len, buf, file, notifyData);
87 NPError NPN_PostURL(NPP instance, const char* url, const char* target, uint32 len, const char* buf, NPBool file)
89 return pluginViewForInstance(instance)->postURL(url, target, len, buf, file);
  /external/webkit/WebCore/workers/
DedicatedWorkerContext.h 46 static PassRefPtr<DedicatedWorkerContext> create(const KURL& url, const String& userAgent, DedicatedWorkerThread* thread)
48 return adoptRef(new DedicatedWorkerContext(url, userAgent, thread));
Worker.h 56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec) { return adoptRef(new Worker(url, context, ec)); }
DefaultSharedWorkerRepository.cpp 61 static PassRefPtr<SharedWorkerProxy> create(const String& name, const KURL& url, PassRefPtr<SecurityOrigin> origin) { return adoptRef(new SharedWorkerProxy(name, url, origin)); }
66 KURL url() const function in class:WebCore::SharedWorkerProxy
108 SharedWorkerProxy::SharedWorkerProxy(const String& name, const KURL& url, PassRefPtr<SecurityOrigin> origin)
111 , m_url(url.copy())
126 return urlToMatch == url();
273 void SharedWorkerScriptLoader::load(const KURL& url)
277 m_scriptLoader->loadAsynchronously(m_worker->scriptExecutionContext(), url, DenyCrossOriginRequests, this);
293 DefaultSharedWorkerRepository::instance().workerScriptLoaded(*m_proxy, m_worker->scriptExecutionContext()->userAgent(m_scriptLoader->url()), m_scriptLoader->script(), m_port.release());
313 RefPtr<SharedWorkerThread> thread = SharedWorkerThread::create(proxy.name(), proxy.url(), userAgent, workerScript, proxy, proxy)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebStorageEventDispatcherImpl.cpp 63 const WebURL& url = storageAreaImplURL ? *storageAreaImplURL : passedInURL; local
67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
  /external/webkit/WebKit/qt/tests/qwebhistoryinterface/
tst_qwebhistoryinterface.cpp 74 bool historyContains(const QString& url) const {
75 return url == QLatin1String("http://www.trolltech.com/");
  /external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
PluginObject.h 57 extern void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData);
58 extern void notifyStream(PluginObject* object, const char *url, const char *headers);
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
lighttpd.conf 66 url.rewrite-once = (
73 $HTTP["url"] =~ "^/xmlhttprequest/resources/reply2.(txt|xml)" {
79 $HTTP["url"] =~ "^/xmlhttprequest/resources/reply4.txt" {
85 $HTTP["url"] =~ "^/appcache/resources/wrong-content-type.manifest" {
  /packages/apps/Mms/src/com/android/mms/transaction/
Transaction.java 129 * @param mmscUrl Url of the recipient MMSC.
158 * @param mmscUrl Url of the recipient MMSC.
178 * @param url The URL of the message which we are going to retrieve.
184 protected byte[] getPdu(String url) throws IOException {
185 ensureRouteToHost(url, mTransactionSettings);
188 url, null, HttpUtils.HTTP_GET_METHOD,
196 * supplied URL, and to the MMS proxy host as well, if a proxy is used.
197 * @param url The URL of the MMSC to which we need a rout
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_mac.h 23 virtual int GetProxyForURL(const GURL& url,
proxy_resolver_winhttp.h 25 virtual int GetProxyForURL(const GURL& url,
proxy_script_fetcher.h 27 // Downloads the given PAC URL, and invokes |callback| on completion.
42 virtual int Fetch(const GURL& url, std::string* utf8_bytes,

Completed in 905 milliseconds

<<11121314151617181920>>