HomeSort by relevance Sort by last modified time
    Searched full:headers (Results 251 - 275 of 20118) sorted by null

<<11121314151617181920>>

  /ndk/tests/device/test-stlport/unit/
signal_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
sstream_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stack_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stdarg_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stddef_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stdexcept_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stdio_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
stdlib_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
streambuf_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
string_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
string_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
strstream_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
time_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
utility_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
valarray_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
vector_header_test.cpp 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
wchar_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
wctype_header_test.c 4 * Additionnaly, for C Standard headers that STLport expose, it can also be
5 * used to check that files included by those headers are compatible with
  /external/chromium_org/chrome/common/extensions/docs/static/js/
tabs.js 39 var headers = tabs.getElementsByTagName('header'),
47 for (var i=0; i<headers.length; i++) {
48 if (headers[i] === e.target) {
49 headers[i].classList.remove('unselected');
53 headers[i].classList.add('unselected');
65 var headers = tab.getElementsByTagName('header');
69 if (headers.length==0 || contents.length==0)
72 for (var j=0; j<headers.length; j++) {
74 && tabGroupSelectedValue===headers[j].getAttribute("data-value");
77 headers[j].classList.remove("unselected")
    [all...]
  /external/chromium_org/net/spdy/
spdy_http_utils.cc 27 SpdyHeaderBlock* headers) {
28 if (headers->find(name) == headers->end()) {
29 (*headers)[name] = value;
31 (*headers)[name] += '\0' + value;
37 bool SpdyHeadersToHttpResponse(const SpdyHeaderBlock& headers,
48 it = headers.find(status_key);
49 if (it == headers.end())
56 it = headers.find(version_key);
57 if (it == headers.end()
    [all...]
spdy_header_block.h 16 // A data structure for holding a set of headers from either a
23 const SpdyHeaderBlock* headers,
27 // to |headers|. |event_param| must have been created by
29 // |headers|.
32 SpdyHeaderBlock* headers);
  /frameworks/volley/src/com/android/volley/
NetworkResponse.java 25 * Data and headers returned from {@link Network#performRequest(Request)}.
32 * @param headers Headers returned with this response, or null for none
35 public NetworkResponse(int statusCode, byte[] data, Map<String, String> headers,
39 this.headers = headers;
47 public NetworkResponse(byte[] data, Map<String, String> headers) {
48 this(HttpStatus.SC_OK, data, headers, false);
57 /** Response headers. */
58 public final Map<String, String> headers; field in class:NetworkResponse
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HeadersTest.java 18 import com.squareup.okhttp.Headers;
41 Headers headers = response.headers(); local
42 assertEquals(4, headers.size());
44 assertEquals("no-cache, no-store", headers.get("cache-control"));
45 assertEquals("Cookie2", headers.get("set-cookie"));
46 assertEquals(Protocol.SPDY_3.name.utf8(), headers.get(OkHeaders.SELECTED_PROTOCOL));
47 assertEquals(OkHeaders.SELECTED_PROTOCOL, headers.name(0));
48 assertEquals(Protocol.SPDY_3.name.utf8(), headers.value(0))
67 Headers headers = response.headers(); local
81 Headers headers = response.headers(); local
    [all...]
  /external/chromium_org/net/tools/flip_server/
mem_cache_test.cc 64 ASSERT_EQ("HTTP/1.1", hello->headers()->response_version());
65 ASSERT_EQ("200", hello->headers()->response_code());
66 ASSERT_EQ("OK", hello->headers()->response_reason_phrase());
68 std::distance(hello->headers()->header_lines_begin(),
69 hello->headers()->header_lines_end()));
70 ASSERT_TRUE(hello->headers()->HasHeader("key1"));
71 ASSERT_TRUE(hello->headers()->HasHeader("key2"));
72 ASSERT_TRUE(hello->headers()->HasHeader("transfer-encoding"));
73 ASSERT_TRUE(hello->headers()->HasHeader("connection"));
74 ASSERT_EQ("value1", hello->headers()->GetHeaderPosition("key1")->second)
    [all...]
  /external/chromium_org/net/url_request/
url_request_data_job_unittest.cc 21 scoped_refptr<net::HttpResponseHeaders> headers(
27 GURL("data:,Hello"), &mime_type, &charset, &data, headers.get()));
33 const net::HttpVersion& version = headers->GetParsedHttpVersion();
36 EXPECT_EQ("OK", headers->GetStatusText());
38 EXPECT_TRUE(headers->GetNormalizedHeader("Content-Type", &value));
42 headers->GetNormalizedHeader("Access-Control-Allow-Origin", &value));
50 scoped_refptr<net::HttpResponseHeaders> headers(
56 GURL("bogus"), &mime_type, &charset, &data, headers.get()));
63 scoped_refptr<net::HttpResponseHeaders> headers(
72 &mime_type, &charset, &data, headers.get()))
    [all...]

Completed in 382 milliseconds

<<11121314151617181920>>