Searched refs:header_value (Results 1 – 17 of 17) sorted by relevance
/external/chromium-trace/catapult/third_party/Paste/tests/test_exceptions/ |
D | test_httpexceptions.py | 11 from paste.response import header_value 73 assert "text/html; charset=utf8" == header_value(saved[0][1], 'content-type') 75 assert "text/html" == header_value(saved[0][1], 'content-type') 76 assert "/bing/foo" == header_value(saved[0][1],'location') 78 assert "text/plain; charset=utf8" == header_value(saved[1][1],'content-type') 79 assert "/bing/foo" == header_value(saved[1][1],'location')
|
/external/chromium-trace/catapult/third_party/Paste/tests/test_auth/ |
D | test_auth_cookie.py | 10 from paste.response import header_value 26 assert not header_value(headers,'Set-Cookie') 32 value = header_value(headers,'Set-Cookie')
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
D | acceptparse.py | 38 def __init__(self, header_value): argument 39 self.header_value = header_value 40 self._parsed = list(self.parse(header_value)) 87 other = other.header_value 100 my_value = self.header_value
|
D | response.py | 861 self._cache_control_obj.header_value = value 862 if self._cache_control_obj.header_value != value: 866 self._cache_control_obj.header_value = value
|
/external/autotest/frontend/tko/ |
D | csv_encoder.py | 60 def _header_string(self, header_value): argument 61 return '/'.join(header_value) 83 first_line = [''] + [self._header_string(header_value) 84 for header_value in column_headers]
|
D | tko_rpc_utils.py | 192 group_dict['header_indices'] = [index_map[header_value] 193 for index_map, header_value
|
/external/chromium-trace/catapult/third_party/Paste/paste/debug/ |
D | wdg_validate.py | 10 from paste.response import header_value 59 v = header_value(headers, 'content-type') or '' 76 str(header_value(headers, 'content-length'))))
|
D | prints.py | 115 content_type = response.header_value(headers, 'content-type')
|
D | profile.py | 71 content_type = response.header_value(headers, 'content-type')
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | gzipper.py | 14 from paste.response import header_value, remove_header 51 ct = header_value(headers,'content-type') 52 ce = header_value(headers,'content-encoding')
|
D | httpexceptions.py | 79 from paste.response import has_header, header_value, replace_header 244 header_value(headers, 'content-type') 325 location = header_value(headers,'location')
|
D | response.py | 98 def header_value(headers, name): function
|
D | wsgilib.py | 14 from paste.response import HeaderDict, has_header, header_value, remove_header
|
/external/chromium-trace/catapult/third_party/Paste/paste/cowbell/ |
D | __init__.py | 5 from paste.response import header_value, remove_header 22 ct = header_value(headers, 'content-type')
|
/external/libmicrohttpd/src/examples/ |
D | mhd2spdy_http.c | 175 const char *header_value; in http_cb_request() local 254 header_value = MHD_lookup_connection_value(connection, in http_cb_request() 258 && (NULL == header_value || 0 != strcmp ("0", header_value)); in http_cb_request()
|
/external/chromium-trace/catapult/third_party/Paste/docs/modules/ |
D | response.txt | 11 .. autofunction:: header_value
|
/external/libchrome/dbus/ |
D | message.cc | 28 const std::string& header_value, in AppendStringHeader() argument 30 if (!header_value.empty()) { in AppendStringHeader() 31 *output += header_name + ": " + header_value + "\n"; in AppendStringHeader() 38 uint32_t header_value, in AppendUint32Header() argument 40 if (header_value != 0) { in AppendUint32Header() 41 *output += (header_name + ": " + base::UintToString(header_value) + "\n"); in AppendUint32Header()
|