Searched refs:DocIf (Results 1 – 4 of 4) sorted by relevance
/dports/print/py-reportlab/reportlab-3.5.68/tests/ |
H A D | test_platypus_programming.py | 32 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile 43 …DocIf('i>3',Paragraph('The value of i is larger than 3',normal),Paragraph('The value of i is not l… 44 …DocIf('i==3',Paragraph('The value of i is equal to 3',normal),Paragraph('The value of i is not equ… 45 …DocIf('i<3',Paragraph('The value of i is less than 3',normal),Paragraph('The value of i is not les… 55 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile 114 …DocIf('i>3',Paragraph('The value of i is larger than 3',bt),Paragraph('The value of i is not large… 115 …DocIf('i==3',Paragraph('The value of i is equal to 3',bt),Paragraph('The value of i is not equal t… 116 …DocIf('i<3',Paragraph('The value of i is less than 3',bt),Paragraph('The value of i is not less th…
|
H A D | test_platypus_xref.py | 72 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile
|
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/platypus/ |
H A D | doctemplate.py | 419 return not (isinstance(f,(_ContainerSpace,DocIf,DocWhile)) or getattr(f,'locChanger',False))
|
H A D | flowables.py | 2535 class DocIf(DocPara): class 2550 class DocWhile(DocIf):
|