Home
last modified time | relevance | path

Searched refs:wordend (Results 1 – 25 of 253) sorted by relevance

1234567891011

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/SpellChecker/
H A DOnlineSpellChecker.cpp214 int wordend = stc->WordEndPosition(wordstart, true); in DoSetIndications() local
215 …if ( wordend > 0 && // Word end has to be > 0 to be valid (< 0 -> invalid pos, == 0 ->… in DoSetIndications()
217 wordend != wordstart && // We do not check single letters... in DoSetIndications()
220 DissectWordAndCheck(stc, wordstart, wordend); in DoSetIndications()
229 if(wordend > pos) in DoSetIndications()
230 pos = wordend; in DoSetIndications()
238 void OnlineSpellChecker::DissectWordAndCheck(cbStyledTextCtrl* stc, int wordstart, int wordend) con… in DissectWordAndCheck()
240 wxString word = stc->GetTextRange(wordstart, wordend); in DissectWordAndCheck()
241 const bool isMultibyte = ((int)word.Length() != wordend - wordstart); in DissectWordAndCheck()
288 … const int startPos = stc->FindText(wordstart + a, wordend, word.Mid(a, b - a), in DissectWordAndCheck()
[all …]
H A DSpellCheckerPlugin.cpp347 int wordstart, wordend; in BuildModuleMenu() local
363 wordend = stc->WordEndPosition(wordstart, true); in BuildModuleMenu()
365 if ( wordend - wordstart > 0 && wordend != -1) in BuildModuleMenu()
366 misspelledWord = stc->GetTextRange(wordstart, wordend); in BuildModuleMenu()
371 m_wordend = wordend; in BuildModuleMenu()
754 int wordend = stc->WordEndPosition(wordstart, true); in OnEditorTooltip() local
756 if ( wordend > 0 && in OnEditorTooltip()
762 wxString misspelledWord = stc->GetTextRange(wordstart, wordend); in OnEditorTooltip()
796 wxString word = stc->GetTextRange(wordstart, wordend); in OnEditorTooltip()
/dports/math/vtk6/VTK-6.2.0/Testing/Core/
H A DPrintSelfCheck.tcl82 set last [string wordend $begintrim 0]
158 set last [string wordend $newstring 0]
166 set last [string wordend $data $first]
191 set end [string wordend $string $first]
311 set end [string wordend $data $start]
325 set word_end [string wordend $data $start]
466 set end [expr [string wordend $element 0] - 1]
493 set end [expr [string wordend $element 0] - 1]
519 set end [expr [string wordend $element 0] - 1]
547 set end [expr [string wordend $element 0] - 1]
[all …]
/dports/net-im/tkabber/tkabber-1.1.2/plugins/general/
H A Dispell.tcl170 set wordend [expr {[string wordend $line $ins] - 1}]
171 set w [string range $line $wordstart $wordend]
174 "insert linestart +$wordend chars +1 chars"
280 set wordend [expr {[string wordend $line $i] - 1}]
281 set w [string range $line $wordstart $wordend]
300 $l.$wordstart $l.[expr {$wordend + 1}] \
316 proc ispell::substitute {iw wordstart wordend sub} {
317 $iw delete $wordstart $wordend
/dports/editors/emacs-devel/emacs-4d1968b/test/manual/etags/c-src/
H A Dabbrev.c222 int wordstart, wordend; variable
258 wordend = scan_words (wordstart, 1);
259 if (!wordend)
262 if (wordend > PT)
263 wordend = PT;
265 wordend_byte = CHAR_TO_BYTE (wordend);
266 whitecnt = PT - wordend;
267 if (wordend <= wordstart)
285 wordend - wordstart, wordend_byte - wordstart_byte);
290 wordend - wordstart, wordend_byte - wordstart_byte);
[all …]
/dports/editors/emacs/emacs-27.2/test/manual/etags/c-src/
H A Dabbrev.c225 int wordstart, wordend; variable
264 wordend = scan_words (wordstart, 1);
265 if (!wordend)
268 if (wordend > PT)
269 wordend = PT;
271 wordend_byte = CHAR_TO_BYTE (wordend);
272 whitecnt = PT - wordend;
273 if (wordend <= wordstart)
291 wordend - wordstart, wordend_byte - wordstart_byte);
296 wordend - wordstart, wordend_byte - wordstart_byte);
[all …]
/dports/multimedia/nostt/nostt-1.1.1/
H A Dapi.c174 const char *wordend; in parsecolors() local
183 wordend = str+1; in parsecolors()
184 while (wordend < end && !isspace(*wordend)) in parsecolors()
185 wordend++; in parsecolors()
187 parsecolor(str, wordend, color); in parsecolors()
189 str = wordend; in parsecolors()
/dports/devel/ftnchek/ftnchek-3.3.1/
H A Dmessage.c449 int wordstart,wordend,leading_skip,wordchars; local
469 for(wordend=wordstart; s[wordend] != '\0'; wordend++) {
471 if(!isspace(s[wordend]))
475 if(isspace(s[wordend]))
479 wordchars = wordend-wordstart;
492 while(wordstart < wordend) {
/dports/net-im/tkabber-plugins/tkabber-plugins-1.1.2/cyrillize/
H A Dcyrillize.tcl106 set wordend [string length \
115 $w mark set insert "insert linestart +$wordend chars"
124 set wordend [string length \
133 $w icursor $wordend
/dports/irc/quassel-core/quassel-0.14-rc2/src/qtui/
H A Dchatlinemodelitem.cpp234 int wordend = idx; in computeWrapList() local
235 for (; wordend > word.start; wordend--) { in computeWrapList()
236 if (!text.at(wordend - 1).isSpace()) in computeWrapList()
240 qreal wordendx = line.cursorToX(wordend); in computeWrapList()
/dports/irc/quassel/quassel-0.14-rc2/src/qtui/
H A Dchatlinemodelitem.cpp234 int wordend = idx; in computeWrapList() local
235 for (; wordend > word.start; wordend--) { in computeWrapList()
236 if (!text.at(wordend - 1).isSpace()) in computeWrapList()
240 qreal wordendx = line.cursorToX(wordend); in computeWrapList()
/dports/devel/py-simpleparse/SimpleParse-2.2.2/simpleparse/stt/TextTools/mxTextTools/
H A Dhighcommands.h18 Py_ssize_t wordstart, wordend; variable
30 &wordend
48 childPosition = wordend;
/dports/x11-toolkits/tk85/tk8.5.19/tests/
H A DtextIndex.test847 test textIndex-21.4 {text index wordend} {
848 text_test_word wordend abc. -1
850 test textIndex-21.5 {text index wordend} {
851 text_test_word wordend abc. 100
853 test textIndex-21.6 {text index wordend} {
856 test textIndex-21.7 {text index wordend} {
857 text_test_word wordend "one .&# three" 5
859 test textIndex-21.8 {text index wordend} {
862 test textIndex-21.9 {text index wordend} {
866 text_test_word wordend "xyz\u00c7de fg" 0
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libtk/library/
H A Dentry.tcl132 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
140 tkEntryKeySelect %W [string wordend [%W get] [%W index insert]]
259 %W delete insert [string wordend [%W get] [%W index insert]]
264 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
365 [string wordend [$w get] [expr $anchor-1]]
368 [string wordend [$w get] [expr $cur - 1]]
/dports/shells/ksh93/ast-93u/src/lib/libtk/library/
H A Dentry.tcl132 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
140 tkEntryKeySelect %W [string wordend [%W get] [%W index insert]]
259 %W delete insert [string wordend [%W get] [%W index insert]]
264 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
365 [string wordend [$w get] [expr $anchor-1]]
368 [string wordend [$w get] [expr $cur - 1]]
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libtk/library/
H A Dentry.tcl132 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
140 tkEntryKeySelect %W [string wordend [%W get] [%W index insert]]
259 %W delete insert [string wordend [%W get] [%W index insert]]
264 tkEntrySetCursor %W [string wordend [%W get] [%W index insert]]
365 [string wordend [$w get] [expr $anchor-1]]
368 [string wordend [$w get] [expr $cur - 1]]
/dports/audio/julius/julius-4.1.2/libjulius/src/
H A Dfactoring_sub.c397 if (wchmm->state[wchmm->wordend[w]].scid == 0) { in make_successor_list()
398 wchmm->state[wchmm->wordend[w]].scid = s; in make_successor_list()
424 wchmm->sclist2node[wchmm->state[wchmm->wordend[w]].scid] = wchmm->wordend[w]; in make_successor_list()
425 add_successor(wchmm, wchmm->wordend[w], w); in make_successor_list()
432 node = wchmm->wordend[w]; /* begin from the word end node */ in make_successor_list()
531 node = wchmm->wordend[w]; in make_successor_list_unigram_factoring()
550 node2 = wchmm->wordend[w2]; in make_successor_list_unigram_factoring()
583 node = wchmm->wordend[w]; in make_successor_list_unigram_factoring()
657 if (wchmm->state[wchmm->wordend[w]].scid == 0) { in adjust_sc_index()
659 wchmm->state[wchmm->wordend[w]].scid = scid; in adjust_sc_index()
H A Dwchmm_check.c114 printf("wordend = %d\n",wchmm->wordend[word]); in print_wchmm_w()
464 if (wchmm->stend[wchmm->wordend[w]] != w) { in check_wchmm()
474 if (wchmm->stend[wchmm->wordend[i]]!=i) { in check_wchmm()
476 i, wchmm->wordend[i], wchmm->stend[wchmm->wordend[i]]); in check_wchmm()
/dports/x11-toolkits/tk86/tk8.6.12/tests/
H A DtextIndex.test867 test textIndex-21.4 {text index wordend} {
868 text_test_word wordend abc. -1
870 test textIndex-21.5 {text index wordend} {
871 text_test_word wordend abc. 100
873 test textIndex-21.6 {text index wordend} {
876 test textIndex-21.7 {text index wordend} {
877 text_test_word wordend "one .&# three" 5
879 test textIndex-21.8 {text index wordend} {
882 test textIndex-21.9 {text index wordend} {
886 text_test_word wordend "xyz\u00c7de fg" 0
[all …]
/dports/x11-toolkits/tk87/tk8.7a5/tests/
H A DtextIndex.test855 test textIndex-21.4 {text index wordend} {
856 text_test_word wordend abc. -1
858 test textIndex-21.5 {text index wordend} {
859 text_test_word wordend abc. 100
861 test textIndex-21.6 {text index wordend} {
864 test textIndex-21.7 {text index wordend} {
874 text_test_word wordend "xyzÇde fg" 0
877 text_test_word wordend "xyz윀de fg" 0
880 text_test_word wordend "xyz‿de fg" 0
883 text_test_word wordend "xyz⁅de fg" 0
[all …]
/dports/lang/fpc-source/fpc-3.2.2/tests/test/units/fpcunit/
H A Dsearchbuf.inc14 function IsWholeWord (bufstart, bufend, wordstart, wordend : pchar) : boolean;
19 ((wordend = bufend) or ((wordend+1)^ in worddelimiters));
/dports/www/bluefish/bluefish-2.2.12/src/
H A Dbftextview2_spell.c668 …t_misspelled_word_at_bevent(BluefishTextView * btv, GtkTextIter * wordstart, GtkTextIter * wordend) in get_misspelled_word_at_bevent() argument
676 *wordend = *wordstart; in get_misspelled_word_at_bevent()
678 && gtk_text_iter_forward_to_tag_toggle(wordend, misspelled)) in get_misspelled_word_at_bevent()
727 GtkTextIter wordstart, wordend; in bftextview2_suggestion_menu_lcb() local
731 if (get_misspelled_word_at_bevent(BLUEFISH_TEXT_VIEW(doc->view), &wordstart, &wordend)) { in bftextview2_suggestion_menu_lcb()
736 end = gtk_text_iter_get_offset(&wordend); in bftextview2_suggestion_menu_lcb()
831 GtkTextIter wordstart, wordend; in bftextview2_populate_suggestions_popup() local
859 if (get_misspelled_word_at_bevent(BLUEFISH_TEXT_VIEW(doc->view), &wordstart, &wordend)) { in bftextview2_populate_suggestions_popup()
864 word = gtk_text_buffer_get_text(doc->buffer, &wordstart, &wordend, FALSE); in bftextview2_populate_suggestions_popup()
/dports/net-im/libstrophe/libstrophe-0.11.0/src/
H A Dresolver.c614 unsigned char *wordstart, *wordend; in netbuf_add_domain_name() local
620 wordend = wordstart; in netbuf_add_domain_name()
621 while (*wordend && *wordend != '.') { in netbuf_add_domain_name()
622 wordend++; in netbuf_add_domain_name()
625 len = (int)(wordend - wordstart); in netbuf_add_domain_name()
633 while (wordstart != wordend) { in netbuf_add_domain_name()
/dports/lang/tcl85/tcl8.5.19/tests/
H A Dstring.test1436 test string-21.1 {string wordend} {
1439 test string-21.2 {string wordend} {
1442 test string-21.3 {string wordend} {
1445 test string-21.4 {string wordend} {
1446 string wordend abc. -1
1448 test string-21.5 {string wordend} {
1449 string wordend abc. 100
1451 test string-21.6 {string wordend} {
1454 test string-21.7 {string wordend} {
1457 test string-21.8 {string wordend} {
[all …]
/dports/editors/emacs/emacs-27.2/lisp/
H A Dabbrev.el768 (defun abbrev-insert (abbrev &optional name wordstart wordend)
779 (unless wordend (setq wordend wordstart))
790 (delete-char (- wordend wordstart))
860 (endmark (copy-marker wordend t)))
874 (abbrev-insert sym name wordstart wordend)

1234567891011