Home
last modified time | relevance | path

Searched refs:insert (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/dragonfly/contrib/cryptsetup/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
5 .SUFFIXES: .insert-header .po-update-en
15 .insert-header.po-update-en:
23 …N).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV…
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
42 en@boldquot.insert-header: insert-header.sin
43 …sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert
47 rm -f *.insert-header
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/profile/
H A Dunordered_set141 this->insert(__l);
193 _Base::insert(__l);
198 insert(const value_type& __obj)
216 insert(value_type&& __obj)
238 _Base::insert(__first, __last);
246 _Base::insert(__first, __last);
404 this->insert(__l);
455 _Base::insert(__l);
460 insert(const value_type& __obj)
478 insert(value_type&& __obj)
[all …]
H A Dunordered_map142 this->insert(__l);
194 _Base::insert(__l);
199 insert(const value_type& __obj)
220 insert(_Pair&& __obj)
246 _Base::insert(__first, __last);
254 _Base::insert(__first, __last);
437 this->insert(__l);
483 _Base::insert(__l);
488 insert(const value_type& __obj)
509 insert(_Pair&& __obj)
[all …]
H A Dmultimap.h119 this->insert(__l); in _GLIBCXX_VISIBILITY()
184 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
185 { return iterator(_Base::insert(__x)); } in _GLIBCXX_VISIBILITY()
192 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
198 insert(std::initializer_list<value_type> __list) in _GLIBCXX_VISIBILITY()
199 { _Base::insert(__list); } in _GLIBCXX_VISIBILITY()
206 insert(iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
208 { return iterator(_Base::insert(__position, __x)); } in _GLIBCXX_VISIBILITY()
215 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
216 { return iterator(_Base::insert(__position, in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h119 this->insert(__l); in _GLIBCXX_VISIBILITY()
184 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
185 { return iterator(_Base::insert(__x)); } in _GLIBCXX_VISIBILITY()
189 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
190 { return iterator(_Base::insert(std::move(__x))); } in _GLIBCXX_VISIBILITY()
195 { return iterator(_Base::insert(__position, __x)); } in _GLIBCXX_VISIBILITY()
199 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
205 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
206 { _Base::insert(__first, __last); } in _GLIBCXX_VISIBILITY()
210 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
[all …]
H A Dset.h119 this->insert(__l); in _GLIBCXX_VISIBILITY()
184 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
187 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY()
194 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
198 = _Base::insert(std::move(__x)); in _GLIBCXX_VISIBILITY()
206 { return iterator(_Base::insert(__position, __x)); } in _GLIBCXX_VISIBILITY()
210 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
216 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
217 { _Base::insert(__first, __last); } in _GLIBCXX_VISIBILITY()
221 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
[all …]
H A Dmap.h124 this->insert(__l); in _GLIBCXX_VISIBILITY()
240 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
244 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY()
254 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
259 = _Base::insert(std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY()
267 insert(std::initializer_list<value_type> __list) in _GLIBCXX_VISIBILITY()
270 _Base::insert(__list); in _GLIBCXX_VISIBILITY()
280 insert(iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
284 iterator __i = iterator(_Base::insert(__position, __x)); in _GLIBCXX_VISIBILITY()
295 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dfibonacci_heap.c72 h1->insert (i, &values[i]); in test_basic_heap_operations()
103 nodes[i] = h->insert (i, &buffer[i]); in build_simple_heap()
147 heap->insert (i / 3, &values[i]); in test_duplicate_keys()
175 heap1->insert (i, &value); in test_union()
179 heap2->insert (i, &value); in test_union()
202 heap1->insert (i, &value); in test_union_of_equal_heaps()
206 heap2->insert (i, &value); in test_union_of_equal_heaps()
256 heap->insert (heap_key (1), &value); in test_struct_key()
257 heap->insert (heap_key (10), &value); in test_struct_key()
258 heap->insert (heap_key (100), &value); in test_struct_key()
[all …]
H A Dlcm.c357 bitmap_and_compl (insert[x], later[x], in compute_insert_delete()
372 sbitmap **insert, sbitmap **del) in pre_edge_lcm_avs() argument
447 *insert = sbitmap_vector_alloc (num_edges, n_exprs); in pre_edge_lcm_avs()
449 bitmap_vector_clear (*insert, num_edges); in pre_edge_lcm_avs()
473 sbitmap **insert, sbitmap **del) in pre_edge_lcm() argument
482 avin, avout, insert, del); in pre_edge_lcm()
707 sbitmap *insert, sbitmap *del) in compute_rev_insert_delete() argument
720 bitmap_and_compl (insert[x], nearer[x], in compute_rev_insert_delete()
735 sbitmap **insert, sbitmap **del) in pre_edge_rev_lcm() argument
820 *insert = sbitmap_vector_alloc (num_edges, n_exprs); in pre_edge_rev_lcm()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/profile/
H A Dunordered_set220 _Base::insert(__l);
225 insert(const value_type& __obj)
237 iterator __res = _Base::insert(__iter, __v);
243 insert(value_type&& __obj)
262 insert(_InputIter __first, _InputIter __last)
265 _Base::insert(__first, __last);
476 _Base::insert(__l);
481 insert(const value_type& __obj)
484 iterator __res = _Base::insert(__obj);
499 insert(value_type&& __obj)
[all …]
H A Dunordered_map206 _Base::insert(__l);
211 insert(const value_type& __obj)
232 insert(_Pair&& __obj)
245 insert(const_iterator __iter, _Pair&& __v)
258 _Base::insert(__first, __last);
484 _Base::insert(__l);
489 insert(const value_type& __obj)
492 iterator __res = _Base::insert(__obj);
510 insert(_Pair&& __obj)
522 insert(const_iterator __iter, _Pair&& __v)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Dmultimap.h244 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
245 { return iterator(_Base::insert(__x), this); } in _GLIBCXX_VISIBILITY()
251 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
258 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
265 { _Base::insert(__list); } in _GLIBCXX_VISIBILITY()
293 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
296 return iterator(_Base::insert(__position.base(), in _GLIBCXX_VISIBILITY()
309 _Base::insert(__gnu_debug::__unsafe(__first), in _GLIBCXX_VISIBILITY()
312 _Base::insert(__first, __last); in _GLIBCXX_VISIBILITY()
336 insert(node_type&& __nh) in _GLIBCXX_VISIBILITY()
[all …]
H A Dmap.h256 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
267 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
269 auto __res = _Base::insert(std::move(__x)); in _GLIBCXX_VISIBILITY()
277 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
280 = _Base::insert(std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY()
289 { _Base::insert(__list); } in _GLIBCXX_VISIBILITY()
317 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
333 _Base::insert(__gnu_debug::__unsafe(__first), in _GLIBCXX_VISIBILITY()
336 _Base::insert(__first, __last); in _GLIBCXX_VISIBILITY()
443 insert(node_type&& __nh) in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h245 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
246 { return iterator(_Base::insert(__x), this); } in _GLIBCXX_VISIBILITY()
250 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
263 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
273 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
279 _Base::insert(__gnu_debug::__unsafe(__first), in _GLIBCXX_VISIBILITY()
282 _Base::insert(__first, __last); in _GLIBCXX_VISIBILITY()
287 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
288 { _Base::insert(__l); } in _GLIBCXX_VISIBILITY()
312 insert(node_type&& __nh) in _GLIBCXX_VISIBILITY()
[all …]
H A Dunordered_map312 insert(const value_type& __obj)
315 auto __res = _Base::insert(__obj);
323 insert(value_type&& __x)
335 insert(_Pair&& __obj)
384 _Base::insert(__l);
400 _Base::insert(__first, __last);
515 insert(node_type&& __nh)
1006 insert(value_type&& __x)
1040 insert(_Pair&& __obj)
1064 { _Base::insert(__l); }
[all …]
H A Dset.h245 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
254 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
257 = _Base::insert(std::move(__x)); in _GLIBCXX_VISIBILITY()
282 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
288 _Base::insert(__gnu_debug::__unsafe(__first), in _GLIBCXX_VISIBILITY()
291 _Base::insert(__first, __last); in _GLIBCXX_VISIBILITY()
296 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
297 { _Base::insert(__l); } in _GLIBCXX_VISIBILITY()
322 insert(node_type&& __nh) in _GLIBCXX_VISIBILITY()
324 auto __ret = _Base::insert(std::move(__nh)); in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/nvi2/vi/
H A Dv_txt.c386 ++tp->insert; in v_txt()
737 insert = tp->insert; in v_txt()
759 insert + owrite, insert + owrite + 32)) == NULL) in v_txt()
764 ntp->insert = insert; in v_txt()
805 ntp->insert = wmt.insert; in v_txt()
815 ++ntp->insert; in v_txt()
1333 ++tp->insert; in v_txt()
1582 if (tp->insert) in txt_abbrev()
1808 ++ntp->insert; in txt_backup()
2380 if (tp->insert) in txt_hex()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dmisc-inst.cc44 template void string::insert(iterator, size_type, char);
45 template void string::insert(iterator, iterator, iterator);
46 template string::iterator string::insert(iterator, char);
62 template void wstring::insert(iterator, size_type, wchar_t);
63 template void wstring::insert(iterator, iterator, iterator);
64 template wstring::iterator wstring::insert(iterator, wchar_t);
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/
H A Dmultimap.h133 this->insert(__l); in _GLIBCXX_VISIBILITY()
198 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
199 { return iterator(_Base::insert(__x), this); } in _GLIBCXX_VISIBILITY()
206 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
212 insert(std::initializer_list<value_type> __list) in _GLIBCXX_VISIBILITY()
213 { _Base::insert(__list); } in _GLIBCXX_VISIBILITY()
220 insert(iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
232 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
235 return iterator(_Base::insert(__position.base(), in _GLIBCXX_VISIBILITY()
242 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
[all …]
H A Dmultiset.h132 this->insert(__l); in _GLIBCXX_VISIBILITY()
197 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
198 { return iterator(_Base::insert(__x), this); } in _GLIBCXX_VISIBILITY()
202 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
207 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
210 return iterator(_Base::insert(__position.base(), __x), this); in _GLIBCXX_VISIBILITY()
215 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
225 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
228 _Base::insert(__gnu_debug::__base(__first), in _GLIBCXX_VISIBILITY()
234 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
[all …]
H A Dset.h132 this->insert(__l); in _GLIBCXX_VISIBILITY()
197 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
199 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY()
206 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
209 = _Base::insert(std::move(__x)); in _GLIBCXX_VISIBILITY()
216 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
224 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
234 insert(_InputIterator __first, _InputIterator __last) in _GLIBCXX_VISIBILITY()
237 _Base::insert(__gnu_debug::__base(__first), in _GLIBCXX_VISIBILITY()
243 insert(initializer_list<value_type> __l) in _GLIBCXX_VISIBILITY()
[all …]
H A Dmap.h132 this->insert(__l); in _GLIBCXX_VISIBILITY()
206 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
208 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY()
218 insert(_Pair&& __x) in _GLIBCXX_VISIBILITY()
221 = _Base::insert(std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY()
229 insert(std::initializer_list<value_type> __list) in _GLIBCXX_VISIBILITY()
230 { _Base::insert(__list); } in _GLIBCXX_VISIBILITY()
237 insert(iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
249 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
252 return iterator(_Base::insert(__position.base(), in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/tcsh-6/nls/finnish/
H A Dset413 11 end insert mode
16 14 insert character
17 15 start insert mode
18 16 insert padding
35 33 insert multiple chars
/dragonfly/contrib/tcsh-6/nls/ukrainian/
H A Dset413 11 end insert mode
16 14 insert character
17 15 start insert mode
18 16 insert padding
35 33 insert multiple chars
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dunordered_set.h420 insert(const value_type& __x) in _GLIBCXX_VISIBILITY()
421 { return _M_h.insert(__x); } in _GLIBCXX_VISIBILITY()
424 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
469 { _M_h.insert(__first, __last); } in _GLIBCXX_VISIBILITY()
480 { _M_h.insert(__l); } in _GLIBCXX_VISIBILITY()
498 insert(node_type&& __nh) in _GLIBCXX_VISIBILITY()
1200 { return _M_h.insert(__x); } in _GLIBCXX_VISIBILITY()
1203 insert(value_type&& __x) in _GLIBCXX_VISIBILITY()
1244 { _M_h.insert(__first, __last); } in _GLIBCXX_VISIBILITY()
1255 { _M_h.insert(__l); } in _GLIBCXX_VISIBILITY()
[all …]

12345678910>>...16