Lines Matching refs:loclist

233 	const std::vector<std::string>& loclist = GetLocationVector(lowerd);  in SGetValue()  local
234 sectionsMap_t::const_iterator sit = root_section.sections.find(loclist[0]); in SGetValue()
236 value = "Section " + loclist[0] + " missing in file " + filename; in SGetValue()
240 searchpath = loclist[0]; in SGetValue()
241 for (unsigned int i=1; i < loclist.size()-1; ++i) { in SGetValue()
244 searchpath += loclist[i]; in SGetValue()
245 sit = sectionptr->sections.find(loclist[i]); in SGetValue()
253 searchpath += loclist[loclist.size()-1]; in SGetValue()
256 sectionptr->values.find(loclist[loclist.size()-1]); in SGetValue()
288 const std::vector<std::string>& loclist = GetLocationVector(lowerd); in GetAllValues() local
289 sectionsMap_t::const_iterator sit = root_section.sections.find(loclist[0]); in GetAllValues()
292 loclist[0].c_str(), filename.c_str()); in GetAllValues()
296 std::string searchpath = loclist[0]; // for error-messages in GetAllValues()
297 for (unsigned int i=1; i < loclist.size(); i++) { in GetAllValues()
299 searchpath += loclist[i]; in GetAllValues()
300 sit = sectionptr->sections.find(loclist[i]); in GetAllValues()
314 const std::vector<std::string>& loclist = GetLocationVector(lowerd); in GetSectionList() local
317 if (!loclist[0].empty()) { in GetSectionList()
319 for (unsigned int i = 0; i < loclist.size(); i++) { in GetSectionList()
320 searchpath += loclist[i]; in GetSectionList()
321 if (sectionsptr->find(loclist[i]) == sectionsptr->end()) { in GetSectionList()
326 sectionsptr = &sectionsptr->find(loclist[i])->second->sections; in GetSectionList()
341 const std::vector<std::string>& loclist = GetLocationVector(lowerd); in SectionExist() local
342 sectionsMap_t::const_iterator sit = root_section.sections.find(loclist[0]); in SectionExist()
347 for (unsigned int i = 1; i < loclist.size(); i++) { in SectionExist()
348 sit = sectionptr->sections.find(loclist[i]); in SectionExist()
352 sectionptr = sectionptr->sections[loclist[i]]; in SectionExist()
360 std::vector<std::string> loclist; in GetLocationVector() local
365 loclist.push_back(lowerd.substr(start, next-start)); in GetLocationVector()
368 loclist.push_back(lowerd.substr(start)); in GetLocationVector()
370 return loclist; in GetLocationVector()