Lines Matching refs:current_section
52 Section& current_section) { in ParseAdditionalNamespaces() argument
58 EXPECT_FALSE(MapContainsKey(current_section.namespaces, namespace_name)) in ParseAdditionalNamespaces()
62 current_section.namespaces[namespace_name] = new_namespace; in ParseAdditionalNamespaces()
95 Section& current_section, const std::string& line) { in ParseLinkList() argument
102 EXPECT_TRUE(MapContainsKey(current_section.namespaces, namespace_to)) in ParseLinkList()
107 ¤t_section.namespaces[namespace_to]; in ParseLinkList()
114 Namespace& current_namespace, Section& current_section, in ParseLink() argument
124 ASSERT_TRUE(MapContainsKey(current_section.namespaces, namespace_to)) in ParseLink()
125 << "To namespace does not exist in section " << current_section.name in ParseLink()
146 Section& current_section, in ParseNamespaceCommand() argument
148 ASSERT_TRUE(MapContainsKey(current_section.namespaces, namespace_name)) in ParseNamespaceCommand()
150 << current_section.name << " : " << line; in ParseNamespaceCommand()
151 Namespace& current_namespace = current_section.namespaces[namespace_name]; in ParseNamespaceCommand()
181 property_descs, value, current_namespace, current_section, line); in ParseNamespaceCommand()
188 current_section, in ParseNamespaceCommand()
201 Section* current_section = nullptr; in ParseConfiguration() local
222 current_section = &conf.sections[section_name]; in ParseConfiguration()
227 if (current_section == nullptr) { in ParseConfiguration()
231 ParseAdditionalNamespaces(match, *current_section); in ParseConfiguration()
243 *current_section, in ParseConfiguration()