| /src/contrib/llvm-project/libcxx/modules/std/ |
| H A D | iterator.inc | 156 // [predef.iterators], predefined iterators and sentinels 157 // [reverse.iterators], reverse iterators 175 // [insert.iterators], insert iterators 185 // [const.iterators], constant iterators and sentinels 186 // [const.iterators.alias], alias templates 191 // [const.iterators.iterator], class template basic_const_iterator 198 // [move.iterators], move iterators and sentinels 211 // [iterators.counted], counted iterators 218 // [stream.iterators], stream iterators
|
| H A D | filesystem.inc | 25 // [fs.class.directory.iterator], directory iterators 28 // [fs.dir.itr.nonmembers], range access for directory iterators 32 // [fs.class.rec.dir.itr], recursive directory iterators 36 // [fs.rec.dir.itr.nonmembers], range access for recursive directory iterators
|
| /src/crypto/krb5/src/ccapi/server/ |
| H A D | ccs_client.c | 33 ccs_iteratorref_array_t iterators; member 63 err = ccs_iteratorref_array_new (&client->iterators); in ccs_client_new() 89 cc_uint64 iterator_count = ccs_iteratorref_array_count (io_client->iterators); in ccs_client_release() 100 …generic_list_iterator_t iterator = ccs_iteratorref_array_object_at_index (io_client->iterators, i); in ccs_client_release() 108 ccs_iteratorref_array_release (io_client->iterators); in ccs_client_release() 179 err = ccs_iteratorref_array_insert (io_client->iterators, in_iterator, in ccs_client_add_iterator() 180 ccs_iteratorref_array_count (io_client->iterators)); in ccs_client_add_iterator() 198 cc_uint64 lock_count = ccs_iteratorref_array_count (io_client->iterators); in ccs_client_remove_iterator() 201 …generic_list_iterator_t iterator = ccs_iteratorref_array_object_at_index (io_client->iterators, i); in ccs_client_remove_iterator() 206 err = ccs_iteratorref_array_remove (io_client->iterators, i); in ccs_client_remove_iterator()
|
| H A D | ccs_list_internal.c | 41 cci_array_t iterators; member 106 err = cci_array_new (&list->iterators, ccs_list_iterator_object_release); in ccs_list_new() 126 cci_array_release (io_list->iterators); in ccs_list_release() 189 return (ccs_list_iterator_t) cci_array_object_at_index (in_list->iterators, in_index); in ccs_list_iterator_at_index() 268 for (i = 0; !err && i < cci_array_count (in_list->iterators); i++) { in ccs_list_find_iterator_index() 335 for (i = 0; !err && i < cci_array_count (io_list->iterators); i++) { in ccs_list_add() 368 for (i = 0; !err && i < cci_array_count (io_list->iterators); i++) { in ccs_list_remove() 401 for (i = 0; !err && i < cci_array_count (io_list->iterators); i++) { in ccs_list_push_front() 447 err = cci_array_insert (io_list->iterators, in ccs_list_iterator_new() 449 cci_array_count (io_list->iterators)); in ccs_list_iterator_new() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 706 std::tuple<Iters...> iterators; 710 return value_type(*std::get<Ns>(iterators)...); 714 (++std::get<Ns>(iterators), ...); 718 (--std::get<Ns>(iterators), ...); 724 return ((std::get<Ns>(this->iterators) == std::get<Ns>(other.iterators)) && 729 zip_common(Iters &&... ts) : iterators(std::forward<Iters>(ts)...) {} 758 return std::get<0>(this->iterators) == std::get<0>(other.iterators); 777 return ((std::get<Ns>(this->iterators) == std::get<Ns>(other.iterators)) || 926 std::tuple<Iters...> iterators; 932 return ((std::get<Ns>(this->iterators) != std::get<Ns>(other.iterators)) || [all …]
|
| /src/cddl/usr.sbin/dwatch/libexec/ |
| H A D | vop_readdir | 86 * BEGIN Pathname-depth iterators 125 * END Pathname-depth iterators
|
| H A D | vop_create | 89 * BEGIN Pathname-depth iterators 128 * END Pathname-depth iterators
|
| H A D | vop_symlink | 90 * BEGIN Pathname-depth iterators 129 * END Pathname-depth iterators
|
| H A D | vop_rename | 137 * BEGIN Pathname-depth iterators 196 * END Pathname-depth iterators
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | filesystem | 270 // other members as required by [input.iterators], input iterators 321 // other members as required by [input.iterators], input iterators
|
| H A D | array | 38 // iterators: 202 // iterators: 305 // iterators:
|
| H A D | iterator | 504 // [iterators.counted], counted iterators
|
| H A D | string_view | 352 // [string.view.iterators], iterators
|
| H A D | __config | 81 // - TODO(hardening): both iterators refer to the same container. 85 // a non-existent element. For iterator checks to work, bounded iterators must be enabled in the …
|
| H A D | span | 115 // [span.iterators], span iterator support
|
| H A D | set | 90 // iterators: 335 // iterators:
|
| H A D | map | 103 // iterators: 389 // iterators:
|
| H A D | deque | 76 // iterators: 698 // iterators:
|
| H A D | vector | 843 …// Vector guarantees that iterators stay valid as long as no reallocation occurs even if new eleme… 848 …// don't have a way to update existing valid iterators when the container is resized and thus have…
|
| H A D | regex | 4589 …results are not ready, this will return the result of subtracting two default-constructed iterators
|
| H A D | string | 955 …// By the Standard, string iterators are generally not guaranteed to stay valid when the container…
|
| /src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 789 HelpText<"Models iterators of C++ containers">, 808 HelpText<"Check for use of invalidated iterators">, 813 HelpText<"Check for iterators used outside their valid ranges">, 818 HelpText<"Check for use of iterators of different containers where iterators " 1653 HelpText<"Check the analyzer's understanding of C++ iterators">,
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BuiltinTypes.def | 331 // A placeholder type for OpenMP iterators.
|
| /src/contrib/googletest/docs/reference/ |
| H A D | matchers.md | 123 | `BeginEndDistanceIs(m)` | `argument` is a container whose `begin()` and `end()` iterators are sep…
|
| /src/contrib/libedit/ |
| H A D | ChangeLog | 4098 * map.c: Fix two more help iterators. Thanks Stefan Farfeleder!
|