HomeSort by relevance Sort by last modified time
    Searched refs:add_header (Results 1 - 25 of 31) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
base.py 26 self.add_header('Content-Type', ctype, **_params)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
base.py 26 self.add_header('Content-Type', ctype, **_params)
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/
alerts.py 31 self.response.headers.add_header('Access-Control-Allow-Origin', '*')
  /external/chromium_org/tools/usb_gadget/
package.py 58 req.add_header('Content-Type', 'multipart/form-data; boundary=foo')
  /external/chromium_org/tools/symsrc/
pefile.py 644 def add_header(self, txt): member in class:Dump
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 257 self.add_header('MIME-Version', '1.0')
259 self.add_header('Content-Type', 'text/plain',
273 self.add_header('Content-Transfer-Encoding', cte)
390 def add_header(self, _name, _value, **_params):
403 msg.add_header('content-disposition', 'attachment', filename='bud.gif')
708 adding a new one with a new boundary parameter via add_header(). The
388 def add_header(self, _name, _value, **_params): member in class:Message
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 145 def add_header(self, _name, _value, **_params): member in class:Headers
155 h.add_header('content-disposition', 'attachment', filename='bud.gif')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 257 self.add_header('MIME-Version', '1.0')
259 self.add_header('Content-Type', 'text/plain',
273 self.add_header('Content-Transfer-Encoding', cte)
390 def add_header(self, _name, _value, **_params):
403 msg.add_header('content-disposition', 'attachment', filename='bud.gif')
708 adding a new one with a new boundary parameter via add_header(). The
388 def add_header(self, _name, _value, **_params): member in class:Message
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 145 def add_header(self, _name, _value, **_params): member in class:Headers
155 h.add_header('content-disposition', 'attachment', filename='bud.gif')
  /external/clang/tools/scan-view/
Reporter.py 106 msg.add_header('Content-Disposition', 'attachment', filename=os.path.basename(path))
  /external/lldb/utils/test/
ras.py 160 msg.add_header('Content-Disposition', 'attachment', filename=filename)
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
Reporter.py 106 msg.add_header('Content-Disposition', 'attachment', filename=os.path.basename(path))
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
Reporter.py 106 msg.add_header('Content-Disposition', 'attachment', filename=os.path.basename(path))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py 417 msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')
528 msg.add_header('First', 'One')
529 msg.add_header('Second', 'Two')
530 msg.add_header('Third', 'Three')
536 msg.add_header('First', 'Eleven')
703 # It'd be great if we could use add_header() here, but that doesn't
    [all...]
test_email_renamed.py 373 msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')
484 msg.add_header('First', 'One')
485 msg.add_header('Second', 'Two')
486 msg.add_header('Third', 'Three')
492 msg.add_header('First', 'Eleven')
639 # It'd be great if we could use add_header() here, but that doesn't
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py 417 msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')
528 msg.add_header('First', 'One')
529 msg.add_header('Second', 'Two')
530 msg.add_header('Third', 'Three')
536 msg.add_header('First', 'Eleven')
703 # It'd be great if we could use add_header() here, but that doesn't
    [all...]
test_email_renamed.py 373 msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')
484 msg.add_header('First', 'One')
485 msg.add_header('Second', 'Two')
486 msg.add_header('Third', 'Three')
492 msg.add_header('First', 'Eleven')
639 # It'd be great if we could use add_header() here, but that doesn't
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 331 h.add_header('foo','bar',baz="spam")
335 h.add_header('Foo','bar',cheese=None)
test_urllib2net.py 187 request.add_header('User-Agent','Test-Agent')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_wsgiref.py 331 h.add_header('foo','bar',baz="spam")
335 h.add_header('Foo','bar',cheese=None)
test_urllib2net.py 187 request.add_header('User-Agent','Test-Agent')
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
__init__.py 319 req.add_header("Proxy-authorization", "Basic " + creds)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 212 self.add_header(key, value)
289 def add_header(self, key, val): member in class:Request
737 req.add_header('Proxy-authorization', 'Basic ' + creds)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 212 self.add_header(key, value)
289 def add_header(self, key, val): member in class:Request
737 req.add_header('Proxy-authorization', 'Basic ' + creds)
    [all...]
  /external/chromium_org/testing/gtest/scripts/
upload.py 167 req.add_header("Host", self.host_override)
169 req.add_header(key, value)
324 req.add_header("Content-Type", content_type)
    [all...]

Completed in 1578 milliseconds

1 2