Home
last modified time | relevance | path

Searched refs:line_break (Results 1 – 10 of 10) sorted by relevance

/third_party/PyYAML/lib/yaml/
Ddumper.py14 allow_unicode=None, line_break=None, argument
19 allow_unicode=allow_unicode, line_break=line_break)
32 allow_unicode=None, line_break=None, argument
37 allow_unicode=allow_unicode, line_break=line_break)
50 allow_unicode=None, line_break=None, argument
55 allow_unicode=allow_unicode, line_break=line_break)
Dcyaml.py56 allow_unicode=None, line_break=None, argument
61 allow_unicode=allow_unicode, line_break=line_break,
73 allow_unicode=None, line_break=None, argument
78 allow_unicode=allow_unicode, line_break=line_break,
90 allow_unicode=None, line_break=None, argument
95 allow_unicode=allow_unicode, line_break=line_break,
D__init__.py159 allow_unicode=None, line_break=None): argument
169 allow_unicode=allow_unicode, line_break=line_break)
180 allow_unicode=None, line_break=None, argument
195 allow_unicode=allow_unicode, line_break=line_break,
218 allow_unicode=None, line_break=None, argument
235 allow_unicode=allow_unicode, line_break=line_break,
Dscanner.py1002 line_break = ''
1013 line_break = self.scan_line_break()
1021 if folded and line_break == '\n' \
1026 chunks.append(line_break)
1044 chunks.append(line_break)
1241 line_break = self.scan_line_break()
1243 if line_break != '\n':
1244 chunks.append(line_break)
1323 line_break = self.scan_line_break()
1339 if line_break != '\n':
[all …]
Demitter.py39 allow_unicode=None, line_break=None): argument
92 if line_break in ['\r', '\n', '\r\n']:
93 self.best_line_break = line_break
/third_party/skia/third_party/externals/spirv-tools/test/
Dtext_advance_test.cpp92 const spv_position_t line_break = {1u, 5u, 5u}; in TEST() local
93 data.setPosition(line_break); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dtext_advance_test.cpp92 const spv_position_t line_break = {1u, 5u, 5u}; in TEST() local
93 data.setPosition(line_break); in TEST()
/third_party/spirv-tools/test/
Dtext_advance_test.cpp92 const spv_position_t line_break = {1u, 5u, 5u}; in TEST() local
93 data.setPosition(line_break); in TEST()
/third_party/PyYAML/yaml/
D_yaml.pxd255 yaml_break_t line_break)
D_yaml.pyx906 allow_unicode=None, line_break=None, encoding=None, argument
924 if line_break is not None:
925 if line_break == '\r':
927 elif line_break == '\n':
929 elif line_break == '\r\n':