HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 451 - 475 of 2997) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/common/net/
test_url_fetcher_factory.h 48 const GURL& url,
63 // URL we were created with. Because of how we're using URLFetcher url()
64 // always returns an empty URL. Chances are you'll want to use original_url()
94 const GURL& url,
129 // // You know that class SomeService will request url http://a.com/ and you
146 // If no fake response is set for the given URL this method will return NULL.
150 const GURL& url,
154 // Sets the fake response for a given URL. If success is true we will serve
156 void SetFakeResponse(const std::string& url,
    [all...]
  /external/chromium/net/base/
openssl_private_key_store.h 36 // Called to store a private key generated via <keygen> while visiting |url|.
41 virtual bool StorePrivateKey(const GURL& url, EVP_PKEY* pkey) = 0;
  /external/chromium/net/data/proxy_resolver_v8_unittest/
simple.js 4 function FindProxyForURL(url, host) {
11 if (url.substring(0, 6) != "https:" &&
  /external/chromium/net/http/
url_security_manager_unittest.cc 18 const char* url; member in struct:net::__anon5092::TestData
50 // The URL security manager takes ownership of |auth_filter|.
56 GURL gurl(kTestDataList[i].url);
61 << " Run: " << i << " URL: '" << gurl << "'";
69 // The URL security manager takes ownership of |auth_filter|.
75 GURL gurl(kTestDataList[i].url);
78 << " Run: " << i << " URL: '" << gurl << "'";
89 GURL gurl(kTestDataList[i].url);
  /external/chromium/net/proxy/
init_proxy_resolver.h 31 // (2) Custom PAC script if a URL was given.
58 // whether to use auto-detect or the custom PAC URL. Finally, if auto-detect
59 // was used we may now have resolved that to a specific script URL.
67 PacURL(bool auto_detect, const GURL& url)
68 : auto_detect(auto_detect), url(url) {}
70 GURL url; member in struct:net::InitProxyResolver::PacURL
101 // Tries restarting using the next fallback PAC URL:
111 // Returns the current PAC URL we are fetching/testing.
proxy_resolver_mac.h 23 virtual int GetProxyForURL(const GURL& url,
  /external/chromium/webkit/glue/media/
web_data_source.h 20 // Initialize this object using |url|. This object calls |callback| when
22 virtual void Initialize(const std::string& url,
  /external/chromium/webkit/glue/
mimetype_unittest.cc 21 void LoadURL(const GURL& url) {
22 test_shell_->LoadURL(url);
28 GURL url(test_server_.GetURL(path + mimetype));
29 LoadURL(url);
websocketstreamhandle_impl.h 20 const WebKit::WebURL& url,
  /external/chromium-trace/trace-viewer/third_party/closure_linter/
setup.py 28 url='http://code.google.com/p/closure-linter', variable
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
setup.py 57 url='http://code.google.com/p/pywebsocket/', variable
  /external/linux-tools-perf/util/
setup.py 23 url='http://perf.wiki.kernel.org', variable
  /external/llvm/utils/lit/
setup.py 11 url = 'http://llvm.org', variable
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.cpp 34 ApplicationCacheResource::ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> data, const String& path)
35 : SubstituteResource(url, response, data)
61 m_estimatedSizeInStorage += url().string().length() * sizeof(UChar);
63 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar);
  /external/webkit/Source/WebCore/loader/cache/
CachedXSLStyleSheet.cpp 40 CachedXSLStyleSheet::CachedXSLStyleSheet(const String &url)
41 : CachedResource(url, XSLStyleSheet)
52 c->setXSLStyleSheet(m_url, m_response.url(), m_sheet);
87 c->setXSLStyleSheet(m_url, m_response.url(), m_sheet);
  /external/webkit/Source/WebCore/page/
History.idl 44 [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optional DOMString url)
46 [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in optional DOMString url)
  /external/webkit/Source/WebCore/platform/cf/
KURLCFNet.cpp 36 KURL::KURL(CFURLRef url)
38 if (!url) {
43 CFIndex bytesLength = CFURLGetBytes(url, 0, 0);
46 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength);
71 // NOTE: We use UTF-8 here since this encoding is used when computing strings when returning URL components
  /external/webkit/Source/WebCore/platform/efl/
TemporaryLinkStubs.cpp 54 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String &challengeString, const KURL &url)
  /external/webkit/Source/WebCore/platform/gtk/
TemporaryLinkStubs.cpp 48 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String &challengeString, const KURL &url) { return String(); }
  /external/webkit/Source/WebCore/platform/network/
BlobData.cpp 57 url = url.copy();
88 void BlobData::appendBlob(const KURL& url, long long offset, long long length)
90 m_items.append(BlobDataItem(url, offset, length));
  /external/webkit/Source/WebCore/storage/
StorageEvent.h 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
47 const String& url() const { return m_url; } function in class:WebCore::StorageEvent
50 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
  /external/webkit/Source/WebCore/workers/
SharedWorker.h 43 static PassRefPtr<SharedWorker> create(const String& url, const String& name, ScriptExecutionContext*, ExceptionCode&);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ContextMenuClientAndroid.h 40 virtual void downloadURL(const KURL& url);
  /external/webkit/Source/WebKit/chromium/public/
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;

Completed in 1838 milliseconds

<<11121314151617181920>>