• Home
  • Raw
  • Download

Lines Matching refs:section_param

36 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) {  in Set()  argument
38 … property_type, std::move(section_param), std::move(property_param), std::to_string(value_param)); in Set()
43 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
47 std::move(section_param), in Set()
54 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
56 …property_type, std::move(section_param), std::move(property_param), common::ToString(value_param)); in Set()
61 …PropertyType property_type, std::string section_param, std::string property_param, T value_param) { in Set() argument
63 property_type, std::move(section_param), std::move(property_param), std::move(value_param)); in Set()
68 …PropertyType property_type, std::string section_param, std::string property_param, const T& value_… in Set() argument
70 …property_type, std::move(section_param), std::move(property_param), value_param.ToLegacyConfigStri… in Set()
80 …PropertyType property_type, std::string section_param, std::string property_param, const T& value_… in Set() argument
87 …property_type, std::move(section_param), std::move(property_param), common::StringJoin(str_values,… in Set()
91 …PropertyType property_type, std::string section_param, std::string property_param, std::string val… in Set() argument
93 …EntryType::SET, property_type, std::move(section_param), std::move(property_param), std::move(valu… in Set()
96 static MutationEntry Remove(PropertyType property_type, std::string section_param) { in Remove() argument
97 return MutationEntry(EntryType::REMOVE_SECTION, property_type, std::move(section_param)); in Remove()
100 …static MutationEntry Remove(PropertyType property_type, std::string section_param, std::string pro… in Remove() argument
102 … EntryType::REMOVE_PROPERTY, property_type, std::move(section_param), std::move(property_param)); in Remove()
112 std::string section_param,