Searched refs:header_str (Results 1 – 9 of 9) sorted by relevance
/external/python/google-api-python-client/samples/prediction/ |
D | prediction.py | 66 header_str = '=' 67 header_line = header_str * len(line)
|
/external/python/oauth2client/tests/ |
D | test_transport.py | 116 header_str = {b'key': b'True'} 119 self.assertEqual(result, header_str)
|
/external/webrtc/webrtc/base/ |
D | httpbase.cc | 32 const char* const header_str = ToString(header); in MatchHeader() local 33 const size_t header_len = strlen(header_str); in MatchHeader() 34 return (len == header_len) && (_strnicmp(str, header_str, header_len) == 0); in MatchHeader()
|
/external/autotest/client/cros/power/ |
D | power_dashboard.py | 164 header_str = row_indent + "['" + "', '".join(header) + "']" 165 data_str_list.append(header_str)
|
/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 508 header_str = info.as_string() 511 header_str = info.as_string() 513 header_str = re.sub("\r(?!\n)|(?<!\r)\n", "\r\n", header_str) 515 [status_header.encode("utf-8"), header_str.encode("utf-8"), content]
|
/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 568 header_str = info.as_string() 570 header_str = re.sub("\r(?!\n)|(?<!\r)\n", "\r\n", header_str) 571 text = "".join([status_header, header_str, content])
|
/external/python/cpython3/Lib/ |
D | nntplib.py | 167 def decode_header(header_str): argument 171 for v, enc in _email_decode_header(header_str):
|
/external/python/cpython3/Lib/http/ |
D | client.py | 900 header_str = "%s: %s\r\n" % (header, value) 901 header_bytes = header_str.encode("latin-1")
|
/external/python/cpython3/Doc/library/ |
D | nntplib.rst | 555 .. function:: decode_header(header_str) 558 *header_str* must be a :class:`str` object. The unescaped value is
|