/external/webkit/WebKitTools/WinLauncher/ |
WinLauncher.h | 84 /* [in] */ BSTR url,
|
/frameworks/base/core/java/android/net/http/ |
RequestHandle.java | 61 public RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, 73 mUrl = url; 85 public RequestHandle(RequestQueue requestQueue, String url, WebAddress uri, 89 this(requestQueue, url, uri, method, headers, bodyProvider, bodyLength, 141 * @param redirectTo URL to redirect to 143 * @param cacheHeaders Cache header for redirect URL 183 // update the "Cookie" header based on the redirected url 213 // Update the cache headers for this URL
|
/frameworks/base/include/media/ |
PVPlayer.h | 43 const char *url, const KeyedVector<String8, String8> *headers);
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
ProtectionDomainTest.java | 30 import java.net.URL; 53 private URL url = null; field in class:ProtectionDomainTest 69 url = new URL("http://localhost"); 73 cs = new CodeSource(url, (java.security.cert.Certificate[]) null); 76 classldr = URLClassLoader.newInstance(new URL[] { url });
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
Util.java | 276 // which crashes the Browser when opening this kind of URL. So, we open 288 String url = String.format("http://maps.google.com/maps?f=q&q=(%s,%s)", latitude, longitude); local 290 Intent mapsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)).setComponent(compName); 295 String url = String.format("geo:%s,%s", latitude, longitude); local 296 Intent mapsIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
/cts/tests/src/android/content/cts/ |
MockContentProvider.java | 112 throw new IllegalArgumentException("Unknown URL " + uri); 132 throw new IllegalArgumentException("Unknown URL " + uri); 161 throw new IllegalArgumentException("Unknown URL " + uri); 168 Uri url = ContentUris.withAppendedId(testUri, rowID); local 169 getContext().getContentResolver().notifyChange(url, null); 170 return url; 204 throw new IllegalArgumentException("Unknown URL " + uri); 252 throw new IllegalArgumentException("Unknown URL " + uri);
|
/external/chromium/net/base/ |
filter.cc | 94 GURL url; local 95 success = filter_context.GetURL(&url); 97 FilePath filename = FilePath().AppendASCII(url.ExtractFileName());
|
/external/chromium/net/flip/ |
flip_session.cc | 153 (*headers)["url"] = info.url.spec(); 300 const GURL& url = request.url; local 301 const std::string& path = url.PathForRequest(); 315 // Check if we have a pending push stream for this url. 340 LOG(INFO) << "FlipStream: Creating stream " << stream_id << " for " << url; local 366 LOG(INFO) << "FETCHING: " << request.url.spec(); 484 socket, "" /* request_->url.HostNoBrackets() */ , ssl_config_); 884 // Verify that the response had a URL for us 965 std::string url = content.substr(start, end - start); local [all...] |
/external/chromium/net/tools/tld_cleanup/ |
tld_cleanup.cc | 142 std::string url = "http://"; local 143 url.append(*domain); 144 GURL gurl(url);
|
/external/chromium/net/url_request/ |
url_request.h | 47 // A class representing the asynchronous load of a data stream from an URL. 142 // original URL, the destination of the redirect is provided in 'new_url'. 144 // false, then the redirect will be followed, and the request's URL will be 145 // changed to the new URL. Otherwise if the delegate does not cancel the 208 // Initialize an URL request. 209 URLRequest(const GURL& url, Delegate* delegate); 247 // Returns true if the url can be handled by URLRequest. False otherwise. 250 static bool IsHandledURL(const GURL& url); 252 // The original url is the url used to initialize the request, and it ma 255 const GURL& url() const { return url_; } function in class:URLRequest [all...] |
/external/quake/src/com/android/quake/ |
DownloaderActivity.java | 28 import java.net.URL; 77 * @param fileConfigUrl The URL of the download configuration URL. 806 private long getSize(String url) throws ClientProtocolException, 808 url = normalizeUrl(url); 809 Log.i(LOG_TAG, "Head " + url); 810 HttpHead httpGet = new HttpHead(url); 824 private String normalizeUrl(String url) throws MalformedURLException { 825 return (new URL(new URL(mFileConfigUrl), url)).toString() [all...] |
/external/webkit/WebCore/loader/ |
CachedImage.cpp | 53 CachedImage::CachedImage(const String& url) 54 : CachedResource(url, ImageResource) 257 m_image->setURL(url());
|
FrameLoaderClient.h | 220 virtual PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, 229 virtual ObjectContentType objectContentType(const KURL& url, const String& mimeType) = 0; 244 virtual void dispatchDidReceiveTouchIconURL(const String& url, bool precomposed) = 0;
|
/external/webkit/WebCore/platform/graphics/win/ |
FontDatabase.cpp | 83 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateFromFileSystemRepresentation(0, reinterpret_cast<const UInt8*>(plistPath.data()), plistPath.length(), false)); 84 if (!url) 87 RetainPtr<CFReadStreamRef> stream(AdoptCF, CFReadStreamCreateWithFile(0, url.get()));
|
/external/webkit/WebCore/platform/gtk/ |
PasteboardGtk.cpp | 118 void Pasteboard::writeURL(const KURL& url, const String&, Frame* frame) 120 if (url.isEmpty()) 125 CString utf8 = url.string().utf8();
|
/external/webkit/WebCore/websockets/ |
WebSocketChannel.cpp | 54 WebSocketChannel::WebSocketChannel(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) 57 , m_handshake(url, protocol, context) 74 m_handle = SocketStreamHandle::create(m_handshake.url(), this);
|
/external/webkit/WebKit/android/WebCoreSupport/ |
FrameLoaderClientAndroid.h | 179 virtual WTF::PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, 188 virtual ObjectContentType objectContentType(const KURL& url, const String& mimeType); 204 virtual void dispatchDidReceiveTouchIconURL(const String& url, bool precomposed);
|
/external/webkit/WebKit/android/benchmark/ |
Intercept.cpp | 43 ResourceHandle* handle, String url) 46 new MyResourceLoader(handle, url)); 171 MyResourceLoader::create(handle, req.url().string());
|
/external/webkit/WebKit/android/jni/ |
WebStorage.cpp | 64 WebCore::String url = origin->toString(); local 65 jstring jUrl = env->NewString(url.characters(), url.length());
|
/external/webkit/WebKit/chromium/src/ |
WebSearchableFormData.cpp | 68 // Returns true if the submit request results in an HTTP URL. 235 // active. We need to do this, otherwise the URL will not contain the 250 KURL url(frame->loader()->completeURL(action.isNull() ? "" : action)); 252 url.setQuery(formData->flattenToString()); 253 m_url = url;
|
/external/webkit/WebKit/mac/Plugins/ |
WebNetscapePluginView.h | 115 URL:(NSURL *)URL 158 - (NPError)getURLNotify:(const char *)URL target:(const char *)target notifyData:(void *)notifyData; 159 - (NPError)getURL:(const char *)URL target:(const char *)target; 160 - (NPError)postURLNotify:(const char *)URL target:(const char *)target len:(UInt32)len buf:(const char *)buf file:(NPBool)file notifyData:(void *)notifyData; 161 - (NPError)postURL:(const char *)URL target:(const char *)target len:(UInt32)len buf:(const char *)buf file:(NPBool)file; 175 - (NPError)getVariable:(NPNURLVariable)variable forURL:(const char*)url value:(char**)value length:(uint32*)length; 176 - (NPError)setVariable:(NPNURLVariable)variable forURL:(const char*)url value:(const char*)value length:(uint32)length; 180 - (char*)resolveURL:(const char*)url forTarget:(const char*)target;
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebFrameLoaderClient.mm | 172 if (!request.url().isLocalFile()) 174 if (!request.url().string().endsWith("MainPageJavaScript.js")) 312 originalURL = [[history itemAtIndex:-backIndex] URL]; 317 originalURL = [initialURLRequest URL]; 524 void WebFrameLoaderClient::dispatchWillPerformClientRedirect(const KURL& url, double delay, double fireDate) 529 NSURL *cocoaURL = url; 603 // Tell the client we've committed this URL. [all...] |
/external/webkit/WebKitTools/DumpRenderTree/ |
LayoutTestController.h | 45 void addDisallowedURL(JSStringRef url); 62 JSStringRef pathToLocalResource(JSContextRef, JSStringRef url); 65 void queueLoad(JSStringRef url, JSStringRef target);
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
LayoutTestControllerWin.cpp | 82 void LayoutTestController::addDisallowedURL(JSStringRef url) 206 JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url) 208 wstring input(JSStringGetCharactersPtr(url), JSStringGetLength(url)); 229 void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target) 240 if (FAILED(response->URL(&responseURLBSTR))) 245 // FIXME: We should do real relative URL resolution here. 250 wstring wURL = jsStringRefToWString(url); 590 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithString(0, urlString.get(), 0)); 591 if (!url) [all...] |
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
LoadTestsAutoTest.java | 165 private void runTestAndWaitUntilDone(TestShellActivity activity, String url, int timeout, 175 public void timedOut(String url) { 183 intent.putExtra(TestShellActivity.TEST_URL, url);
|