Searched refs:max_line_length (Results 1 – 25 of 31) sorted by relevance
12
/external/google-fruit/extras/scripts/ |
D | analyze_template_instantiations_clang_diagnostics.py | 89 self.max_line_length = 0 96 self.max_line_length = len(s) 107 max_line_length = 0 111 …max_line_length = max(max_line_length, last_line_length + node.first_line_length, node.max_line_le… 115 max_line_length = max(max_line_length, last_line_length) 120 self.max_line_length = max_line_length 125 max_line_length = 80 variable 231 …single_line_layout is not None and node_with_single_line_layout.max_line_length <= max_line_length:
|
/external/python/cpython3/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
|
/external/python/cpython3/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 | 1346 self.assertEqual(h.fold(policy=policy.default.clone(max_line_length=40)), 1630 h.fold(policy=policy.default.clone(max_line_length=20)), 1651 h.fold(policy=policy.default.clone(max_line_length=20)), 1667 h.fold(policy=policy.default.clone(max_line_length=20)), 1689 h.fold(policy=policy.default.clone(max_line_length=35)), 1698 h.fold(policy=policy.default.clone(max_line_length=60)), 1738 h.fold(policy=policy.default.clone(max_line_length=20)), 1746 h.fold(policy=policy.default.clone(max_line_length=20)), 1752 h.fold(policy=policy.default.clone(max_line_length=30)), 1759 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),
|
/external/wayland/ |
D | .editorconfig | 10 max_line_length = 80 24 max_line_length = off
|
/external/arm-trusted-firmware/ |
D | .editorconfig | 44 max_line_length = 100 72 max_line_length = 79
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | .editorconfig | 5 max_line_length = 78
|
/external/mesa3d/src/freedreno/ |
D | .editorconfig | 5 max_line_length = 78
|
/external/mesa3d/src/freedreno/vulkan/ |
D | .editorconfig | 5 max_line_length = 78
|
/external/libxkbcommon/ |
D | .editorconfig | 10 max_line_length = 80
|
/external/python/jinja/ |
D | .editorconfig | 10 max_line_length = 88
|
/external/python/markupsafe/ |
D | .editorconfig | 10 max_line_length = 88
|
/external/mesa3d/ |
D | .editorconfig | 14 max_line_length = 78
|
/external/python/cpython3/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.
|
D | email.compat32-message.rst | 73 must override it explicitly (the value specified for *max_line_length* in
|
/external/python/cpython3/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