HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 151 - 175 of 1125) sorted by null

1 2 3 4 5 67 8 91011>>

  /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 */);
  /external/webkit/WebCore/platform/chromium/
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...]
  /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/webkit/WebCore/bindings/
ScriptControllerBase.cpp 46 return executeScript(ScriptSourceCode(script, forceUserGesture ? KURL() : m_frame->loader()->url()));
68 bool ScriptController::executeIfJavaScriptURL(const KURL& url, bool userGesture, bool replaceDocument)
70 if (!protocolIsJavaScript(url))
81 String script = decodeURLEscapeSequences(url.string().substring(javascriptSchemeLength));
  /external/webkit/WebCore/html/
HTMLPlugInImageElement.h 36 const String& url() const { return m_url; } function in class:WebCore::HTMLPlugInImageElement
  /external/webkit/WebCore/loader/
CachedXSLStyleSheet.cpp 39 CachedXSLStyleSheet::CachedXSLStyleSheet(const String &url)
40 : CachedResource(url, XSLStyleSheet)
51 c->setXSLStyleSheet(m_url, m_response.url(), m_sheet);
86 c->setXSLStyleSheet(m_url, m_response.url(), m_sheet);
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheResource.cpp 34 ApplicationCacheResource::ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> data)
35 : SubstituteResource(url, response, data)
60 m_estimatedSizeInStorage += url().string().length() * sizeof(UChar);
62 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar);
  /external/webkit/WebCore/notifications/
Notification.h 58 static Notification* create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider) { return new Notification(url, context, ec, provider); }
67 KURL url() { return m_notificationURL; } function in class:WebCore::Notification
82 Notification(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider);
  /external/webkit/WebCore/page/
ContextMenuClient.h 47 virtual void downloadURL(const KURL& url) = 0;
History.idl 44 [Custom] void pushState(in any data, in DOMString title, in optional DOMString url)
46 [Custom] void replaceState(in any data, in DOMString title, in optional DOMString url)
  /external/webkit/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/WebCore/platform/haiku/
TemporaryLinkStubs.cpp 52 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String &challengeString, const KURL &url)

Completed in 489 milliseconds

1 2 3 4 5 67 8 91011>>