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

<<31323334353637383940>>

  /external/webkit/WebCore/xml/
XMLHttpRequest.cpp 295 void XMLHttpRequest::open(const String& method, const KURL& url, bool async, ExceptionCode& ec)
323 m_url = url;
345 void XMLHttpRequest::open(const String& method, const KURL& url, bool async, const String& user, ExceptionCode& ec)
347 KURL urlWithCredentials(url);
353 void XMLHttpRequest::open(const String& method, const KURL& url, bool async, const String& user, const String& password, ExceptionCode& ec)
355 KURL urlWithCredentials(url);
455 // The presence of upload event listeners forces us to use preflighting because POSTing to an URL that does not
456 // permit cross origin requests should look exactly like POSTing to an URL that does not respond at all.
  /external/webkit/WebKit/qt/Api/
qwebview.cpp 221 \image qwebview-url.png
407 Loads the specified \a url and displays it.
409 \note The view remains the same until enough data has arrived to display the new \a url.
411 \sa setUrl(), url(), urlChanged(), QUrl::fromUserInput()
413 void QWebView::load(const QUrl &url)
415 page()->mainFrame()->load(url);
425 \note The view remains the same until enough data has arrived to display the new url.
427 \sa url(), urlChanged()
516 \property QWebView::url
517 \brief the url of the web page currently viewe
531 QUrl QWebView::url() const function in class:QWebView
    [all...]
  /external/webkit/WebKit/win/
WebDownloadCFNet.cpp 94 LOG_ERROR("WebDownload - Failed to create WebDownload from existing connection (%s)", request.url().string().utf8().data());
96 LOG(Download, "WebDownload - Created WebDownload %p from existing connection (%s)", this, request.url().string().utf8().data());
105 void WebDownload::init(const KURL& url, IWebDownloadDelegate* delegate)
110 ResourceRequest request(url);
122 LOG(Download, "WebDownload - Initialized download of url %s in WebDownload %p", url.string().utf8().data(), this);
160 LOG(Download, "WebDownload - initWithRequest complete, started download of url %s", webRequest->resourceRequest().url().string().utf8().data());
312 // FIXME: Do we need a URL or description for this error code?
MarshallingHelpers.cpp 49 BSTR MarshallingHelpers::KURLToBSTR(const KURL& url)
51 return SysAllocStringLen(url.string().characters(), url.string().length());
  /external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/
MovieControllerLayer.m 60 NSURL *url = [[NSBundle bundleForClass:[MovieControllerLayer class]] URLForResource:name withExtension:@"tiff"];
62 if (!url)
65 CGImageSourceRef imageSource = CGImageSourceCreateWithURL((CFURLRef)url, NULL);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 92 String url,
104 return chooseFullPath(context, url, hint, contentDisposition, contentLocation, mimeType,
144 private static String chooseFullPath(Context context, String url, String hint,
149 String filename = chooseFilename(url, hint, contentDisposition, contentLocation,
291 private static String chooseFilename(String url, String hint, String contentDisposition,
342 String decodedUrl = Uri.decode(url);
  /external/webkit/WebCore/dom/
Document.cpp 2353 String url; local
    [all...]
XMLTokenizerLibxml2.cpp 367 static bool shouldAllowExternalLoad(const KURL& url)
369 String urlString = url.string();
371 // On non-Windows platforms libxml asks for this URL, the
376 // On Windows, libxml computes a URL relative to where its DLL resides.
381 // by requesting this URL for every XHTML document.
395 if (!XMLTokenizerScope::currentDocLoader->doc()->securityOrigin()->canRequest(url)) {
396 XMLTokenizerScope::currentDocLoader->printAccessDeniedMessage(url);
408 KURL url(KURL(), uri);
410 if (!shouldAllowExternalLoad(url))
424 docLoader->frame()->loader()->loadResourceSynchronously(url, AllowStoredCredentials, error, response, data)
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Executable.cpp 69 return Error::create(exec, SyntaxError, errMsg, errLine, m_source.provider()->asID(), m_source.provider()->url());
90 return Error::create(exec, SyntaxError, errMsg, errLine, m_source.provider()->asID(), m_source.provider()->url());
100 return Error::create(exec, SyntaxError, errMsg, errLine, m_source.provider()->asID(), m_source.provider()->url());
FunctionConstructor.cpp 100 return throwError(exec, SyntaxError, errMsg, errLine, source.provider()->asID(), source.provider()->url());
  /external/webkit/WebCore/html/
HTMLViewSourceDocument.cpp 166 setBaseElementURL(KURL(url(), value));
289 PassRefPtr<Element> HTMLViewSourceDocument::addLink(const String& url, bool isAnchor)
304 attrs->addAttribute(MappedAttribute::create(hrefAttr, url));
HTMLFormElement.h 95 bool formWouldHaveSecureSubmission(const String& url);
  /external/webkit/WebCore/loader/
ImageDocument.cpp 152 String fileName = decodeURLEscapeSequences(m_doc->url().lastPathComponent());
154 fileName = m_doc->url().host();
203 imageElement->setSrc(url().string());
  /external/webkit/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/
TestNetscapePlugin.cpp 173 notifyStream(obj, stream->url, stream->headers);
237 webkit_test_plugin_url_notify(NPP instance, const char* url, NPReason reason, void* notifyData)
244 handleCallback(obj, url, reason, notifyData);
  /external/webkit/WebKitTools/DumpRenderTree/win/
FrameLoadDelegate.cpp 262 /* [in] */ BSTR url,
269 urlSuitableForTestResult(std::wstring(url, ::SysStringLen(url))).c_str());
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.h 190 pid_t pid, const sp<IMediaPlayerClient>& client, const char* url,
194 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat);
235 const char *url,
  /libcore/luni/src/main/java/java/lang/
ClassLoader.java 39 import java.net.URL;
105 // URL[] urls = new URL[paths.length];
108 // urls[i] = new URL("file://" + paths[i]);
149 * Finds the URL of the resource with the specified name. The system class
152 * @return the {@code URL} object for the requested resource or {@code null}
158 public static URL getSystemResource(String resName) {
167 * @return an enumeration of {@code URL} objects containing the requested
174 public static Enumeration<URL> getSystemResources(String resName) throws IOException {
424 * Returns the URL of the resource with the specified name. Thi
484 URL url = getResource(resName); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PolicyTest.java 38 import java.net.URL;
224 URL url = null; local
226 url = new URL("http://localhost");
230 CodeSource cs = new CodeSource(url,
358 new URL("file:" + codeSourceURL),
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 157 private CharSequence formatUrl(CharSequence url) {
158 SpannableString text = new SpannableString(url);
161 0, url.length(),
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmProvider.java 165 throw new IllegalStateException("Unknown URL: " + uri.toString());
186 public String getType(Uri url)
188 switch (URI_MATCHER.match(url)) {
191 Cursor c = query(url, MIME_TYPE_PROJECTION, null, null, null);
200 throw new IllegalStateException("Unknown URL");
305 "Unknown or unsupported URL: " + uri.toString());
  /external/chromium/net/http/
http_network_layer_unittest.cc 80 request_info.url = GURL("http://www.google.com/");
  /external/protobuf/python/
setup.py 120 url = 'http://code.google.com/p/protobuf/', variable
  /external/webkit/WebCore/bindings/js/
ScheduledAction.cpp 146 ScriptSourceCode code(m_code, workerContext->url());
  /external/webkit/WebCore/css/
CSSStyleSheet.h 94 virtual KURL completeURL(const String& url) const;
  /external/webkit/WebCore/platform/graphics/
ImageSource.h 170 void setURL(const String& url);

Completed in 1046 milliseconds

<<31323334353637383940>>