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

1 2 3 4 5 6 78 91011>>

  /external/webkit/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 55 String urlToMarkup(const KURL& url, const String& title)
58 markup.append(url.string());
ClipboardChromium.cpp 53 // We provide the IE clipboard types (URL and Text), and the clipboard types specified in the WHATWG Web Applications 1.0 draft
65 if (cleanType == "url" || cleanType == "text/uri-list")
95 m_dataObject->url = KURL();
135 // message to get the URL from the clipboard directly.
136 if (!m_dataObject->url.isEmpty()) {
138 text = m_dataObject->url.string();
153 m_dataObject->url = KURL(ParsedURLString, data);
154 return m_dataObject->url.isValid();
164 KURL url = KURL(ParsedURLString, data); local
165 if (url.isValid()
    [all...]
  /external/webkit/WebCore/platform/network/cf/
ResourceResponse.h 49 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
50 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
61 // Mostly due to the size of the hash maps, the Header Map strings and the URL.
63 // Mostly due to the URL and Header Map.
  /external/webkit/WebCore/platform/network/chromium/
SocketStreamHandle.h 49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
  /external/webkit/WebCore/platform/network/curl/
SocketStreamHandle.h 48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
SocketStreamHandleCurl.cpp 42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
43 : SocketStreamHandleBase(url, client)
  /external/webkit/WebCore/platform/network/mac/
ResourceResponse.h 54 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
55 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
66 // Mostly due to the size of the hash maps, the Header Map strings and the URL.
68 // Mostly due to the URL and Header Map.
  /external/webkit/WebCore/platform/network/qt/
SocketStreamHandle.h 50 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
  /external/webkit/WebCore/platform/network/soup/
SocketStreamHandle.h 48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); }
SocketStreamHandleSoup.cpp 41 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
42 : SocketStreamHandleBase(url, client)
  /external/webkit/WebCore/workers/
SharedWorker.cpp 44 SharedWorker::SharedWorker(const String& url, const String& name, ScriptExecutionContext* context, ExceptionCode& ec)
52 KURL scriptUrl = resolveURL(url, ec);
SharedWorkerContext.cpp 52 SharedWorkerContext::SharedWorkerContext(const String& name, const KURL& url, const String& userAgent, SharedWorkerThread* thread)
53 : WorkerContext(url, userAgent, thread)
SharedWorkerContext.h 46 static PassRefPtr<SharedWorkerContext> create(const String& name, const KURL& url, const String& userAgent, SharedWorkerThread* thread)
48 return adoptRef(new SharedWorkerContext(name, url, userAgent, thread));
  /external/webkit/WebKit/chromium/src/
WebSecurityPolicy.cpp 69 bool WebSecurityPolicy::shouldHideReferrer(const WebURL& url, const WebString& referrer)
71 return SecurityOrigin::shouldHideReferrer(url, referrer);
  /external/webkit/WebKit/mac/WebView/
WebNavigationData.h 38 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
39 - (NSString *)url;
  /external/webkit/WebKit/win/Interfaces/
IWebIconDatabase.idl 74 @param URL
76 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size;
80 @discussion Returns an icon for a web site URL from memory or disk. nil if none is found.
81 Usually called by a UI element to determine if a site URL has an associated icon.
83 @param URL
86 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
90 @discussion Returns an icon URL for a web site URL from memory or disk. nil if none is found.
91 @param URL
92 - (NSString *)iconURLForURL:(NSString *)URL;
    [all...]
  /external/webkit/WebKit/win/
WebNavigationData.cpp 64 WebNavigationData::WebNavigationData(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource)
66 , m_url(url)
84 WebNavigationData* WebNavigationData::createInstance(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource)
86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource);
93 HRESULT WebNavigationData::url(BSTR* url) function in class:WebNavigationData
95 if (!url)
97 *url = BString(m_url).release();
WebResource.cpp 41 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WebCore::String& mimeType, const WebCore::String& textEncodingName, const WebCore::String& frameName)
44 , m_url(url)
63 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
102 /* [in] */ BSTR url,
108 m_url = MarshallingHelpers::BSTRToKURL(url);
123 HRESULT STDMETHODCALLTYPE WebResource::URL(
124 /* [retval][out] */ BSTR *url)
126 if (!url) {
131 *url = BString(String(m_url.string())).release();
DefaultPolicyDelegate.cpp 124 BSTR url; local
125 // A file URL shouldn't fall through to here, but if it did,
127 if (SUCCEEDED(request->URL(&url)) && !String(url, SysStringLen(url)).startsWith("file:")) {
128 // FIXME: Open the URL not by means of a webframe, but by handing it over to the system and letting it determine how to open that particular URL scheme. See documentation for [NSWorkspace openURL]
132 SysFreeString(url);
160 BSTR url; local
    [all...]
  /frameworks/base/media/libmediaplayerservice/
TestPlayerStub.cpp 37 const char *kUrlParam = "url=";
52 // @return true if the url scheme is 'test:'
53 bool isTestUrl(const char *url)
55 return url && strncmp(url, kTestUrlScheme, strlen(kTestUrlScheme)) == 0;
79 // * The url to be passed to the real setDataSource impl.
83 // test:<name of the .so>?url=<url for setDataSource>
85 // The value of the url parameter is treated as a string (no
114 // Call setDataSource on the test player with the url in param
    [all...]
  /frameworks/base/tools/layoutlib/bridge/tests/com/android/layoutlib/bridge/
NinePatchTest.java 21 import java.net.URL;
31 URL url = this.getClass().getClassLoader().getResource( local
34 mPatch = NinePatch.load(url, false /* convert */);
  /frameworks/base/test-runner/src/android/test/mock/
MockContentProvider.java 65 public int bulkInsert(Uri url, ContentValues[] initialValues) throws RemoteException {
66 return MockContentProvider.this.bulkInsert(url, initialValues);
70 public IBulkCursor bulkQuery(Uri url, String[] projection, String selection,
77 public int delete(Uri url, String selection, String[] selectionArgs)
79 return MockContentProvider.this.delete(url, selection, selectionArgs);
83 public String getType(Uri url) throws RemoteException {
84 return MockContentProvider.this.getType(url);
88 public Uri insert(Uri url, ContentValues initialValues) throws RemoteException {
89 return MockContentProvider.this.insert(url, initialValues);
93 public AssetFileDescriptor openAssetFile(Uri url, String mode) throws RemoteException
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 44 * Alone with the pattern that is to be matched, a url scheme prefix is also
46 * will have the scheme prepended to the matched text when the clickable url
49 * does not have a url scheme prefix, the supplied scheme will be prepended to
50 * create <code>http://example.com</code> when the clickable url link is
92 * Filters out web URL matches that occur after an at-sign (@). This is
110 * Filters out URL matches that don't have enough digits to be a
131 * to be used in a tel: URL. It does this by removing everything
137 public final String transformUrl(final Matcher match, String url) {
149 * support@example.com. So, when matching against a web url pattern you
175 * into a tel: URL the parentheses, white space, and hyphen need to b
377 String url = makeUrl(m.group(0), new String[] { prefix }, local
435 String url = makeUrl(m.group(0), schemes, m, transformFilter); local
540 String url; field in class:LinkSpec
    [all...]
  /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/
http_request_info.h 21 // The requested URL.
22 GURL url; member in class:net::HttpRequestInfo
24 // The referring URL (if any).

Completed in 365 milliseconds

1 2 3 4 5 6 78 91011>>