HomeSort by relevance Sort by last modified time
    Searched refs:prettyPrint (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLAbstractAtomicProperty.java 62 public void prettyPrint(StatePrettyPrinter pp) {
63 pp.prettyPrint(mType, getStringValue());
IGLProperty.java 62 void prettyPrint(StatePrettyPrinter pp);
GLCompositeProperty.java 128 public void prettyPrint(StatePrettyPrinter pp) {
129 pp.prettyPrint(mType, null);
132 p.prettyPrint(pp);
StatePrettyPrinter.java 30 public void prettyPrint(@NonNull GLStateType name, @Nullable String value) {
42 public void prettyPrint(@NonNull String s) {
GLListProperty.java 172 public void prettyPrint(StatePrettyPrinter pp) {
173 pp.prettyPrint(mType, null);
176 pp.prettyPrint(String.format(Locale.US, "Index %d:", i));
178 p.prettyPrint(pp);
GLSparseArrayProperty.java 155 public void prettyPrint(StatePrettyPrinter pp) {
156 pp.prettyPrint(mType, null);
160 pp.prettyPrint(String.format(Locale.US, "Index %d:", key));
165 prop.prettyPrint(pp);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/
crmfdump.py 21 print(cr.prettyPrint())
ocspreqdump.py 23 print(cr.prettyPrint())
ocsprspdump.py 23 print(cr.prettyPrint())
pkcs7dump.py 25 print(contentInfo.prettyPrint())
47 print(content.prettyPrint())
snmpget.py 28 print('sending: %s' % msg.prettyPrint())
37 print('received: %s' % rMsg.prettyPrint())
cmpdump.py 24 print(pkiMsg.prettyPrint())
crldump.py 30 print(key.prettyPrint())
ocspclient.py 37 issuerSubject.prettyPrint(), userIssuer.prettyPrint()
77 assert responseStatus == rfc2560.OCSPResponseStatus('successful'), responseStatus.prettyPrint()
80 assert responseType == id_pkix_ocsp_basic, responseType.prettyPrint()
ocspserver.py 37 issuerSubject.prettyPrint(), userIssuer.prettyPrint()
78 assert responseStatus == rfc2560.OCSPResponseStatus('successful'), responseStatus.prettyPrint()
81 assert responseType == id_pkix_ocsp_basic, responseType.prettyPrint()
pkcs10dump.py 31 print(cert.prettyPrint())
pkcs1dump.py 34 print(key.prettyPrint())
pkcs8dump.py 33 print(key.prettyPrint())
x509dump.py 32 print(cert.prettyPrint())
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 76 public static String prettyPrint(
90 printer.prettyPrint(-1, document, null, null, sb, false /*openTagOnly*/);
99 public static String prettyPrint(@NonNull Node node, boolean endWithNewline) {
100 return prettyPrint(node, EclipseXmlFormatPreferences.create(), XmlFormatStyle.get(node),
125 public static String prettyPrint(
134 printer.prettyPrint(-1, node, null, null, sb, false /*openTagOnly*/);
  /frameworks/opt/bitmap/src/com/android/bitmap/
ContiguousFIFOAggregator.java 109 Log.d(TAG, String.format("ContiguousFIFOAggregator >> tasks: %s", prettyPrint()));
140 Log.d(TAG, String.format("ContiguousFIFOAggregator < tasks: %s", prettyPrint()));
178 Log.d(TAG, String.format("ContiguousFIFOAggregator ++ tasks: %s", prettyPrint()));
211 Log.d(TAG, String.format("ContiguousFIFOAggregator - tasks: %s", prettyPrint()));
247 private String prettyPrint() {
  /external/skia/src/gpu/
GrAuditTrail.cpp 94 SkString GrAuditTrail::toJson(bool prettyPrint) const {
100 if (prettyPrint) {
  /external/skia/include/private/
GrAuditTrail.h 94 SkString toJson(bool prettyPrint = false) const;
  /sdk/templates/docs/
default.js 18 prettyPrint();
  /external/autotest/site_utils/rpm_control_system/
BeautifulSoup.py 697 prettyPrint=False, indentLevel=0):
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):
811 s.append(c.__str__(encoding, prettyPrint, indentLevel)
    [all...]

Completed in 262 milliseconds

1 2 3 4 5 6 7 8 910