HomeSort by relevance Sort by last modified time
    Searched defs:HTTP (Results 1 - 19 of 19) sorted by null

  /external/apache-http/src/org/apache/http/
HttpVersion.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/HttpVersion.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
28 * <http://www.apache.org/>.
32 package org.apache.http;
37 * Represents an HTTP version, as specified in RFC 2616.
44 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
54 public static final String HTTP = "HTTP";
    [all...]
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/entity/UrlEncodedFormEntity.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
27 * <http://www.apache.org/>.
31 package org.apache.http.client.entity;
35 import org.apache.http.NameValuePair;
36 import org.apache.http.client.utils.URLEncodedUtils;
37 import org.apache.http.entity.StringEntity;
38 import org.apache.http.protocol.HTTP;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.h 43 HTTP,
75 // http://web.archive.org/web/20060424005037/wp.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
HTTP.java 30 * Convert an HTTP header to a JSONObject and back.
34 public class HTTP {
40 * Convert an HTTP header string into a JSONObject. It can be a request
45 * "HTTP-Version": "HTTP/1.1" (for example)
49 * "HTTP-Version": "HTTP/1.1" (for example),
54 * the HTTP field names as JSON names, so that <pre>
66 * @param string An HTTP header string.
77 if (t.toUpperCase().startsWith("HTTP")) {
    [all...]
Test.java 278 j = XML.toJSONObject("<!DOCTYPE bCard 'http://www.cs.caltech.edu/~adam/schemas/bCard'><bCard><?xml default bCard firstname = '' lastname = '' company = '' email = '' homepage = ''?><bCard firstname = 'Rohit' lastname = 'Khare' company = 'MCI' email = 'khare@mci.net' homepage = 'http://pest.w3.org/'/><bCard firstname = 'Adam' lastname = 'Rifkin' company = 'Caltech Infospheres Project' email = 'adam@cs.caltech.edu' homepage = 'http://www.cs.caltech.edu/~adam/'/></bCard>");
298 j = HTTP.toJSONObject("GET / HTTP/1.0\nAccept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*\nAccept-Language: en-us\nUser-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90; T312461; Q312461)\nHost: www.nokko.com\nConnection: keep-alive\nAccept-encoding: gzip, deflate\n");
300 System.out.println(HTTP.toString(j));
303 j = HTTP.toJSONObject("HTTP/1.1 200 Oki Doki\nDate: Sun, 26 May 2002 17:38:52 GMT\nServer: Apache/1.3.23 (Unix) mod_perl/1.26\nKeep-Alive: timeout=15, max=100\nConnection: Keep-Alive\nTransfer-Encoding: chunked\nContent-Type: text/html\n");
305 System.out.println(HTTP.toString(j));
308 j = new JSONObject("{nix: null, nux: false, null: 'null', 'Request-URI': '/', Method: 'GET', 'HTTP-Version': 'HTTP/1.0'}")
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HTTP.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
28 * <http://www.apache.org/>.
32 package org.apache.http.protocol;
35 * Constants and static helpers related to the HTTP protocol.
44 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
48 public final class HTTP {
    [all...]
  /external/chromium_org/net/http/
http_proxy_client_socket_pool_unittest.cc 5 #include "net/http/http_proxy_client_socket_pool.h"
14 #include "net/http/http_network_session.h"
15 #include "net/http/http_proxy_client_socket.h"
16 #include "net/http/http_response_headers.h"
37 HTTP,
44 : proxy_type(HTTP),
181 GURL proxy_url(GetParam().proxy_type == HTTP ?
182 (std::string("http://") + kHttpProxyHost) :
193 if (GetParam().proxy_type != HTTP)
204 if (GetParam().proxy_type == HTTP)
    [all...]
http_stream_parser_unittest.cc 5 #include "net/http/http_stream_parser.h"
24 #include "net/http/http_request_headers.h"
25 #include "net/http/http_request_info.h"
26 #include "net/http/http_response_headers.h"
27 #include "net/http/http_response_info.h"
190 // This is a regression test for http://crbug.com/132243
200 "GET /one.html HTTP/1.1\r\n"
215 MockRead(ASYNC, 5, "HTTP/1.1 200 OK\r\n"),
243 request_info.url = GURL("http://localhost");
259 rv = parser.SendRequest("GET /one.html HTTP/1.1\r\n", request_headers
    [all...]
  /development/apps/Development/src/com/android/development/
Connectivity.java 9 ** http://www.apache.org/licenses/LICENSE-2.0
76 import org.apache.http.client.HttpClient;
77 import org.apache.http.client.methods.HttpGet;
78 import org.apache.http.conn.params.ConnRouteParams;
79 import org.apache.http.params.BasicHttpParams;
80 import org.apache.http.params.HttpParams;
81 import org.apache.http.HttpResponse;
82 import org.apache.http.impl.client.DefaultHttpClient;
568 onRoutedRequest(HTTP);
576 private final static int HTTP = 2
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar 
httpcore-4.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jar 
org.eclipse.ecf_3.1.0.v20100529-0735.jar 
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 

Completed in 134 milliseconds