Lines Matching refs:dotted_key
119 config::tree::define_dynamic(const std::string& dotted_key) in define_dynamic() argument
122 const detail::tree_key key = detail::parse_key(dotted_key); in define_dynamic()
140 config::tree::is_set(const std::string& dotted_key) const in is_set()
142 const detail::tree_key key = detail::parse_key(dotted_key); in is_set()
166 config::tree::push_lua(const std::string& dotted_key, lutok::state& state) const in push_lua() argument
168 const detail::tree_key key = detail::parse_key(dotted_key); in push_lua()
189 config::tree::set_lua(const std::string& dotted_key, lutok::state& state, in set_lua() argument
192 const detail::tree_key key = detail::parse_key(dotted_key); in set_lua()
218 config::tree::lookup_string(const std::string& dotted_key) const in lookup_string()
220 const detail::tree_key key = detail::parse_key(dotted_key); in lookup_string()
244 config::tree::set_string(const std::string& dotted_key, in set_string() argument
247 const detail::tree_key key = detail::parse_key(dotted_key); in set_string()
276 config::tree::all_properties(const std::string& dotted_key, in all_properties() argument
279 PRE(!strip_key || !dotted_key.empty()); in all_properties()
285 if (dotted_key.empty()) { in all_properties()
288 key = detail::parse_key(dotted_key); in all_properties()
296 INV(!dotted_key.empty()); in all_properties()
298 "'%s' given") % dotted_key); in all_properties()
305 stripped[(*iter).first.substr(dotted_key.length() + 1)] = in all_properties()