Lines Matching defs:pr
89 static void RegisterTypes(IPropertyRegister& pr, TypeList<List...>)
91 (pr.RegisterAny(CreateShared<DefaultAnyBuilder<Any<List>>>()), ...);
92 (pr.RegisterAny(CreateShared<DefaultAnyBuilder<ArrayAny<List>>>()), ...);
96 static void UnregisterTypes(IPropertyRegister& pr, TypeList<List...>)
98 (pr.UnregisterAny(ArrayAny<List>::StaticGetClassId()), ...);
99 (pr.UnregisterAny(Any<List>::StaticGetClassId()), ...);
104 auto& pr = registry.GetPropertyRegister();
105 RegisterTypes(pr, BasicTypes {});
106 RegisterTypes(pr, ObjectTypes {});
111 auto& pr = registry.GetPropertyRegister();
112 UnregisterTypes(pr, ObjectTypes {});
113 UnregisterTypes(pr, BasicTypes {});