Lines Matching refs:Section
133 StringRef Section = "*"; in parse() local
149 Section = I->slice(1, I->size() - 1); in parse()
152 Regex CheckRE(Section); in parse()
155 (Twine("malformed regex for section ") + Section + ": '" + REError) in parse()
178 if (SectionsMap.find(Section) == SectionsMap.end()) { in parse()
181 if (!M->insert(Section, LineNo, REError)) { in parse()
182 Error = (Twine("malformed section ") + Section + ": '" + REError).str(); in parse()
186 SectionsMap[Section] = Sections.size(); in parse()
190 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category]; in parse()
203 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, in inSection() argument
205 return inSectionBlame(Section, Prefix, Query, Category); in inSection()
208 unsigned SpecialCaseList::inSectionBlame(StringRef Section, StringRef Prefix, in inSectionBlame() argument
212 if (SectionIter.SectionMatcher->match(Section)) { in inSectionBlame()