Home
last modified time | relevance | path

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

/dports/print/py-reportlab/reportlab-3.5.68/tests/
H A Dtest_platypus_programming.py32 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile
43DocIf('i>3',Paragraph('The value of i is larger than 3',normal),Paragraph('The value of i is not l…
44DocIf('i==3',Paragraph('The value of i is equal to 3',normal),Paragraph('The value of i is not equ…
45DocIf('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
114DocIf('i>3',Paragraph('The value of i is larger than 3',bt),Paragraph('The value of i is not large…
115DocIf('i==3',Paragraph('The value of i is equal to 3',bt),Paragraph('The value of i is not equal t…
116DocIf('i<3',Paragraph('The value of i is less than 3',bt),Paragraph('The value of i is not less th…
H A Dtest_platypus_xref.py72 from reportlab.platypus.flowables import DocAssign, DocExec, DocPara, DocIf, DocWhile
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/platypus/
H A Ddoctemplate.py419 return not (isinstance(f,(_ContainerSpace,DocIf,DocWhile)) or getattr(f,'locChanger',False))
H A Dflowables.py2535 class DocIf(DocPara): class
2550 class DocWhile(DocIf):