Home
last modified time | relevance | path

Searched refs:replace (Results 1 – 25 of 172) sorted by relevance

1234567

/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dmisc-inst.cc47 template string& string::replace(iterator, iterator, const string&);
49 string::replace(iterator, iterator, const char*, size_type);
50 template string& string::replace(iterator, iterator, const char*);
51 template string& string::replace(iterator, iterator, size_type, char);
52 template string& string::replace(iterator, iterator, char*, char*);
54 string::replace(iterator, iterator, const char*, const char*);
57 string::replace(iterator, iterator, const_iterator, const_iterator);
65 template wstring& wstring::replace(iterator, iterator, const wstring&);
67 wstring::replace(iterator, iterator, const wchar_t*, size_type);
72 wstring::replace(iterator, iterator, const wchar_t*, const wchar_t*);
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Dvstring.h944 this->replace(__p, __p, __n, __c); in _GLIBCXX_VISIBILITY()
963 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
988 this->replace(__p, __p, __beg, __end); in _GLIBCXX_VISIBILITY()
1007 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
1038 { return this->replace(__pos1, size_type(0), in _GLIBCXX_VISIBILITY()
1105 return this->replace(__pos, size_type(0), __s, in _GLIBCXX_VISIBILITY()
1490 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1508 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1524 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1540 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
[all …]
H A Drope2300 replace(__p, __n, __r);
2307 replace(__p, __n, __r);
2314 replace(__p, __n, __r);
2322 replace(__p, __n, __r);
2330 replace(__p, __n, __r);
2338 replace(__p, __n, __r);
2351 { replace(__p, 1, __r); }
2363 { replace(__p, 1, __i, __j); }
2368 { replace(__p, 1, __i, __j); }
2373 { replace(__p, 1, __i, __j); }
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dbasic_string.h1537 this->replace(__p, __p, __n, __c); in _GLIBCXX_VISIBILITY()
1556 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
1581 this->replace(__p, __p, __beg, __end); in _GLIBCXX_VISIBILITY()
1699 return this->replace(__pos, size_type(0), __s, in _GLIBCXX_VISIBILITY()
2100 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
2208 return this->replace(__pos1, __n1, __sv.data() in _GLIBCXX_VISIBILITY()
4420 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
4896 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
4919 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
4940 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/
H A Dvstring.h920 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
937 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
965 { return this->replace(__pos1, size_type(0), in _GLIBCXX_VISIBILITY()
1032 return this->replace(__pos, size_type(0), __s, in _GLIBCXX_VISIBILITY()
1198 return this->replace(__pos1, __n1, __str._M_data() in _GLIBCXX_VISIBILITY()
1372 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1390 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1395 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1401 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1411 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
[all …]
H A Drope2300 replace(__p, __n, __r);
2307 replace(__p, __n, __r);
2314 replace(__p, __n, __r);
2322 replace(__p, __n, __r);
2330 replace(__p, __n, __r);
2338 replace(__p, __n, __r);
2351 { replace(__p, 1, __r); }
2363 { replace(__p, 1, __i, __j); }
2368 { replace(__p, 1, __i, __j); }
2373 { replace(__p, 1, __i, __j); }
[all …]
/dragonfly/crypto/openssh/
H A Dssh_api.c515 char *orig, *avail, *oavail = NULL, *alg, *replace = NULL; in _ssh_order_hostkeyalgs() local
529 if ((replace = calloc(1, maxlen)) == NULL) { in _ssh_order_hostkeyalgs()
533 *replace = '\0'; in _ssh_order_hostkeyalgs()
541 if (*replace != '\0') in _ssh_order_hostkeyalgs()
542 strlcat(replace, ",", maxlen); in _ssh_order_hostkeyalgs()
543 strlcat(replace, alg, maxlen); in _ssh_order_hostkeyalgs()
548 if (*replace != '\0') { in _ssh_order_hostkeyalgs()
550 debug2_f("replace/%d %s", ssh->kex->server, replace); in _ssh_order_hostkeyalgs()
552 proposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = replace; in _ssh_order_hostkeyalgs()
553 replace = NULL; /* owned by proposal */ in _ssh_order_hostkeyalgs()
[all …]
/dragonfly/tools/regression/usr.bin/m4/
H A Dgnupatterns.m42 patsubst(`string with a + to replace with a minus', `+', `minus')
3 patsubst(`string with aaaaa to replace with a b', `a+', `b')
4 patsubst(`+string with a starting + to replace with a minus', `^+', `minus')
H A Dregress.gnupatterns.out1 string with a minus to replace with a minus
3 minusstring with a starting + to replace with a minus
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dbasic_string.h1183 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
1200 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
1450 { return this->replace(__pos1, __n1, __str._M_data() in _GLIBCXX_VISIBILITY()
1620 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1638 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1643 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1649 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1659 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1664 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1670 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dlogic.cc118 iterator replace (iterator, tree);
119 iterator replace (iterator, tree, tree);
194 term_list::replace (iterator iter, tree t) in replace() function in __anon73f5bc530111::term_list
208 term_list::replace (iterator iter, tree t1, tree t2) in replace() function in __anon73f5bc530111::term_list
563 return ts.replace(i, expand_concept (tmpl, args)); in load_check_assumption()
569 return ts.replace(i, PARM_CONSTR_OPERAND(*i)); in load_parameterized_assumption()
577 return ts.replace(i, t1, t2); in load_conjunction_assumption()
637 g1.assumptions.replace (ti1, t1); in explode_disjunction()
638 g2.assumptions.replace (ti2, t2); in explode_disjunction()
688 return g.replace(i, t1, t2); in load_disjunction_conclusion()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/
H A Dstring596 _Base::replace(__pos1, __n1, __str);
605 _Base::replace(__pos1, __n1, __str, __pos2, __n2);
615 _Base::replace(__pos, __n1, __s, __n2);
624 _Base::replace(__pos, __n1, __s);
632 _Base::replace(__pos, __n1, __n2, __c);
641 _Base::replace(__i1.base(), __i2.base(), __str);
651 _Base::replace(__i1.base(), __i2.base(), __s, __n);
661 _Base::replace(__i1.base(), __i2.base(), __s);
677 replace(iterator __i1, iterator __i2,
682 _Base::replace(__i1.base(), __i2.base(), __j1, __j2);
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Dstring631 _Base::replace(__pos1, __n1, __str);
640 _Base::replace(__pos1, __n1, __str, __pos2, __n2);
650 _Base::replace(__pos, __n1, __s, __n2);
659 _Base::replace(__pos, __n1, __s);
667 _Base::replace(__pos, __n1, __n2, __c);
676 _Base::replace(__i1.base(), __i2.base(), __str);
696 _Base::replace(__i1.base(), __i2.base(), __s);
712 replace(iterator __i1, iterator __i2,
721 _Base::replace(__i1.base(), __i2.base(),
725 _Base::replace(__i1.base(), __i2.base(), __j1, __j2);
[all …]
/dragonfly/bin/pax/
H A Dpat_rep.h41 typedef struct replace { struct
47 struct replace *fow; /* pointer to next pattern */ argument
/dragonfly/usr.bin/m4/
H A Dgnum4.c272 add_replace(const char *string, regex_t *re, const char *replace, regmatch_t *pm) in add_replace() argument
276 for (p = replace; *p != '\0'; p++) { in add_replace()
305 do_subst(const char *string, regex_t *re, const char *replace, regmatch_t *pm) in do_subst() argument
336 add_replace(string, re, replace, pm); in do_subst()
345 do_regexp(const char *string, regex_t *re, const char *replace, regmatch_t *pm) in do_regexp() argument
351 add_replace(string, re, replace, pm); in do_regexp()
/dragonfly/games/quiz/datfiles/
H A Ded7 prepare to replace text from here to just before next "PP":\
23 replace each string of x's in current line by one x:\
40 replace "a*b" by "a**b":s/[a\\*b|a[*]b]/a**b/{p}|\
44 replace "ATT" in current line by "AT&T":\
/dragonfly/contrib/gdb-7/gdb/
H A Dgdb-gdb.py41 self.short_name = name.replace("TYPE_FLAG_", '')
43 self.short_name = name.replace("TYPE_INSTANCE_FLAG_", '')
137 fields = [field.name.replace("flag_", "")
/dragonfly/contrib/bmake/mk/
H A Dmeta2deps.py311 self.reldir = self.curdir.replace(srctop,'')
388 return dir.replace(objroot,'')
390 m = self.dirdep_re.match(dir.replace(objroot,''))
568 self.add(self.file_deps, path.replace(srctop,''), 'file')
569 self.add(self.src_deps, dir.replace(srctop,''), 'src')
645 sp = '/'.join(path.replace(objroot,'').split('/')[1:])
/dragonfly/contrib/tcsh-6/nls/russian/
H A Dset3105 103 Vi replace character under the cursor with the next character typed
106 104 Vi replace mode
109 107 Vi replace character under the cursor and enter insert mode
110 108 Vi replace entire line
/dragonfly/sys/dev/raid/vinum/
H A Dvinumparser.c118 keypair(replace),
144 keypair(replace),
/dragonfly/sbin/vinum/
H A Dvinumparser.c111 keypair(replace),
137 keypair(replace),
/dragonfly/contrib/tcsh-6/nls/ukrainian/
H A Dset3105 103 Vi replace character under the cursor with the next character typed
106 104 Vi replace mode
109 107 Vi replace character under the cursor and enter insert mode
110 108 Vi replace entire line
/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/
H A Dprinting.py76 def register_pretty_printer(obj, printer, replace=False): argument
141 if replace:
/dragonfly/contrib/binutils-2.27/binutils/
H A Dar.c114 none = 0, del, replace, print_table, enumerator
514 operation = replace; in decode_options()
757 operation = replace; in main()
766 if (newer_only && operation != replace) in main()
837 case replace: in main()
941 if ((operation == replace || operation == quick_append) in open_inarch()
/dragonfly/contrib/binutils-2.34/binutils/
H A Dar.c118 none = 0, del, replace, print_table, enumerator
528 operation = replace; in decode_options()
796 operation = replace; in main()
805 if (newer_only && operation != replace) in main()
884 case replace: in main()
988 if ((operation == replace || operation == quick_append) in open_inarch()

1234567