Home
last modified time | relevance | path

Searched refs:delete (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Denable_special_members.h110 constexpr _Enable_default_constructor() noexcept = delete; in _GLIBCXX_VISIBILITY()
127 { ~_Enable_destructor() noexcept = delete; }; in _GLIBCXX_VISIBILITY()
133 constexpr _Enable_copy_move(_Enable_copy_move const&) noexcept = delete; in _GLIBCXX_VISIBILITY()
148 operator=(_Enable_copy_move const&) noexcept = delete; in _GLIBCXX_VISIBILITY()
157 constexpr _Enable_copy_move(_Enable_copy_move const&) noexcept = delete; in _GLIBCXX_VISIBILITY()
160 operator=(_Enable_copy_move const&) noexcept = delete; in _GLIBCXX_VISIBILITY()
170 constexpr _Enable_copy_move(_Enable_copy_move&&) noexcept = delete; in _GLIBCXX_VISIBILITY()
181 constexpr _Enable_copy_move(_Enable_copy_move const&) noexcept = delete; in _GLIBCXX_VISIBILITY()
182 constexpr _Enable_copy_move(_Enable_copy_move&&) noexcept = delete; in _GLIBCXX_VISIBILITY()
194 constexpr _Enable_copy_move(_Enable_copy_move&&) noexcept = delete; in _GLIBCXX_VISIBILITY()
[all …]
Dstd_mutex.h81 __mutex_base(const __mutex_base&) = delete; in _GLIBCXX_VISIBILITY()
82 __mutex_base& operator=(const __mutex_base&) = delete; in _GLIBCXX_VISIBILITY()
97 mutex(const mutex&) = delete; in _GLIBCXX_VISIBILITY()
98 mutex& operator=(const mutex&) = delete; in _GLIBCXX_VISIBILITY()
170 lock_guard(const lock_guard&) = delete; in _GLIBCXX_VISIBILITY()
171 lock_guard& operator=(const lock_guard&) = delete; in _GLIBCXX_VISIBILITY()
235 unique_lock(const unique_lock&) = delete; in _GLIBCXX_VISIBILITY()
236 unique_lock& operator=(const unique_lock&) = delete; in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/libsupc++/
Dnew111 * - normal single new and delete (no arguments, throw @c bad_alloc on error)
112 * - normal array new and delete (same)
113 * - @c nothrow single new and delete (take a @c nothrow argument, return
115 * - @c nothrow array new and delete (same)
117 * Placement new and delete signatures (take a memory address argument,
124 void operator delete(void*) _GLIBCXX_USE_NOEXCEPT
126 void operator delete[](void*) _GLIBCXX_USE_NOEXCEPT
129 void operator delete(void*, std::size_t) _GLIBCXX_USE_NOEXCEPT
131 void operator delete[](void*, std::size_t) _GLIBCXX_USE_NOEXCEPT
138 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
Datomic62 atomic_bool(const atomic_bool&) = delete;
63 atomic_bool& operator=(const atomic_bool&) = delete;
64 atomic_bool& operator=(const atomic_bool&) volatile = delete;
166 atomic(const atomic&) = delete;
167 atomic& operator=(const atomic&) = delete;
168 atomic& operator=(const atomic&) volatile = delete;
295 atomic(const atomic&) = delete;
296 atomic& operator=(const atomic&) = delete;
297 atomic& operator=(const atomic&) volatile = delete;
484 atomic(const atomic&) = delete;
[all …]
Dmutex78 __mutex_base(const __mutex_base&) = delete;
79 __mutex_base& operator=(const __mutex_base&) = delete;
88 __recursive_mutex_base(const __recursive_mutex_base&) = delete;
89 __recursive_mutex_base& operator=(const __recursive_mutex_base&) = delete;
164 mutex(const mutex&) = delete;
165 mutex& operator=(const mutex&) = delete;
205 recursive_mutex(const recursive_mutex&) = delete;
206 recursive_mutex& operator=(const recursive_mutex&) = delete;
253 timed_mutex(const timed_mutex&) = delete;
254 timed_mutex& operator=(const timed_mutex&) = delete;
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/libsupc++/
Dnew84 * - normal single new and delete (no arguments, throw @c bad_alloc on error)
85 * - normal array new and delete (same)
86 * - @c nothrow single new and delete (take a @c nothrow argument, return
88 * - @c nothrow array new and delete (same)
90 * Placement new and delete signatures (take a memory address argument,
97 void operator delete(void*) _GLIBCXX_USE_NOEXCEPT
99 void operator delete[](void*) _GLIBCXX_USE_NOEXCEPT
105 void operator delete(void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
107 void operator delete[](void*, const std::nothrow_t&) _GLIBCXX_USE_NOEXCEPT
116 // Default placement versions of operator delete.
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
Datomic71 atomic(const atomic&) = delete;
72 atomic& operator=(const atomic&) = delete;
73 atomic& operator=(const atomic&) volatile = delete;
196 atomic(const atomic&) = delete;
197 atomic& operator=(const atomic&) = delete;
198 atomic& operator=(const atomic&) volatile = delete;
360 atomic(const atomic&) = delete;
361 atomic& operator=(const atomic&) = delete;
362 atomic& operator=(const atomic&) volatile = delete;
553 atomic(const atomic&) = delete;
[all …]
Dmutex71 __recursive_mutex_base(const __recursive_mutex_base&) = delete;
72 __recursive_mutex_base& operator=(const __recursive_mutex_base&) = delete;
101 recursive_mutex(const recursive_mutex&) = delete;
102 recursive_mutex& operator=(const recursive_mutex&) = delete;
186 timed_mutex(const timed_mutex&) = delete;
187 timed_mutex& operator=(const timed_mutex&) = delete;
246 recursive_timed_mutex(const recursive_timed_mutex&) = delete;
247 recursive_timed_mutex& operator=(const recursive_timed_mutex&) = delete;
309 timed_mutex(const timed_mutex&) = delete;
310 timed_mutex& operator=(const timed_mutex&) = delete;
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/parallel/
Drandom_shuffle.h216 delete[] __oracles; in __parallel_random_shuffle_drs_pu()
217 delete[] __dist; in __parallel_random_shuffle_drs_pu()
218 delete[] __bin_proc; in __parallel_random_shuffle_drs_pu()
219 delete[] __temporaries; in __parallel_random_shuffle_drs_pu()
241 ::operator delete(__sd->_M_temporaries[__iam]); in __parallel_random_shuffle_drs_pu()
393 delete[] __starts; in __parallel_random_shuffle_drs()
394 delete[] __sd._M_bin_proc; in __parallel_random_shuffle_drs()
396 delete[] __sd._M_dist[__s]; in __parallel_random_shuffle_drs()
397 delete[] __sd._M_dist; in __parallel_random_shuffle_drs()
398 delete[] __sd._M_temporaries; in __parallel_random_shuffle_drs()
[all …]
Dpar_loop.h115 delete __reduct; in __for_each_template_random_access_ed()
130 ::operator delete(__thread_results); in __for_each_template_random_access_ed()
132 delete[] __constructed; in __for_each_template_random_access_ed()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/parallel/
Drandom_shuffle.h216 delete[] __oracles; in __parallel_random_shuffle_drs_pu()
217 delete[] __dist; in __parallel_random_shuffle_drs_pu()
218 delete[] __bin_proc; in __parallel_random_shuffle_drs_pu()
219 delete[] __temporaries; in __parallel_random_shuffle_drs_pu()
241 ::operator delete(__sd->_M_temporaries[__iam]); in __parallel_random_shuffle_drs_pu()
393 delete[] __starts; in __parallel_random_shuffle_drs()
394 delete[] __sd._M_bin_proc; in __parallel_random_shuffle_drs()
396 delete[] __sd._M_dist[__s]; in __parallel_random_shuffle_drs()
397 delete[] __sd._M_dist; in __parallel_random_shuffle_drs()
398 delete[] __sd._M_temporaries; in __parallel_random_shuffle_drs()
[all …]
Dpar_loop.h115 delete __reduct; in __for_each_template_random_access_ed()
130 ::operator delete(__thread_results); in __for_each_template_random_access_ed()
132 delete[] __constructed; in __for_each_template_random_access_ed()
/dragonfly/contrib/tcsh-6/nls/finnish/
HDset49 7 delete a character
10 8 delete a line
11 9 start delete mode
12 10 end delete mode
33 31 delete multiple chars
/dragonfly/contrib/tcsh-6/nls/ukrainian/
HDset49 7 delete a character
10 8 delete a line
11 9 start delete mode
12 10 end delete mode
33 31 delete multiple chars
/dragonfly/contrib/ee/
HDee.msg48 38 "^c command ^k delete char ^u up "
50 40 "^e search prompt ^m newline ^w delete word "
52 42 "^g begin of line ^o end of line ^y delete line "
67 57 "^[ (escape) menu ^e search prompt ^y delete line ^u up ^p prev page "
69 59 "^b bottom of text ^g begin of line ^w delete word ^l left "
71 61 "^c command ^k delete char ^f undelete char "
158 148 "^c command ^k delete line ^u bottom of text "
159 149 "^d delete char ^l undelete line ^v next page "
160 150 "^e end of line ^m newline ^w delete word "
164 154 "^[ (escape) menu ^y search prompt ^k delete line ^p prev li ^g prev page"
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDfibonacci_heap.c54 delete r; in test_empty_heap()
88 delete h1; in test_basic_heap_operations()
133 delete heap; in test_replace_key()
163 delete heap; in test_duplicate_keys()
189 delete union_heap; in test_union()
217 delete union_heap; in test_union_of_equal_heaps()
271 delete heap; in test_struct_key()
/dragonfly/sbin/dhclient/
HDdhclient-script27 ifconfig $interface inet $old_ip_address delete
34 route delete "$1" "$2"
106 route -q delete default
207 ifconfig $interface inet $new_ip_address delete
/dragonfly/libexec/talkd/
HDtable.c67 static void delete(TABLE_ENTRY *);
91 delete(ptr); in find_match()
128 delete(ptr); in find_request()
203 delete(ptr); in delete_invite()
213 delete(TABLE_ENTRY *ptr) in delete() function
/dragonfly/games/quiz/datfiles/
HDed6 delete this line and next:.{,|;}[{.}+{1}|.1]d
50 delete the next line that contains only capital letters:\
56 delete the first 3 lines of the file:1,3d
57 delete every line that doesn't begin with "A":\
59 delete every empty line from here through next "LP":\
63 delete everything after "proud" from current line:\
65 delete part of current line from "alpha" through "omega":\
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Dunique_ptr.h63 delete __ptr; in _GLIBCXX_VISIBILITY()
80 delete [] __ptr; in _GLIBCXX_VISIBILITY()
83 template<typename _Up> void operator()(_Up*) const = delete; in _GLIBCXX_VISIBILITY()
262 unique_ptr(const unique_ptr&) = delete; in _GLIBCXX_VISIBILITY()
263 unique_ptr& operator=(const unique_ptr&) = delete; in _GLIBCXX_VISIBILITY()
404 void reset(_Up) = delete; in _GLIBCXX_VISIBILITY()
414 unique_ptr(const unique_ptr&) = delete; in _GLIBCXX_VISIBILITY()
415 unique_ptr& operator=(const unique_ptr&) = delete; in _GLIBCXX_VISIBILITY()
424 pointer>::value>::type* = 0) = delete; in _GLIBCXX_VISIBILITY()
429 pointer>::value>::type* = 0) = delete; in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/config/locale/generic/
Dtime_members.h79 delete [] _M_name_timepunct; in _GLIBCXX_VISIBILITY()
88 delete [] _M_name_timepunct; in _GLIBCXX_VISIBILITY()
89 delete _M_data; in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/config/locale/dragonfly/
Dtime_members.h75 delete [] _M_name_timepunct; in _GLIBCXX_VISIBILITY()
84 delete [] _M_name_timepunct; in _GLIBCXX_VISIBILITY()
85 delete _M_data; in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/profile/impl/
Dprofiler_trace.h203 delete __it->first; in ~__trace_base()
238 delete __stack; in __add_object()
245 delete __stack; in __add_object()
280 delete __stack; in __retire_object()
286 delete __stack; in __retire_object()
289 delete __obj_info; in __retire_object()
416 delete[] __file_name; in __open_output_file()
487 delete _GLIBCXX_PROFILE_DATA(__cost_factors); in __report_and_free()
/dragonfly/usr.bin/tr/
HDtr.c63 struct cset *delete, *squeeze; in main() local
119 delete = setup(argv[0], &s1, cflag, Cflag); in main()
123 if (!cset_in(delete, ch) && in main()
141 delete = setup(argv[0], &s1, cflag, Cflag); in main()
144 if (!cset_in(delete, ch)) in main()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/backward/
Dauto_ptr.h170 ~auto_ptr() { delete _M_ptr; } in _GLIBCXX_VISIBILITY()
244 delete _M_ptr; in _GLIBCXX_VISIBILITY()
268 delete _M_ptr; in _GLIBCXX_VISIBILITY()

12345678910>>...19