Lines Matching refs:Section
134 StringRef Section = "*"; in parse() local
150 Section = I->slice(1, I->size() - 1); in parse()
153 Regex CheckRE(Section); in parse()
156 (Twine("malformed regex for section ") + Section + ": '" + REError) in parse()
179 if (SectionsMap.find(Section) == SectionsMap.end()) { in parse()
182 if (!M->insert(std::string(Section), LineNo, REError)) { in parse()
183 Error = (Twine("malformed section ") + Section + ": '" + REError).str(); in parse()
187 SectionsMap[Section] = Sections.size(); in parse()
191 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category]; in parse()
204 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, in inSection() argument
206 return inSectionBlame(Section, Prefix, Query, Category); in inSection()
209 unsigned SpecialCaseList::inSectionBlame(StringRef Section, StringRef Prefix, in inSectionBlame() argument
213 if (SectionIter.SectionMatcher->match(Section)) { in inSectionBlame()