Lines Matching defs:cont
92 static void AddImpl(Container& cont, const Type& p)
94 for (auto& pp : cont) {
99 cont.push_back(p);
103 static void RemoveImpl(Container& cont, const Type& p)
105 for (auto it = cont.begin(); it != cont.end(); ++it) {
107 cont.erase(it);
141 if (auto cont = data->GetPropertyContainer()) {
142 auto vec = cont->GetAll<IProperty>();
156 static NewContainer GetAllImpl(const Container& cont)
159 res.reserve(cont.size());
160 for (const auto& v : cont) {
204 static Ret GetByName(Container&& cont, BASE_NS::string_view name)
206 for (auto&& t : cont) {