Lines Matching refs:store

76   static bool GetProperty(const PropertyStore& store, const std::string& name,  in GetProperty()  argument
78 return store.GetBoolProperty(name, storage, error); in GetProperty()
81 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
83 return store.GetInt16Property(name, storage, error); in GetProperty()
86 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
88 return store.GetInt32Property(name, storage, error); in GetProperty()
91 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
93 return store.GetStringProperty(name, storage, error); in GetProperty()
96 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
98 return store.GetStringmapProperty(name, storage, error); in GetProperty()
101 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
103 return store.GetStringmapsProperty(name, storage, error); in GetProperty()
106 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
108 return store.GetStringsProperty(name, storage, error); in GetProperty()
111 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
113 return store.GetUint8Property(name, storage, error); in GetProperty()
116 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
118 return store.GetUint16Property(name, storage, error); in GetProperty()
121 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
123 return store.GetUint16sProperty(name, storage, error); in GetProperty()
126 static bool GetProperty(const PropertyStore& store, const std::string& name, in GetProperty() argument
128 return store.GetUint32Property(name, storage, error); in GetProperty()
134 PropertyStore* store, const std::string& name, bool* storage) { in RegisterProperty() argument
135 store->RegisterBool(name, storage); in RegisterProperty()
139 PropertyStore* store, const std::string& name, int16_t* storage) { in RegisterProperty() argument
140 store->RegisterInt16(name, storage); in RegisterProperty()
144 PropertyStore* store, const std::string& name, int32_t* storage) { in RegisterProperty() argument
145 store->RegisterInt32(name, storage); in RegisterProperty()
149 PropertyStore* store, const std::string& name, std::string* storage) { in RegisterProperty() argument
150 store->RegisterString(name, storage); in RegisterProperty()
154 PropertyStore* store, const std::string& name, Stringmap* storage) { in RegisterProperty() argument
155 store->RegisterStringmap(name, storage); in RegisterProperty()
159 PropertyStore* store, const std::string& name, Stringmaps* storage) { in RegisterProperty() argument
160 store->RegisterStringmaps(name, storage); in RegisterProperty()
164 PropertyStore* store, const std::string& name, Strings* storage) { in RegisterProperty() argument
165 store->RegisterStrings(name, storage); in RegisterProperty()
169 PropertyStore* store, const std::string& name, uint8_t* storage) { in RegisterProperty() argument
170 store->RegisterUint8(name, storage); in RegisterProperty()
174 PropertyStore* store, const std::string& name, uint16_t* storage) { in RegisterProperty() argument
175 store->RegisterUint16(name, storage); in RegisterProperty()
179 PropertyStore* store, const std::string& name, Uint16s* storage) { in RegisterProperty() argument
180 store->RegisterUint16s(name, storage); in RegisterProperty()
184 PropertyStore* store, const std::string& name, uint32_t* storage) { in RegisterProperty() argument
185 store->RegisterUint32(name, storage); in RegisterProperty()