Lines Matching refs:from
924 Symbol::override_base_with_special(const Symbol* from) in override_base_with_special() argument
926 bool same_name = this->name_ == from->name_; in override_base_with_special()
933 this->source_ = from->source_; in override_base_with_special()
934 switch (from->source_) in override_base_with_special()
937 this->u_.from_object = from->u_.from_object; in override_base_with_special()
940 this->u_.in_output_data = from->u_.in_output_data; in override_base_with_special()
943 this->u_.in_output_segment = from->u_.in_output_segment; in override_base_with_special()
961 this->version_ = from->version_; in override_base_with_special()
963 this->type_ = from->type_; in override_base_with_special()
964 this->binding_ = from->binding_; in override_base_with_special()
965 this->override_visibility(from->visibility_); in override_base_with_special()
966 this->nonvis_ = from->nonvis_; in override_base_with_special()
971 if (from->needs_dynsym_entry_) in override_base_with_special()
973 if (from->needs_dynsym_value_) in override_base_with_special()
976 this->is_predefined_ = from->is_predefined_; in override_base_with_special()
980 gold_assert(!from->is_forwarder_); in override_base_with_special()
981 gold_assert(!from->has_plt_offset()); in override_base_with_special()
982 gold_assert(!from->has_warning_); in override_base_with_special()
983 gold_assert(!from->is_copied_from_dynobj_); in override_base_with_special()
984 gold_assert(!from->is_forced_local_); in override_base_with_special()
991 Sized_symbol<size>::override_with_special(const Sized_symbol<size>* from) in override_with_special() argument
993 this->override_base_with_special(from); in override_with_special()
994 this->value_ = from->value_; in override_with_special()
995 this->symsize_ = from->symsize_; in override_with_special()