Lines Matching refs:Section
52 using google_breakpad::test_assembler::Section;
54 class CFISection: public Section {
100 : Section(endianness), address_size_(address_size), eh_frame_(eh_frame), in Section() function
175 Section::Append(endianness(), address_size_, address); in Address()
179 Section::Append(endianness(), address_size_, address); in Address()
202 CFISection &Mark(Label *label) { Section::Mark(label); return *this; } in Mark()
203 CFISection &D8(uint8_t v) { Section::D8(v); return *this; } in D8()
204 CFISection &D16(uint16_t v) { Section::D16(v); return *this; } in D16()
205 CFISection &D16(Label v) { Section::D16(v); return *this; } in D16()
206 CFISection &D32(uint32_t v) { Section::D32(v); return *this; } in D32()
207 CFISection &D32(const Label &v) { Section::D32(v); return *this; } in D32()
208 CFISection &D64(uint64_t v) { Section::D64(v); return *this; } in D64()
209 CFISection &D64(const Label &v) { Section::D64(v); return *this; } in D64()
210 CFISection &LEB128(long long v) { Section::LEB128(v); return *this; } in LEB128()
211 CFISection &ULEB128(uint64_t v) { Section::ULEB128(v); return *this; } in ULEB128()