Home
last modified time | relevance | path

Searched refs:XMLSectionDepth (Results 1 – 1 of 1) sorted by relevance

/petsc/src/sys/logging/handler/impls/nested/
H A Dxmlviewer.c16 int XMLSectionDepth; in PetscViewerXMLStartSection() local
20 PetscCall(PetscCIntCast(XMLSectionDepthPetsc, &XMLSectionDepth)); in PetscViewerXMLStartSection()
22 PetscCall(PetscViewerASCIIPrintf(viewer, "%*s<%s>\n", 2 * XMLSectionDepth, "", name)); in PetscViewerXMLStartSection()
24 …PetscCall(PetscViewerASCIIPrintf(viewer, "%*s<%s desc=\"%s\">\n", 2 * XMLSectionDepth, "", name, d… in PetscViewerXMLStartSection()
48 int XMLSectionDepth; in PetscViewerXMLEndSection() local
52 PetscCall(PetscCIntCast(XMLSectionDepthPetsc, &XMLSectionDepth)); in PetscViewerXMLEndSection()
53 if (XMLSectionDepth > 0) PetscCall(PetscViewerASCIIPopTab(viewer)); in PetscViewerXMLEndSection()
55 PetscCall(PetscCIntCast(XMLSectionDepthPetsc, &XMLSectionDepth)); in PetscViewerXMLEndSection()
56 PetscCall(PetscViewerASCIIPrintf(viewer, "%*s</%s>\n", 2 * XMLSectionDepth, "", name)); in PetscViewerXMLEndSection()
71 int XMLSectionDepth; in PetscViewerXMLPutString() local
[all …]