Home
last modified time | relevance | path

Searched refs:gensub (Results 1 – 14 of 14) sorted by relevance

/netbsd/external/gpl3/gdb/dist/gdb/contrib/ari/
H A Dgdb_ari.sh891 name = gensub(/(_P|_p)$/, "", 1, name)
895 cat = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\1", 1, name)
896 bug = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\2", 1, name)
908 …name = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\…
909 …line = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\…
918 name = gensub(/^.*set_gdbarch_([_[:alnum:]]*).*$/, "\\1", 1, $0)
929 basename = gensub(/(^|.*\/)([^\/]*)$/, "\\2", 1, FILENAME)
930 type = gensub(/^(tm|xm|nm)-.*\.h$/, "\\1", 1, basename)
931 name = gensub(/^#[[:space:]]*(undef|define)[[:space:]]+([[:alnum:]_]+).*$/, "\\2", 1, $0)
/netbsd/external/gpl3/gdb.old/dist/gdb/contrib/ari/
H A Dgdb_ari.sh891 name = gensub(/(_P|_p)$/, "", 1, name)
895 cat = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\1", 1, name)
896 bug = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\2", 1, name)
908 …name = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\…
909 …line = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\…
918 name = gensub(/^.*set_gdbarch_([_[:alnum:]]*).*$/, "\\1", 1, $0)
929 basename = gensub(/(^|.*\/)([^\/]*)$/, "\\2", 1, FILENAME)
930 type = gensub(/^(tm|xm|nm)-.*\.h$/, "\\1", 1, basename)
931 name = gensub(/^#[[:space:]]*(undef|define)[[:space:]]+([[:alnum:]_]+).*$/, "\\2", 1, $0)
/netbsd/sys/arch/hpc/stand/dspgen/
H A Ddo_subst.awk100 a[i] = gensub("([^\\\\]|^)#", "\\1 ", "g", a[i])
101 a[i] = gensub("\\\\#", "#", "g", a[i])
112 a[i] = gensub("([^\\\\]|^)#", "\\1 ", "g", a[i])
113 a[i] = gensub("\\\\#", "#", "g", a[i])
/netbsd/external/gpl2/texinfo/dist/util/
H A Doutline.gawk105 text = gensub(/@[a-z]+{/, "", "g", text)
106 text = gensub(/([^@])}/, "\\1", "g", text)
/netbsd/lib/libc/arch/or1k/
H A Dsyscallargs.awk43 y = gensub("sys_", "", 1, x);
/netbsd/external/historical/nawk/dist/
H A Dproctab.c149 gensub, /* GENSUB */
H A DChangeLog53 * awkgram.y: Add support for gensub.
55 * lex.c: Add support for gensub and bitwise functions.
59 (gensub): New function.
H A Dproto.h203 extern Cell *gensub(Node **, int);
H A Drun.c2137 Cell *gensub(Node **a, int nnn) /* global selective substitute */ in gensub() function
/netbsd/external/historical/nawk/bin/
H A DTODO8 * String functions: gensub() (partly done, finish backref. support)
/netbsd/external/public-domain/tz/
H A Dtzdata2netbsd530 date = gensub(".* - ", "", 1, $0);
541 t = gensub("^ *", "", 1, $0);
542 t = gensub("\\.*$", ".", 1, t);
551 t = gensub("^ *", "", 1, $0);
552 t = gensub("\\. .*", ".", 1, t);
/netbsd/external/gpl2/gawk/dist/
H A Dawk.texi481 and @code{gensub}.
3721 and @code{gensub} functions, it is very important.
7520 @cindex @code{gensub} function (@command{gawk})
12349 @code{gensub}.
12793 @cindex @code{gensub} function (@command{gawk})
12815 > b = gensub(/(.+) (.+)/, "\\2 \\1", "g", a)
12832 > gawk '@{ print gensub(/a/, "AA", 2) @}'
12837 @code{gensub} returns the new string as its result, which is
13128 You type!@code{gensub} sees!@code{gensub} generates@cr
13141 You type @code{gensub} sees @code{gensub} generates
[all …]
/netbsd/external/gpl3/gcc/dist/contrib/
H A DChangeLog1903 * uninclude: Fix third argument to gensub.
/netbsd/external/gpl3/gcc/dist/gcc/
H A DChangeLog-201729954 * config/avr/genmultilib.awk: Use gsub instead of gensub.