HomeSort by relevance Sort by last modified time
    Searched refs:max_unencoded (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 104 max_unencoded = max_encoded * 3 // 4
106 for i in range(0, len(header), max_unencoded):
107 base64ed.append(b2a_base64(header[i:i+max_unencoded]))
146 max_unencoded = maxlinelen * 3 // 4
147 for i in range(0, len(s), max_unencoded):
150 enc = b2a_base64(s[i:i + max_unencoded])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 104 max_unencoded = max_encoded * 3 // 4
106 for i in range(0, len(header), max_unencoded):
107 base64ed.append(b2a_base64(header[i:i+max_unencoded]))
146 max_unencoded = maxlinelen * 3 // 4
147 for i in range(0, len(s), max_unencoded):
150 enc = b2a_base64(s[i:i + max_unencoded])

Completed in 100 milliseconds