| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_list.h | 133 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() 135 current_ = current_->next; 139 return current_ != other.current_; 142 return *current_; 145 ItemTy *current_;
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| H A D | sanitizer_list.h | 135 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() 137 current_ = current_->next; 141 return current_ != other.current_; 144 return *current_; 147 ItemTy *current_;
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_list.h | 134 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() 136 current_ = current_->next; 140 return current_ != other.current_; 143 return *current_; 146 ItemTy *current_;
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | descriptors.cc | 68 stack_top_(-1), current_(0), limit_(8192 - 16) in Descriptors() 170 ++this->current_; in open() 171 if (this->current_ >= this->limit_) in open() 184 this->limit_ = this->current_ - 16; in open() 206 || (this->current_ > this->limit_ && !pod->is_write)) in release() 211 --this->current_; in release() 249 --this->current_; in close_some_descriptor()
|
| H A D | plugin.h | 156 { this->current_ = plugins_.end(); } in Plugin_manager() 233 gold_assert(this->current_ != plugins_.end()); in set_claim_file_handler() 234 (*this->current_)->set_claim_file_handler(handler); in set_claim_file_handler() 241 gold_assert(this->current_ != plugins_.end()); in set_all_symbols_read_handler() 242 (*this->current_)->set_all_symbols_read_handler(handler); in set_all_symbols_read_handler() 249 gold_assert(this->current_ != plugins_.end()); in set_new_input_handler() 250 (*this->current_)->set_new_input_handler(handler); in set_new_input_handler() 257 gold_assert(this->current_ != plugins_.end()); in set_cleanup_handler() 258 (*this->current_)->set_cleanup_handler(handler); in set_cleanup_handler() 373 Plugin_list::iterator current_; variable
|
| H A D | cref.cc | 47 : objects_(), archives_(), current_(&this->objects_) in Cref_inputs() 121 Objects* current_; member in gold::Cref_inputs 129 this->current_->push_back(object); in add_object() 137 gold_assert(this->current_ == &this->objects_); in add_archive_start() 145 this->current_ = this->archives_[archive->name()].objects; in add_archive_start() 153 gold_assert(this->current_ != &this->objects_); in add_archive_stop() 154 this->current_ = &this->objects_; in add_archive_stop()
|
| H A D | descriptors.h | 92 int current_; variable
|
| H A D | script.cc | 219 current_(input_string), mode_(LINKER_SCRIPT), in Lex() 350 const char* current_; member in gold::Lex 882 this->token_ = this->get_token(&this->current_); in next_token() 887 && (static_cast<size_t>(this->current_ - this->input_string_) in next_token() 889 this->token_ = this->make_invalid_token(this->current_); in next_token()
|
| H A D | plugin.cc | 730 for (this->current_ = this->plugins_.begin(); in load_plugins() 731 this->current_ != this->plugins_.end(); in load_plugins() 732 ++this->current_) in load_plugins() 733 (*this->current_)->load(); in load_plugins()
|
| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | descriptors.cc | 68 stack_top_(-1), current_(0), limit_(8192 - 16) in Descriptors() 170 ++this->current_; in open() 171 if (this->current_ >= this->limit_) in open() 184 this->limit_ = this->current_ - 16; in open() 206 || (this->current_ > this->limit_ && !pod->is_write)) in release() 211 --this->current_; in release() 249 --this->current_; in close_some_descriptor()
|
| H A D | plugin.h | 156 { this->current_ = plugins_.end(); } in Plugin_manager() 233 gold_assert(this->current_ != plugins_.end()); in set_claim_file_handler() 234 (*this->current_)->set_claim_file_handler(handler); in set_claim_file_handler() 241 gold_assert(this->current_ != plugins_.end()); in set_all_symbols_read_handler() 242 (*this->current_)->set_all_symbols_read_handler(handler); in set_all_symbols_read_handler() 249 gold_assert(this->current_ != plugins_.end()); in set_new_input_handler() 250 (*this->current_)->set_new_input_handler(handler); in set_new_input_handler() 257 gold_assert(this->current_ != plugins_.end()); in set_cleanup_handler() 258 (*this->current_)->set_cleanup_handler(handler); in set_cleanup_handler() 373 Plugin_list::iterator current_; variable
|
| H A D | cref.cc | 47 : objects_(), archives_(), current_(&this->objects_) in Cref_inputs() 121 Objects* current_; member in gold::Cref_inputs 129 this->current_->push_back(object); in add_object() 137 gold_assert(this->current_ == &this->objects_); in add_archive_start() 145 this->current_ = this->archives_[archive->name()].objects; in add_archive_start() 153 gold_assert(this->current_ != &this->objects_); in add_archive_stop() 154 this->current_ = &this->objects_; in add_archive_stop()
|
| H A D | descriptors.h | 92 int current_; variable
|
| H A D | script.cc | 219 current_(input_string), mode_(LINKER_SCRIPT), in Lex() 350 const char* current_; member in gold::Lex 882 this->token_ = this->get_token(&this->current_); in next_token() 887 && (static_cast<size_t>(this->current_ - this->input_string_) in next_token() 889 this->token_ = this->make_invalid_token(this->current_); in next_token()
|
| H A D | plugin.cc | 730 for (this->current_ = this->plugins_.begin(); in load_plugins() 731 this->current_ != this->plugins_.end(); in load_plugins() 732 ++this->current_) in load_plugins() 733 (*this->current_)->load(); in load_plugins()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-param-util.h | 779 current_(is_end ? end_ : begin_) { in IteratorImpl() 792 ++std::get<sizeof...(T) - 1>(current_); in Advance() 819 (same = same && std::get<I>(current_) == in Equals() 820 std::get<I>(typed_other->current_))...}; in Equals() 828 if (std::get<ThisI>(current_) != std::get<ThisI>(end_)) return; in AdvanceIfEnd() 837 std::get<ThisI>(current_) = std::get<ThisI>(begin_); in AdvanceIfEnd() 838 ++std::get<NextI>(current_); in AdvanceIfEnd() 844 current_value_ = std::make_shared<ParamType>(*std::get<I>(current_)...); in ComputeCurrentValue() 849 (at_end = at_end || std::get<I>(current_) == std::get<I>(end_))...}; in AtEnd() 857 std::tuple<typename ParamGenerator<T>::iterator...> current_; variable
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
| H A D | ranges | 2860 // current of outer-iterator. current is equivalent to current_ if 2861 // V models forward_range, and parent_->current_ otherwise.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | ChangeLog-1995 | 2136 * decl.c (start_function): Clear current_{base,member}_init_list. 2143 (push_cp_function_context): Save current_{base,member}_init_list. 2670 current_{member,base}_init_list in push_cp_function_context.
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| H A D | ranges | 3116 // current of outer-iterator. current is equivalent to current_ if 3117 // V models forward_range, and parent_->current_ otherwise.
|
| /netbsd-src/external/gpl2/groff/dist/ |
| H A D | ChangeLog.118 | 3294 `current_{page,glyph}color'. New member functions `put_hex',
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | ChangeLog-1998 | 8129 (expand_function_start): Set current_ variable, maybe emit return
|
| H A D | ChangeLog-2020 | 13890 current_{file,line,col} is different from xloc members.
|