Home
last modified time | relevance | path

Searched refs:convert_text (Results 1 – 25 of 72) sorted by relevance

123

/dports/devel/py-gapic-generator/gapic-generator-0.35.10/tests/unit/utils/
H A Dtest_rst.py23 with mock.patch.object(pypandoc, 'convert_text') as convert_text:
25 assert convert_text.call_count == 0
29 with mock.patch.object(pypandoc, 'convert_text') as convert_text:
32 assert convert_text.call_count == 1
33 assert convert_text.mock_calls[0][1][1] == 'rst'
38 with mock.patch.object(pypandoc, 'convert_text') as convert_text:
41 assert convert_text.call_count == 0
45 with mock.patch.object(pypandoc, 'convert_text') as convert_text:
48 assert convert_text.call_count == 0
55 assert convert_text.call_count == 0
[all …]
/dports/textproc/py-pypandoc/pypandoc-1.5/
H A Dtests.py153 pypandoc.convert_text("ok", format='md', to='invalid')
159 pypandoc.convert_text("ok", format='invalid', to='rest')
207 received = pypandoc.convert_text('# some title', 'rst', format='md')
211 received = pypandoc.convert_text('# some title', 'rst', format='md')
220 received_without_extension = pypandoc.convert_text(input,
245 pypandoc.convert_text('# some title\n', to='odf', format='md',
297 written = pypandoc.convert_text(u'<h1>üäöîôû</h1>', 'md', format='html')
301 written = pypandoc.convert_text(bytes, 'md', format='html')
312 pypandoc.convert_text(bytes, 'md', format='html')
347 pypandoc.convert_text('# some title\n', to='pdf', format='md')
[all …]
/dports/science/py-pydicom/pydicom-2.2.2/pydicom/tests/
H A Dtest_values.py10 convert_text, convert_single_string, convert_AE_string
60 assert 'Dionysios is Διονυσιος' == convert_text(bytestring, encodings)
69 assert ['Buc^Jérôme', 'Διονυσιος', 'Люкceмбypг'] == convert_text(
97 assert 'Value ending with spaces' == convert_text(bytestring)
100 assert ['Values', 'with spaces'] == convert_text(bytestring)
104 assert 'Value ending with zeros' == convert_text(bytestring)
107 assert ['Values', 'with zeros'] == convert_text(bytestring)
/dports/x11/kitty/kitty-0.23.1/kitty_tests/
H A Dhints.py12 from kittens.hints.main import parse_hints_args, functions_for, mark, convert_text
17 text = convert_text(text, cols)
35 from kittens.hints.main import parse_hints_args, functions_for, mark, convert_text
40 text = convert_text(text, cols)
/dports/emulators/mess/mame-mame0226/plugins/data/
H A Dbutton_char.lua126 local convert_text =
239 …str = str:gsub("@(%g+)", function(s) if convert_text[s] then return utf8.char(convert_text[s] + 0x…
/dports/emulators/mame/mame-mame0226/plugins/data/
H A Dbutton_char.lua126 local convert_text =
239 …str = str:gsub("@(%g+)", function(s) if convert_text[s] then return utf8.char(convert_text[s] + 0x…
/dports/misc/translate/translate/
H A Dtranslate98 my $convert_text = uri_escape($ARGV[0]);
100 . $convert_text
/dports/games/sea-defender/Sea-Defender-d628051/utils/
H A Dfile2c.rb25 def convert_text(f,fout) method
40 convert_text(f,fout)
/dports/textproc/mdbook/mdBook-0.4.13/src/utils/
H A Dmod.rs195 convert_text: bool, field
202 convert_text: true, in new()
213 self.convert_text = false; in convert()
217 self.convert_text = true; in convert()
220 Event::Text(ref text) if self.convert_text => { in convert()
/dports/textproc/mdbook-linkcheck/mdbook-linkcheck-0.7.6/cargo-crates/mdbook-0.4.13/src/utils/
H A Dmod.rs195 convert_text: bool, field
202 convert_text: true, in new()
213 self.convert_text = false; in convert()
217 self.convert_text = true; in convert()
220 Event::Text(ref text) if self.convert_text => { in convert()
/dports/lang/rust/rustc-1.58.1-src/vendor/mdbook/src/utils/
H A Dmod.rs195 convert_text: bool, field
202 convert_text: true, in new()
213 self.convert_text = false; in convert()
217 self.convert_text = true; in convert()
220 Event::Text(ref text) if self.convert_text => { in convert()
/dports/comms/owfs/owfs-3.2p4/module/owlib/src/c/
H A Dow_1991.c413 char convert_text[ text_length + 1 ] ; in ToPassword() local
415 memset( convert_text, '0', text_length ) ; in ToPassword()
416 convert_text[text_length] = '\0' ; in ToPassword()
426 strcpy( & convert_text[ text_length - strlen(text) ] , text ) ; in ToPassword()
427 string2bytes( convert_text, psw, _DS1991_PASSWORD_LENGTH ) ; in ToPassword()
/dports/science/py-pydicom/pydicom-2.2.2/pydicom/
H A Dvalues.py501 def convert_text( function
803 'LO': convert_text,
812 'SH': convert_text,
819 'UC': convert_text,
/dports/mail/horde-imp/imp-6.2.27/lib/Mime/Viewer/
H A DHtml.php151 $convert_text = ($view == $registry::VIEW_MINIMAL) ||
152 $injector->getInstance('Horde_Variables')->convert_text;
157 if ($inline && !$convert_text) {
207 if ($convert_text) {
/dports/science/py-pydicom/pydicom-2.2.2/doc/reference/
H A Delem.values.rst27 convert_text
/dports/devel/py-gapic-generator/gapic-generator-0.35.10/gapic/utils/
H A Drst.py52 answer = pypandoc.convert_text(text, 'rst',
/dports/emulators/mess/mame-mame0226/src/emu/ui/
H A Dcmddata.h289 static fix_strings_t convert_text[] = variable
/dports/emulators/mame/mame-mame0226/src/emu/ui/
H A Dcmddata.h289 static fix_strings_t convert_text[] = variable
/dports/devel/py-pytest/pytest-4.6.11/scripts/
H A Dpublish_gh_release_notes.py59 return pypandoc.convert_text(text, "md", format="rst")
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/pytest/scripts/
H A Dpublish-gh-release-notes.py64 return pypandoc.convert_text(
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/pytest/scripts/
H A Dpublish-gh-release-notes.py64 return pypandoc.convert_text(
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/pytest/scripts/
H A Dpublish-gh-release-notes.py64 return pypandoc.convert_text(
/dports/devel/py-trimesh/trimesh-3.5.25/trimesh/path/exchange/
H A Ddxf.py238 def convert_text(e): function
451 convert_text(dict(chunk_raw))
666 def convert_text(txt, vertices): function
698 'Text': convert_text,
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/conversion/plugins/
H A Dpdf_output.py189 self.convert_text(oeb_book)
235 def convert_text(self, oeb_book): member in PDFOutput
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/html2runes-1.0.1/src/
H A Dmarkdown.rs48 Text(ref text) => convert_text(text, &mut self.buf, &mut self.prefix), in convert_html_into_buffer()
138 fn convert_text( in convert_text() function

123