Home
last modified time | relevance | path

Searched refs:word_chars (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/dports/misc/vifm/vifm-0.11/tests/misc/
H A Doptions.c322 char word_chars[sizeof(cfg.word_chars)]; in TEST() local
325 cfg.word_chars[i] = i; in TEST()
326 word_chars[i] = i; in TEST()
331 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
335 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
339 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
343 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
345 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
349 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
351 assert_success(memcmp(cfg.word_chars, word_chars, 256)); in TEST()
[all …]
/dports/japanese/jed/jed-B0.99-8__J067/src/
H A Dabbrev.c43 char word_chars[256]; /* word delimiters */ member
75 if (tbl->word_chars[(int) ch]) return 0; /* not a delimiter */ in expand_abbrev()
79 while ((p >= CLine->data) && (tbl->word_chars[(int) *p])) in expand_abbrev()
145 void create_abbrev_table (char *name, char *word_chars) /*{{{*/ in create_abbrev_table() argument
168 if (*word_chars == 0) word_chars = Jed_Word_Range; in create_abbrev_table()
170 SLmake_lut ((unsigned char *) tbl->word_chars, (unsigned char *) word_chars, 0); in create_abbrev_table()
267 w = tbl->word_chars; in push_word()
/dports/editors/jed/jed-0.99-19/src/
H A Dabbrev.c44 char word_chars[256]; /* word delimiters */ member
74 if (tbl->word_chars[(unsigned char) ch]) return 0; /* not a delimiter */ in jed_expand_abbrev()
78 while ((p >= CLine->data) && (tbl->word_chars[*p])) in jed_expand_abbrev()
157 void create_abbrev_table (char *name, char *word_chars) /*{{{*/ in create_abbrev_table() argument
181 if (*word_chars == 0) word_chars = Jed_Word_Range; in create_abbrev_table()
183 SLmake_lut ((unsigned char *) tbl->word_chars, (unsigned char *) word_chars, 0); in create_abbrev_table()
334 w = tbl->word_chars; in push_word()
/dports/editors/jed/jed-0.99-19/lib/
H A Ddabbrev.sl160 skip_chars(word_chars);
174 word_chars, search_dir,
262 if (word_chars == NULL)
267 word_chars = "_" + get_word_chars();
269 c.word_chars = word_chars;
273 bskip_chars ("^" + word_chars);
275 bskip_chars (word_chars);
321 variable found, word_chars = c.word_chars, prefix_mark = c.prefix_mark;
340 bskip_chars(word_chars);
351 %skip_chars ("^" + word_chars);
[all …]
H A Dctags.sl284 private define get_word_at_point (word_chars)
288 bskip_chars (word_chars);
290 skip_chars (word_chars);
299 variable word_chars = "\\w_";
301 variable word_chars = "0-9A-Za-z_";
304 word_chars = strcat (word_chars, "$");
306 word_chars = get_blocal_var ("Word_Chars", word_chars);
307 return read_mini ("Find tag:", get_word_at_point (word_chars), "");
H A Dmouse.sl256 variable word_chars = Mouse_Selection_Word_Chars;
257 if (word_chars == NULL)
258 word_chars = get_word_chars ();
264 bskip_chars (word_chars);
266 skip_chars (word_chars);
/dports/textproc/enchant2/enchant-2.2.15/src/
H A Denchant-lsmod.c60 const char *word_chars = ""; in describe_word_chars() local
62 word_chars = enchant_dict_get_extra_word_characters(dict); in describe_word_chars()
63 printf ("%s\n", word_chars ? word_chars : ""); in describe_word_chars()
/dports/games/uqm/uqm-0.8.0/src/uqm/planets/
H A Dreport.c139 COUNT word_chars; in MakeReport() local
148 word_chars = utf8StringCountN (t.pStr, pStr); in MakeReport()
149 if ((col_cells += word_chars) <= NUM_CELL_COLS) in MakeReport()
153 if (StrLen -= word_chars) in MakeReport()
156 while (word_chars--) in MakeReport()
176 if (word_chars == 0) in MakeReport()
/dports/misc/vifm/vifm-0.11/src/cfg/
H A Dconfig.c199 memset(&cfg.word_chars, 1, sizeof(cfg.word_chars)); in cfg_init()
200 cfg.word_chars['\x00'] = 0; cfg.word_chars['\x09'] = 0; in cfg_init()
201 cfg.word_chars['\x0a'] = 0; cfg.word_chars['\x0b'] = 0; in cfg_init()
202 cfg.word_chars['\x0c'] = 0; cfg.word_chars['\x0d'] = 0; in cfg_init()
203 cfg.word_chars['\x20'] = 0; in cfg_init()
949 return c >= 256 || cfg.word_chars[c]; in cfg_is_word_wchar()
/dports/devel/ctre/compile-time-regular-expressions-3.4.1/include/ctre/actions/
H A Dboundaries.inc.hpp6 return pcre_context{ctll::push_front(boundary<word_chars>(), subject.stack), subject.parameters}; in apply()
11 …return pcre_context{ctll::push_front(boundary<negative_set<word_chars>>(), subject.stack), subject… in apply()
H A Dclass.inc.hpp40 …return pcre_context{ctll::push_front(ctre::set<ctre::word_chars>(), subject.stack), subject.parame… in apply()
44 …return pcre_context{ctll::push_front(ctre::negative_set<ctre::word_chars>(), subject.stack), subje… in apply()
/dports/devel/ctre/compile-time-regular-expressions-3.4.1/include/ctre/
H A Datoms.hpp60 using word_boundary = boundary<word_chars>;
61 using not_word_boundary = not_boundary<word_chars>;
/dports/textproc/sgrep2/sgrep-1.94a/
H A Dsgml.c138 CharacterList *word_chars; member
454 scanner->word_chars=new_character_list(sgrep); in new_sgml_scanner_common()
479 if (sgrep->word_chars) { in new_sgml_scanner_common()
480 character_list_add(scanner->word_chars,sgrep->word_chars); in new_sgml_scanner_common()
557 sgrep_free(s->word_chars); in delete_sgml_scanner()
1155 if (IN_CLIST(scanner->word_chars,ch)) { in sgml_scan()
1270 IN_CLIST(scanner->word_chars,ch)) { in sgml_scan()
1305 if (IN_CLIST(scanner->word_chars,ch) && ch!='<') { in sgml_scan()
1555 } else if (IN_CLIST(scanner->word_chars,ch)) { in sgml_scan()
1567 if (IN_CLIST(scanner->word_chars,ch) && ch!='-') { in sgml_scan()
[all …]
H A Dindex_main.c188 o->sgrep->word_chars=get_arg(sgrep,&argv,&i,&j); in parse_index_options()
189 if (!o->sgrep->word_chars) return SGREP_ERROR; in parse_index_options()
/dports/editors/textadept/textadept_11.1.linux/lexers/
H A Dlexer.lua1871 function M.word_match(words, case_insensitive, word_chars)
1876 word_chars, case_insensitive = case_insensitive, word_chars
1881 if not (word_chars or ''):find(char, 1, true) then
1882 word_chars = (word_chars or '') .. char
1887 if (word_chars or '') ~= '' then chars = chars + lpeg_S(word_chars) end
/dports/editors/textadept/scintillua-scintillua_4.4.5-2/lexers/
H A Dlexer.lua1871 function M.word_match(words, case_insensitive, word_chars)
1876 word_chars, case_insensitive = case_insensitive, word_chars
1881 if not (word_chars or ''):find(char, 1, true) then
1882 word_chars = (word_chars or '') .. char
1887 if (word_chars or '') ~= '' then chars = chars + lpeg_S(word_chars) end
/dports/audio/festival/festival/src/modules/Lexicon/
H A Dlts_rules.cc237 LISP word_chars,p; in check_alpha() local
240 word_chars = word; in check_alpha()
242 word_chars = symbolexplode(word); in check_alpha()
244 for (p=word_chars; p != NIL; p=cdr(p)) in check_alpha()
/dports/security/yara/yara-4.1.1/libyara/
H A Dre_lexer.l67 static uint8_t word_chars[] = { variable
362 LEX_ENV->re_class.bitmap[i] |= word_chars[i];
371 LEX_ENV->re_class.bitmap[i] |= ~word_chars[i];
/dports/devel/ctre/compile-time-regular-expressions-3.4.1/tests/
H A Dmatching.cpp171 …ert(starts_with("a "sv, ctre::sequence<ctre::character<'a'>, ctre::boundary<ctre::word_chars>>()));
172 …t(starts_with(u8"a "sv, ctre::sequence<ctre::character<'a'>, ctre::boundary<ctre::word_chars>>()));
173 … ctre::sequence<ctre::plus<ctre::character<'a'>>, ctre::boundary<ctre::word_chars>, ctre::any>()));
174 …tarts_with(" aaaa"sv, ctre::sequence<ctre::plus<ctre::any>, ctre::boundary<ctre::word_chars>>()));
175 … ctre::sequence<ctre::plus<ctre::character<'a'>>, ctre::boundary<ctre::word_chars>, ctre::any>()));
176 …rts_with(u8" aaaa"sv, ctre::sequence<ctre::plus<ctre::any>, ctre::boundary<ctre::word_chars>>()));
/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Doutput-pdfocr.c406 int *word_chars; member
445 fz_append_printf(ctx, cb->buf, "%04x", cb->word_chars[i]); in flush_word()
480 cb->word_chars = fz_realloc_array(ctx, cb->word_chars, newmax, int); in char_callback()
484 cb->word_chars[cb->word_len++] = unicode; in char_callback()
545 fz_free(ctx, cb.word_chars); in pdfocr_write_trailer()
/dports/editors/nano/nano-5.9/src/
H A Dchars.c137 if (word_chars != NULL && *word_chars != '\0') { in is_word_char()
142 return (strstr(word_chars, symbol) != NULL); in is_word_char()
/dports/x11/tilda/tilda-tilda-1.5.0/src/
H A Dtilda_terminal.c639 gchar* word_chars; in tilda_term_config_defaults() local
742 word_chars = config_getstr ("word_chars"); in tilda_term_config_defaults()
743 if (NULL == word_chars || '\0' == *word_chars) { in tilda_term_config_defaults()
744 word_chars = DEFAULT_WORD_CHARS; in tilda_term_config_defaults()
747 vte_terminal_set_word_char_exceptions (VTE_TERMINAL (tt->vte_term), word_chars); in tilda_term_config_defaults()
/dports/devel/geany-plugin-updatechecker/geany-plugins-1.38/multiterm/src/
H A Dshell-config.vala337 public string word_chars
341 try { return kf.get_string(_section, "word_chars"); }
346 kf.set_string(_section, "word_chars", value);
/dports/devel/geany-plugin-xmlsnippets/geany-plugins-1.38/multiterm/src/
H A Dshell-config.vala337 public string word_chars
341 try { return kf.get_string(_section, "word_chars"); }
346 kf.set_string(_section, "word_chars", value);
/dports/devel/geany-plugin-workbench/geany-plugins-1.38/multiterm/src/
H A Dshell-config.vala337 public string word_chars
341 try { return kf.get_string(_section, "word_chars"); }
346 kf.set_string(_section, "word_chars", value);

12345678910>>...12