Searched refs:brkchars (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/
H A Dcomplete.c1068 char quote_char, *brkchars; local
1074 brkchars = 0;
1076 brkchars = (*rl_completion_word_break_hook) ();
1077 if (brkchars == 0)
1078 brkchars = rl_completer_word_break_characters;
1140 if (strchr (brkchars, scan) == 0)
1168 strchr (brkchars, scan) != 0;
1170 isbrk = strchr (brkchars, scan) != 0;
/netbsd-current/external/gpl3/gdb/dist/readline/readline/
H A Dcomplete.c1081 char quote_char, *brkchars; local
1087 brkchars = 0;
1089 brkchars = (*rl_completion_word_break_hook) ();
1090 if (brkchars == 0)
1091 brkchars = rl_completer_word_break_characters;
1153 if (strchr (brkchars, scan) == 0)
1181 strchr (brkchars, scan) != 0;
1183 isbrk = strchr (brkchars, scan) != 0;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dcompleter.c298 const char *brkchars;
316 brkchars = info->word_break_characters;
383 if (strchr (brkchars, scan) != 0)
393 isbrk = strchr (brkchars, scan) != 0;
1253 Simpler completers that just pass a brkchars array to readline
1988 /* Used as brkchars when we want to tell readline we have a custom
297 const char *brkchars; local
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dcompleter.c282 const char *brkchars;
300 brkchars = info->word_break_characters;
357 if (strchr (brkchars, scan) != 0)
367 isbrk = strchr (brkchars, scan) != 0;
1155 Simpler completers that just pass a brkchars array to readline
1883 /* Used as brkchars when we want to tell readline we have a custom
281 const char *brkchars; local

Completed in 260 milliseconds