Home
last modified time | relevance | path

Searched refs:prettyPrint (Results 1 – 25 of 70) sorted by relevance

123

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmList.java77 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()
DCsmConditional.java104 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()
DCsmSequence.java48 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmSequence
49 elements.forEach(e -> e.prettyPrint(node, printer)); in prettyPrint()
DCsmMix.java31 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmMix
32 elements.forEach(e -> e.prettyPrint(node, printer)); in prettyPrint()
DCsmNone.java30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmNone
DCsmIndent.java30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmIndent
DCsmUnindent.java30 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmUnindent
DCsmChar.java36 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmChar
DCsmString.java36 public void prettyPrint(Node node, SourcePrinter printer) { in prettyPrint() method in CsmString
/external/python/pyasn1-modules/tests/
Dtest_rfc2459.py52 assert asn1Object.prettyPrint()
62 assert asn1Object.prettyPrint()
88 assert asn1Object.prettyPrint()
98 assert asn1Object.prettyPrint()
126 assert asn1Object.prettyPrint()
136 assert asn1Object.prettyPrint()
Dtest_rfc2315.py152 assert asn1Object.prettyPrint()
162 assert asn1Object.prettyPrint()
Dtest_rfc2560.py38 assert asn1Object.prettyPrint()
77 assert asn1Object.prettyPrint()
Dtest_rfc5280.py52 assert asn1Object.prettyPrint()
78 assert asn1Object.prettyPrint()
Dtest_rfc5208.py44 assert asn1Object.prettyPrint()
70 assert asn1Object.prettyPrint()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
DConcreteSyntaxModelAcceptanceTest.java39 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/
Dcmcdump.py36 print(layer.prettyPrint())
47 print(layer.prettyPrint())
58 print(layer.prettyPrint())
Docspclient.py59 issuerSubject.prettyPrint(), userIssuer.prettyPrint()
101 assert responseStatus == rfc2560.OCSPResponseStatus('successful'), responseStatus.prettyPrint()
104 assert responseType == rfc2560.id_pkix_ocsp_basic, responseType.prettyPrint()
Dpkcs7dump.py35 print(contentInfo.prettyPrint())
55 print(content.prettyPrint())
Dsnmpget.py37 print('sending: %s' % msg.prettyPrint())
47 print('received: %s' % rMsg.prettyPrint())
Dcrmfdump.py32 print(cr.prettyPrint())
Docsprspdump.py32 print(cr.prettyPrint())
Docspreqdump.py32 print(cr.prettyPrint())
Dx509dump-rfc5280.py44 print(cert.prettyPrint())
/external/python/pyasn1/pyasn1/type/
Dbase.py59 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/
DBeautifulSoup.py697 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 …]

123