HomeSort by: relevance | last modified time | path
    Searched defs:regexp (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/external/gpl3/gdb/dist/gdb/mi/
mi-cmd-info.c 32 const char *regexp; local
37 regexp = NULL;
40 regexp = argv[0];
43 error (_("Usage: -info-ada-exceptions [REGEXP]"));
47 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
mi-cmd-file.c 113 error (_("-file-list-exec-source-files: Usage: [--group-by-objfile] [--basename | --dirname] [--] REGEXP"));
115 const char *regexp = nullptr; local
117 regexp = argv[oind];
127 info_sources_filter filter (match_type, regexp);
149 error (_("Usage: -file-list-shared-libraries [REGEXP]"));
157 error (_("Invalid regexp: %s"), re_err);
mi-symbol-cmds.c 195 const char *regexp = nullptr; local
232 regexp = oarg;
240 mi_symbol_info (kind, regexp, t_regexp, exclude_minsyms, max_results);
321 const char *regexp = nullptr; local
359 regexp = oarg;
365 = search_module_symbols (module_regexp, regexp, type_regexp, kind);
414 const char *regexp = nullptr; local
439 regexp = oarg;
447 mi_symbol_info (SEARCH_MODULE_DOMAIN, regexp, nullptr, true, max_results);
457 const char *regexp = nullptr local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-cmd-info.c 32 const char *regexp; local
37 regexp = NULL;
40 regexp = argv[0];
43 error (_("Usage: -info-ada-exceptions [REGEXP]"));
47 std::vector<ada_exc_info> exceptions = ada_exceptions_list (regexp);
mi-cmd-file.c 113 error (_("-file-list-exec-source-files: Usage: [--group-by-objfile] [--basename | --dirname] [--] REGEXP"));
115 const char *regexp = nullptr; local
117 regexp = argv[oind];
127 info_sources_filter filter (match_type, regexp);
149 error (_("Usage: -file-list-shared-libraries [REGEXP]"));
157 error (_("Invalid regexp: %s"), re_err);
mi-symbol-cmds.c 196 const char *regexp = nullptr; local
233 regexp = oarg;
241 mi_symbol_info (kind, regexp, t_regexp, exclude_minsyms, max_results);
322 const char *regexp = nullptr; local
360 regexp = oarg;
366 = search_module_symbols (module_regexp, regexp, type_regexp, kind);
415 const char *regexp = nullptr; local
440 regexp = oarg;
448 mi_symbol_info (SEARCH_MODULE_DOMAIN, regexp, nullptr, true, max_results);
458 const char *regexp = nullptr local
    [all...]
  /src/include/
regexp.h 1 /* $NetBSD: regexp.h,v 1.7 2005/02/03 04:39:32 perry Exp $ */
34 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
71 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
78 * Definitions etc. for regexp(3) routines.
80 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
84 typedef struct regexp { struct
92 } regexp; typedef in typeref:struct:regexp
98 regexp *__compat_regcomp(const char *);
99 int __compat_regexec(const regexp *, const char *);
100 void __compat_regsub(const regexp *, const char *, char *)
    [all...]
  /src/external/bsd/less/dist/
regexp.h 1 /* $NetBSD: regexp.h,v 1.4 2023/10/06 05:49:49 simonb Exp $ */
4 * Definitions etc. for regexp(3) routines.
6 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
14 typedef struct regexp { struct
22 } regexp; typedef in typeref:struct:regexp
30 extern regexp *regcomp _ANSI_ARGS_((char *exp));
31 extern int regexec _ANSI_ARGS_((regexp *prog, char *string));
32 extern int regexec2 _ANSI_ARGS_((regexp *prog, char *string, int notbol));
33 extern void regsub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
36 #endif /* REGEXP */
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
check-defines.el 29 (defconst check-regexp "\\_<\\(\\(HAVE\\|PTRACE_TYPE\\|SIZEOF\\)_[a-zA-Z0-9_]+\\)\\_>")
52 (while (re-search-forward check-regexp nil t)
osabi.cc 30 /* The triplet regexp, or NULL if not known. */
32 const char *regexp; member in struct:osabi_names
95 return gdb_osabi_names[osabi].regexp;
97 return gdb_osabi_names[GDB_OSABI_INVALID].regexp;
  /src/external/gpl3/gdb.old/dist/gdbsupport/
check-defines.el 29 (defconst check-regexp "\\_<\\(\\(HAVE\\|PTRACE_TYPE\\|SIZEOF\\)_[a-zA-Z0-9_]+\\)\\_>")
52 (while (re-search-forward check-regexp nil t)
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
naptr_35.h 30 char *regexp; member in struct:dns_rdata_naptr
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
naptr_35.h 31 char *regexp; member in struct:dns_rdata_naptr
  /src/external/bsd/atf/dist/atf-c++/
macros_test.cpp 155 const std::string regexp = get_config_var("regexp"); local
159 ATF_REQUIRE_MATCH(regexp, string);
475 const char *regexp; member in struct:test
487 for (t = &tests[0]; t->regexp != NULL; t++) {
489 config["regexp"] = t->regexp;
492 std::cout << "Checking with " << t->regexp << ", " << t->string
  /src/external/gpl3/gdb/dist/gdb/
symmisc.c 715 maintenance_print_objfiles (const char *regexp, int from_tty)
719 if (regexp)
720 re_comp (regexp);
726 if (! regexp
732 /* List all the symbol tables whose names match REGEXP (optional). */
735 maintenance_info_symtabs (const char *regexp, int from_tty)
739 if (regexp)
740 re_comp (regexp);
757 if (! regexp
888 /* Expand all symbol tables whose name matches an optional regexp. *
892 const char *regexp = nullptr; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
osabi.c 52 /* The triplet regexp, or NULL if not known. */
54 const char *regexp; member in struct:osabi_names
103 return gdb_osabi_names[osabi].regexp;
105 return gdb_osabi_names[GDB_OSABI_INVALID].regexp;
symmisc.c 713 maintenance_print_objfiles (const char *regexp, int from_tty)
717 if (regexp)
718 re_comp (regexp);
724 if (! regexp
730 /* List all the symbol tables whose names match REGEXP (optional). */
733 maintenance_info_symtabs (const char *regexp, int from_tty)
737 if (regexp)
738 re_comp (regexp);
755 if (! regexp
886 /* Expand all symbol tables whose name matches an optional regexp. *
890 char *regexp = NULL; local
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/lisp/
gmpasm-mode.el 86 (defcustom gmpasm-comment-start-regexp "\\([#;!@*|C]\\|//\\)"
87 "*Regexp matching possible comment styles.
99 :type 'regexp
185 (regexp-opt
199 "regexp" "shift" "sinclude" "substr" "syscmd" "sysval"
209 The right assembler comment regexp is added dynamically buffer-local (with
229 `gmpasm-comment-start-regexp' at the start of a line, or \"#\" is used if
233 `adaptive-fill-regexp' is set buffer-local to the standard regexp with
240 Note that `gmpasm-comment-start-regexp' is only matched as a whole word, s
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/misc/
po-mode.el 912 (defvar po-any-msgid-regexp
914 "Regexp matching a whole msgid field, whether obsolete or not.")
916 (defvar po-any-msgstr-regexp
919 "Regexp matching a whole msgstr or msgstr[] field, whether obsolete or not.")
921 (defvar po-msgstr-idx-keyword-regexp
923 "Regexp matching an indexed msgstr keyword, whether obsolete or not.")
932 ;; (regexp-opt
1157 (defvar po-fuzzy-regexp)
1158 (defvar po-untranslated-regexp)
1180 (while (re-search-forward po-any-msgstr-regexp nil t
    [all...]
  /src/external/bsd/tre/dist/src/
agrep.c 80 {"regexp", required_argument, NULL, 'e'},
87 {"word-regexp", no_argument, NULL, 'w'},
112 Regexp selection and interpretation:\n\
113 -e, --regexp=PATTERN use PATTERN as a regular expression\n\
116 -w, --word-regexp force PATTERN to match only whole words\n\
537 char *regexp = NULL; local
581 /* Set record delimiter regexp. */
587 /* Regexp to use. */
588 regexp = optarg;
729 if (regexp == NULL
    [all...]
  /src/external/gpl3/binutils/dist/etc/
add-log.el 204 (concat "^" (regexp-quote (file-name-directory
221 (if (looking-at (regexp-quote heading))
240 (concat (regexp-quote (concat "* " entry))
323 (set (make-local-variable 'adaptive-fill-regexp) "\\s *")
329 ;; have is a variable giving a regexp matching text which should not be
342 (defvar add-log-current-defun-header-regexp
344 "*Heuristic regexp used by `add-log-current-defun' for unknown major modes.")
356 `add-log-current-defun-header-regexp'.
536 (if (re-search-backward add-log-current-defun-header-regexp
  /src/external/gpl3/binutils.old/dist/etc/
add-log.el 204 (concat "^" (regexp-quote (file-name-directory
221 (if (looking-at (regexp-quote heading))
240 (concat (regexp-quote (concat "* " entry))
323 (set (make-local-variable 'adaptive-fill-regexp) "\\s *")
329 ;; have is a variable giving a regexp matching text which should not be
342 (defvar add-log-current-defun-header-regexp
344 "*Heuristic regexp used by `add-log-current-defun' for unknown major modes.")
356 `add-log-current-defun-header-regexp'.
536 (if (re-search-backward add-log-current-defun-header-regexp
  /src/external/ibm-public/postfix/dist/src/util/
dict_regexp.c 7 /* dictionary manager interface to REGEXP regular expression library
77 #define DICT_REGEXP_OP_MATCH 1 /* Match this regexp */
85 char *regexp; /* regular expression */ member in struct:__anon23227
117 * Regexp map.
145 const char *mapname; /* name of regexp map */
176 msg_panic("regexp map %s, line %d: out of range replacement index \"%s\"",
197 /* dict_regexp_regerror - report regexp compile/execute error */
205 msg_warn("regexp map %s, line %d: %s", mapname, lineno, errbuf);
292 msg_panic("regexp map %s, line %d: bad replacement syntax",
324 /* dict_regexp_close - close regexp dictionary *
    [all...]
dict_pcre.c 151 #define DICT_PCRE_OP_MATCH 1 /* Match this regexp */
156 * Max strings captured by regexp - essentially the max number of (..)
166 char *regexp; /* regular expression */ member in struct:__anon23218
237 const char *mapname; /* name of regexp map */
355 msg_warn("pcre map %s, line %d: corrupt compiled regexp",
579 msg_warn("pcre map %s, line %d: no regexp: skipping this rule",
584 pattern->regexp = p;
600 msg_warn("pcre map %s, line %d: no closing regexp delimiter \"%c\": "
604 *p++ = 0; /* Null term the regexp */
607 * Parse any regexp options
774 DICT_PCRE_REGEXP regexp; local
910 DICT_PCRE_REGEXP regexp; local
    [all...]
  /src/sbin/efi/
showvar.c 532 const char *regexp = REGEXP_BOOTXXXX; local
533 if (regcomp(&preg, regexp, REG_EXTENDED) != 0)
534 err(EXIT_FAILURE, "regcomp: %s", regexp);

Completed in 32 milliseconds

1 2