Home
last modified time | relevance | path

Searched refs:m_translate_out (Results 1 – 6 of 6) sorted by relevance

/dports/textproc/enchant/enchant-1.6.0/src/ispell/
H A Dispell_checker.cpp82 m_translate_out = g_iconv_open("UTF-8", inEncoding); in try_autodetect_charset()
114 m_translate_out(G_ICONV_INVALID) in ISpellChecker()
141 if (g_iconv_is_valid(m_translate_out)) in ~ISpellChecker()
142 g_iconv_close(m_translate_out); in ~ISpellChecker()
143 m_translate_out = G_ICONV_INVALID; in ~ISpellChecker()
244 if (!g_iconv_is_valid(m_translate_out)) in suggestWord()
431 if (g_iconv_is_valid(m_translate_in) && g_iconv_is_valid(m_translate_out)) in setDictionaryEncoding()
458 m_translate_out = g_iconv_open("UTF-8", "UTF-8"); in setDictionaryEncoding()
461 if (g_iconv_is_valid(m_translate_in) && g_iconv_is_valid(m_translate_out)) in setDictionaryEncoding()
476 m_translate_out = g_iconv_open("UTF-8", teststring); in setDictionaryEncoding()
[all …]
H A Dlookup.cpp735 m_translate_out = G_ICONV_INVALID; in alloc_ispell_struct()
742 if (g_iconv_is_valid(m_translate_out)) in free_ispell_struct()
743 g_iconv_close (m_translate_out); in free_ispell_struct()
H A Dispell_checker.h240 GIConv m_translate_out; variable
/dports/textproc/enchant2/enchant-2.2.15/providers/
H A Denchant_hunspell.cpp74 GIConv m_translate_out; member in HunspellChecker
87 : apostropheIsWordChar(false), m_translate_in(nullptr), m_translate_out(nullptr), hunspell(nullptr) in HunspellChecker()
96 if (g_iconv_is_valid(m_translate_out)) in ~HunspellChecker()
97 g_iconv_close(m_translate_out); in ~HunspellChecker()
129 || !g_iconv_is_valid(m_translate_out)) in suggestWord()
155 if (static_cast<size_t>(-1) == g_iconv(m_translate_out, &in, &len_in, &out, &len_out)) { in suggestWord()
324 m_translate_out = g_iconv_open("UTF-8", enc); in requestDictionary()
/dports/editors/gedit/gedit-40.1/build-aux/osx/build/modulesets/patches/enchant/
H A Denchant-gsize.patch50 - if ((size_t)-1 == g_iconv(m_translate_out, &In, &len_in, &Out, &len_out)) {
51 + if ((gsize)-1 == g_iconv(m_translate_out, &In, &len_in, &Out, &len_out)) {
93 - if ((size_t)-1 == g_iconv(m_translate_out, &in, &len_in, &out, &len_out)) {
94 + if ((gsize)-1 == g_iconv(m_translate_out, &in, &len_in, &out, &len_out)) {
/dports/textproc/enchant/enchant-1.6.0/src/myspell/
H A Dmyspell_checker.cpp74 GIConv m_translate_out; member in MySpellChecker
138 : m_translate_in(G_ICONV_INVALID), m_translate_out(G_ICONV_INVALID), myspell(0), m_broker(broker) in MySpellChecker()
147 if (g_iconv_is_valid(m_translate_out)) in ~MySpellChecker()
148 g_iconv_close(m_translate_out); in ~MySpellChecker()
180 || !g_iconv_is_valid(m_translate_out)) in suggestWord()
206 if ((size_t)-1 == g_iconv(m_translate_out, &in, &len_in, &out, &len_out)) { in suggestWord()
433 m_translate_out = g_iconv_open("UTF-8", enc); in requestDictionary()