Lines Matching refs:this

68   { return this->code_; }  in code()
73 { return this->name_; } in name()
78 { return this->reloc_type_; } in reloc_type()
83 { return this->is_deprecated_; } in is_deprecated()
88 { return this->reloc_class_; } in reloc_class()
93 { return this->is_implemented_; } in is_implemented()
98 { return this->group_index_; } in group_index()
103 { return this->checks_overflow_; } in checks_overflow()
108 { return this->size_; } in size()
113 { return this->align_; } in align()
118 { return this->uses_got_entry_; } in uses_got_entry()
123 { return this->uses_got_origin_; } in uses_got_origin()
128 { return this->uses_thumb_bit_; } in uses_thumb_bit()
133 { return this->uses_symbol_base_; } in uses_symbol_base()
138 { return this->uses_symbol_; } in uses_symbol()
144 { return this->relative_address_base_; } in relative_address_base()
180 this->children_.push_back(*p); in Tree_node()
185 for(size_t i = 0; i <this->children_.size(); ++i) in ~Tree_node()
186 delete this->children_[i]; in ~Tree_node()
192 { return this->is_leaf_; } in is_leaf()
198 gold_assert(this->is_leaf_); in name()
199 return this->name_; in name()
206 gold_assert(!this->is_leaf_); in number_of_children()
207 return this->children_.size(); in number_of_children()
214 gold_assert(!this->is_leaf_ && i < this->children_.size()); in child()
215 return this->children_[i]; in child()
227 if (this->is_leaf_) in s_expression()
228 return this->name_; in s_expression()
233 for(size_t i = 0; i <this->children_.size(); ++i) in s_expression()
234 s = s + " " + this->children_[i]->s_expression(); in s_expression()
300 return this->table_[code]; in get_reloc_property()
309 const Arm_reloc_property* arp = this->table_[code]; in get_implemented_static_reloc_property()
343 { return this->s_expression_; } in s_expression()
352 return Parse_expression("( " #op " " + this->s_expression_ + " " + \