Home | History | Annotate | Download | only in processor

Lines Matching refs:Section

50 using google_breakpad::SynthMinidump::Section;
58 TEST(Section, Simple) {
60 Section section(dump);
61 section.L32(0x12345678);
62 section.Finish(0);
64 ASSERT_TRUE(section.GetContents(&contents));
68 TEST(Section, CiteLocationIn) {
70 Section section1(dump), section2(dump);
84 Section section(dump);
86 section.Append("section contents");
88 stream.CiteStreamIn(&section);
90 ASSERT_TRUE(section.GetContents(&contents));
91 string expected("section contents"
102 Section section(dump);
104 section.Append("section contents");
106 memory.CiteMemoryIn(&section);
108 ASSERT_TRUE(section.GetContents(&contents));
109 string expected("section contents"
252 Section section(dump);
253 section.Append("initial");
254 s.CiteStringIn(&section);
257 ASSERT_TRUE(section.GetContents(&contents));
263 List<Section> list(dump, 0x2442779c);
273 List<Section> list(dump, 0x26c9f498);
274 Section section1(dump);
275 section1.Append("section one contents");
279 Section section2(dump);
280 section2.Append("section two contents");
323 Section section(dump);
324 section.Append("section contents");
325 dump.Add(&section);
331 Section referencing_section(dump);
332 section.CiteLocationIn(&referencing_section);