Lines Matching refs:name
39 Target::do_is_local_label_name(const char* name) const in do_is_local_label_name()
42 if (name[0] == '.' && name[1] == 'L') in do_is_local_label_name()
47 if (name[0] == '.' && name[1] == '.') in do_is_local_label_name()
56 if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_') in do_is_local_label_name()
69 const std::string& name, in do_make_elf_object_implementation() argument
81 new Sized_relobj_file<size, big_endian>(name, input_file, offset, ehdr); in do_make_elf_object_implementation()
88 new Sized_dynobj<size, big_endian>(name, input_file, offset, ehdr); in do_make_elf_object_implementation()
95 name.c_str(), et); in do_make_elf_object_implementation()
106 Target::do_make_elf_object(const std::string& name, Input_file* input_file, in do_make_elf_object() argument
109 return this->do_make_elf_object_implementation<32, false>(name, input_file, in do_make_elf_object()
116 Target::do_make_elf_object(const std::string& name, Input_file* input_file, in do_make_elf_object() argument
119 return this->do_make_elf_object_implementation<32, true>(name, input_file, in do_make_elf_object()
126 Target::do_make_elf_object(const std::string& name, Input_file* input_file, in do_make_elf_object() argument
129 return this->do_make_elf_object_implementation<64, false>(name, input_file, in do_make_elf_object()
136 Target::do_make_elf_object(const std::string& name, Input_file* input_file, in do_make_elf_object() argument
139 return this->do_make_elf_object_implementation<64, true>(name, input_file, in do_make_elf_object()
145 Target::do_make_output_section(const char* name, elfcpp::Elf_Word type, in do_make_output_section() argument
148 return new Output_section(name, type, flags); in do_make_output_section()
172 object->name().c_str()); in do_calls_non_split()