Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine StringAttributeMap_deserialize(buffer,map,rc)integer,intent(in)::buffer(:)type(StringAttributeMap),intent(inout)::mapinteger,optional,intent(out)::rccharacter(len=:),allocatable::keyinteger::length,n,n0,n1,n2type(Attribute)::attrinteger::statusn=1call deserialize_intrinsic(buffer(n:),length)_ASSERT(length==size(buffer),"length does not match")n0=serialize_buffer_length(length)n=n+n0length=length-n0map=StringAttributeMap()do while(length>0)call deserialize_intrinsic(buffer(n:),key)n1=serialize_buffer_length(key)n=n+n1!allocate(attr)call deserialize_intrinsic(buffer(n:),n2)call Attribute_deserialize(buffer(n:n+n2-1),attr,status)_VERIFY(status)n=n+n2length=length-n1-n2call map%insert(key,attr)deallocate(key)!deallocate(attr)enddo_RETURN(_SUCCESS)end subroutine StringAttributeMap_deserialize