Home
last modified time | relevance | path

Searched refs:max_line_length (Results 1 – 25 of 31) sorted by relevance

12

/external/google-fruit/extras/scripts/
Danalyze_template_instantiations_clang_diagnostics.py89 self.max_line_length = 0
96 self.max_line_length = len(s)
107 max_line_length = 0
111max_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/
Dcontentmanager.py133 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)
Dpolicy.py207 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.py165 max_line_length = 78 variable in Policy
367 if self.max_line_length is not None:
368 maxlinelen = self.max_line_length
Dgenerator.py97 policy = policy.clone(max_line_length=self.maxheaderlen)
321 self.policy = p.clone(max_line_length=0)
Dmessage.py967 maxheaderlen = policy.max_line_length
/external/python/cpython3/Lib/test/test_email/
Dtest_generator.py97 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))
Dtest_policy.py124 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)
Dtest_headerregistry.py1346 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)),
Dtest_contentmanager.py144 policy = policy.default.clone(max_line_length=60,
557 self.assertEqual(m.as_string(maxheaderlen=self.policy.max_line_length),
/external/wayland/
D.editorconfig10 max_line_length = 80
24 max_line_length = off
/external/arm-trusted-firmware/
D.editorconfig44 max_line_length = 100
72 max_line_length = 79
/external/mesa3d/src/gallium/drivers/freedreno/
D.editorconfig5 max_line_length = 78
/external/mesa3d/src/freedreno/
D.editorconfig5 max_line_length = 78
/external/mesa3d/src/freedreno/vulkan/
D.editorconfig5 max_line_length = 78
/external/libxkbcommon/
D.editorconfig10 max_line_length = 80
/external/python/jinja/
D.editorconfig10 max_line_length = 88
/external/python/markupsafe/
D.editorconfig10 max_line_length = 88
/external/mesa3d/
D.editorconfig14 max_line_length = 78
/external/python/cpython3/Doc/library/
Demail.policy.rst140 >>> 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
Demail.message.rst70 :attr:`~email.policy.EmailPolicy.max_line_length` of the policy. The
90 to the value of *max_line_length* from the policy.
Demail.compat32-message.rst73 must override it explicitly (the value specified for *max_line_length* in
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b1.rst315 If text content lines are longer than policy.max_line_length, always use a
D3.6.2rc1.rst144 If max_line_length=None is specified while using the Compat32 policy, it is
D3.5.4rc1.rst202 If max_line_length=None is specified while using the Compat32 policy, it is

12