Home | History | Annotate | Download | only in python

Lines Matching refs:map_type

92       typedef std::map<K,T,Compare,Alloc > map_type;
93 static int asptr(PyObject *obj, map_type **val) {
102 res = traits_asptr_stdseq<map_type, std::pair<K, T> >::asptr(items, val);
104 map_type *p;
105 res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<map_type>(),0);
115 typedef std::map<K,T,Compare,Alloc > map_type;
116 typedef typename map_type::const_iterator const_iterator;
117 typedef typename map_type::size_type size_type;
119 static PyObject *asdict(const map_type& map) {
139 static PyObject *from(const map_type& map) {
140 swig_type_info *desc = swig::type_info<map_type>();
142 return SWIG_InternalNewPointerObj(new map_type(map), desc, SWIG_POINTER_OWN);