Searched refs:max_line_length (Results 1 – 25 of 33) sorted by relevance
12
/third_party/python/Lib/email/ |
D | contentmanager.py | 133 def _encode_base64(data, max_line_length): argument 135 unencoded_bytes_per_line = max_line_length // 4 * 3 149 if max((len(x) for x in lines), default=0) <= policy.max_line_length: 158 policy.max_line_length) 173 policy.max_line_length) 175 data = _encode_base64(embedded_body(lines), policy.max_line_length) 233 data = _encode_base64(data, max_line_length=msg.policy.max_line_length)
|
D | policy.py | 207 maxlen = self.max_line_length if self.max_line_length else sys.maxsize 223 HTTP = default.clone(linesep='\r\n', max_line_length=None)
|
D | _policybase.py | 165 max_line_length = 78 variable in Policy 367 if self.max_line_length is not None: 368 maxlinelen = self.max_line_length
|
D | generator.py | 97 policy = policy.clone(max_line_length=self.maxheaderlen) 321 self.policy = p.clone(max_line_length=0)
|
D | message.py | 967 maxheaderlen = policy.max_line_length
|
/third_party/python/Lib/test/test_email/ |
D | test_generator.py | 97 g = self.genclass(s, policy=self.policy.clone(max_line_length=n)) 105 policy=self.policy.clone(max_line_length=10)) 113 max_line_length=n)) 121 max_line_length=n)) 168 g = self.genclass(s, policy=policy.compat32.clone(max_line_length=None)) 191 g = self.genclass(s, policy=self.policy.clone(max_line_length=33)) 215 g = self.genclass(s, policy=self.policy.clone(max_line_length=20))
|
D | test_policy.py | 124 p1 = email.policy.default.clone(max_line_length=100) 125 p2 = email.policy.default.clone(max_line_length=50) 127 expected.update(max_line_length=50) 131 expected.update(max_line_length=100) 144 p1 = email.policy.default.clone(max_line_length=0) 145 p2 = email.policy.default.clone(max_line_length=None) 254 policy = email.policy.default.clone(max_line_length=20) 276 policy = email.policy.default.clone(max_line_length=maxlen)
|
D | test_headerregistry.py | 1362 self.assertEqual(h.fold(policy=policy.default.clone(max_line_length=40)), 1646 h.fold(policy=policy.default.clone(max_line_length=20)), 1667 h.fold(policy=policy.default.clone(max_line_length=20)), 1683 h.fold(policy=policy.default.clone(max_line_length=20)), 1705 h.fold(policy=policy.default.clone(max_line_length=35)), 1714 h.fold(policy=policy.default.clone(max_line_length=60)), 1754 h.fold(policy=policy.default.clone(max_line_length=20)), 1762 h.fold(policy=policy.default.clone(max_line_length=20)), 1768 h.fold(policy=policy.default.clone(max_line_length=30)), 1775 h.fold(policy=policy.default.clone(max_line_length=20)),
|
D | test_contentmanager.py | 144 policy = policy.default.clone(max_line_length=60, 557 self.assertEqual(m.as_string(maxheaderlen=self.policy.max_line_length),
|
/third_party/mesa3d/src/amd/vulkan/ |
D | .editorconfig | 4 max_line_length = 100
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | .editorconfig | 5 max_line_length = 78
|
/third_party/mesa3d/src/freedreno/ |
D | .editorconfig | 5 max_line_length = 78
|
/third_party/mesa3d/src/imagination/ |
D | .editorconfig | 2 max_line_length = 80
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | .editorconfig | 5 max_line_length = 78
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | .editorconfig | 5 max_line_length = 80
|
/third_party/rust/crates/strsim-rs/ |
D | .editorconfig | 11 max_line_length = 80
|
/third_party/jinja2/ |
D | .editorconfig | 10 max_line_length = 88
|
/third_party/markupsafe/ |
D | .editorconfig | 10 max_line_length = 88
|
/third_party/mesa3d/ |
D | .editorconfig | 14 max_line_length = 78
|
/third_party/python/Doc/library/ |
D | email.policy.rst | 140 >>> policy100 = policy.compat32.clone(max_line_length=100) 141 >>> policy80 = policy.compat32.clone(max_line_length=80) 143 >>> apolicy.max_line_length 146 >>> apolicy.max_line_length 167 .. attribute:: max_line_length 409 ``max_line_length`` will be refolded 544 ``SMTP`` except that ``max_line_length`` is set to ``None`` (unlimited). 628 each resulting line to the ``max_line_length``. Non-ASCII binary data are 636 each resulting line to the ``max_line_length``. If ``cte_type`` is
|
D | email.message.rst | 70 :attr:`~email.policy.EmailPolicy.max_line_length` of the policy. The 90 to the value of *max_line_length* from the policy.
|
/third_party/ltp/scripts/ |
D | checkpatch.pl | 59 my $max_line_length = 100; 108 --max-line-length=n set the maximum line length, (default $max_line_length) 307 'max-line-length=i' => \$max_line_length, 3668 if ($line =~ /^\+/ && $length > $max_line_length) { 3676 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3698 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3703 length(expand_tabs(substr($line, 1, length($line) - length($1) - 1))) <= $max_line_length) { 3712 "line length of $length exceeds $max_line_length columns\n" . $herecurr);
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0b1.rst | 315 If text content lines are longer than policy.max_line_length, always use a
|
D | 3.6.2rc1.rst | 144 If max_line_length=None is specified while using the Compat32 policy, it is
|
D | 3.5.4rc1.rst | 202 If max_line_length=None is specified while using the Compat32 policy, it is
|
12