/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
D | CsmList.java | 77 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmList 84 preceeding.prettyPrint(node, printer); in prettyPrint() 88 separatorPre.prettyPrint(node, printer); in prettyPrint() 92 separatorPost.prettyPrint(node, printer); in prettyPrint() 96 following.prettyPrint(node, printer); in prettyPrint() 104 preceeding.prettyPrint(node, printer); in prettyPrint() 108 separatorPre.prettyPrint(node, printer); in prettyPrint() 112 separatorPost.prettyPrint(node, printer); in prettyPrint() 116 following.prettyPrint(node, printer); in prettyPrint()
|
D | CsmConditional.java | 104 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmConditional 110 thenElement.prettyPrint(node, printer); in prettyPrint() 112 elseElement.prettyPrint(node, printer); in prettyPrint()
|
D | CsmSequence.java | 48 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmSequence 49 elements.forEach(e -> e.prettyPrint(node, printer)); in prettyPrint()
|
D | CsmMix.java | 31 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmMix 32 elements.forEach(e -> e.prettyPrint(node, printer)); in prettyPrint()
|
D | CsmNone.java | 30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmNone
|
D | CsmIndent.java | 30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmIndent
|
D | CsmUnindent.java | 30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmUnindent
|
D | CsmChar.java | 36 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmChar
|
D | CsmString.java | 36 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmString
|
/external/python/pyasn1-modules/tests/ |
D | test_rfc2459.py | 52 assert asn1Object.prettyPrint() 62 assert asn1Object.prettyPrint() 88 assert asn1Object.prettyPrint() 98 assert asn1Object.prettyPrint() 126 assert asn1Object.prettyPrint() 136 assert asn1Object.prettyPrint()
|
D | test_rfc2315.py | 152 assert asn1Object.prettyPrint() 162 assert asn1Object.prettyPrint()
|
D | test_rfc2560.py | 38 assert asn1Object.prettyPrint() 77 assert asn1Object.prettyPrint()
|
D | test_rfc5280.py | 52 assert asn1Object.prettyPrint() 78 assert asn1Object.prettyPrint()
|
D | test_rfc5208.py | 44 assert asn1Object.prettyPrint() 70 assert asn1Object.prettyPrint()
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/ |
D | ConcreteSyntaxModelAcceptanceTest.java | 39 private String prettyPrint(Node node) { in prettyPrint() method in ConcreteSyntaxModelAcceptanceTest 50 assertEquals(prettyPrintedExpectation("PrettyPrintVisitor"), prettyPrint(cu)); in printingExamplePrettyPrintVisitor() 56 assertEquals(prettyPrintedExpectation("JavaConcepts"), prettyPrint(cu)); in printingExampleJavaConcepts()
|
/external/python/pyasn1-modules/tools/ |
D | cmcdump.py | 36 print(layer.prettyPrint()) 47 print(layer.prettyPrint()) 58 print(layer.prettyPrint())
|
D | ocspclient.py | 59 issuerSubject.prettyPrint(), userIssuer.prettyPrint() 101 assert responseStatus == rfc2560.OCSPResponseStatus('successful'), responseStatus.prettyPrint() 104 assert responseType == rfc2560.id_pkix_ocsp_basic, responseType.prettyPrint()
|
D | pkcs7dump.py | 35 print(contentInfo.prettyPrint()) 55 print(content.prettyPrint())
|
D | snmpget.py | 37 print('sending: %s' % msg.prettyPrint()) 47 print('received: %s' % rMsg.prettyPrint())
|
D | crmfdump.py | 32 print(cr.prettyPrint())
|
D | ocsprspdump.py | 32 print(cr.prettyPrint())
|
D | ocspreqdump.py | 32 print(cr.prettyPrint())
|
D | x509dump-rfc5280.py | 44 print(cert.prettyPrint())
|
/external/python/pyasn1/pyasn1/type/ |
D | base.py | 59 return self.prettyPrint() 132 def prettyPrint(self, scope=0): member in Asn1ItemBase 260 value = self.prettyPrint() 425 def prettyPrint(self, scope=0): member in AbstractSimpleAsn1Item
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 697 prettyPrint=False, indentLevel=0): argument 753 if prettyPrint: 757 contents = self.renderContents(encoding, prettyPrint, indentContents) 765 if prettyPrint: 768 if prettyPrint: 771 if prettyPrint and contents and contents[-1] != "\n": 773 if prettyPrint and closeTag: 776 if prettyPrint and closeTag and self.nextSibling: 802 prettyPrint=False, indentLevel=0): argument 811 s.append(c.__str__(encoding, prettyPrint, indentLevel)) [all …]
|