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

1 2 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmList.java 77 public void prettyPrint(Node node, SourcePrinter printer) {
84 preceeding.prettyPrint(node, printer);
88 separatorPre.prettyPrint(node, printer);
92 separatorPost.prettyPrint(node, printer);
96 following.prettyPrint(node, printer);
104 preceeding.prettyPrint(node, printer);
108 separatorPre.prettyPrint(node, printer);
112 separatorPost.prettyPrint(node, printer);
116 following.prettyPrint(node, printer);
CsmNone.java 30 public void prettyPrint(Node node, SourcePrinter printer) {
CsmSequence.java 48 public void prettyPrint(Node node, SourcePrinter printer) {
49 elements.forEach(e -> e.prettyPrint(node, printer));
CsmIndent.java 30 public void prettyPrint(Node node, SourcePrinter printer) {
CsmUnindent.java 30 public void prettyPrint(Node node, SourcePrinter printer) {
CsmChar.java 36 public void prettyPrint(Node node, SourcePrinter printer) {
CsmSingleReference.java 41 public void prettyPrint(Node node, SourcePrinter printer) {
CsmString.java 36 public void prettyPrint(Node node, SourcePrinter printer) {
CsmMix.java 31 public void prettyPrint(Node node, SourcePrinter printer) {
32 elements.forEach(e -> e.prettyPrint(node, printer));
CsmConditional.java 104 public void prettyPrint(Node node, SourcePrinter printer) {
110 thenElement.prettyPrint(node, printer);
112 elseElement.prettyPrint(node, printer);
CsmAttribute.java 42 public void prettyPrint(Node node, SourcePrinter printer) {
CsmComment.java 53 public void prettyPrint(Node node, SourcePrinter printer) {
CsmOrphanCommentsEnding.java 36 public void prettyPrint(Node node, SourcePrinter printer) {
  /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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
ConcreteSyntaxModelAcceptanceTest.java 39 private String prettyPrint(Node node) {
50 assertEquals(prettyPrintedExpectation("PrettyPrintVisitor"), prettyPrint(cu));
56 assertEquals(prettyPrintedExpectation("JavaConcepts"), prettyPrint(cu));
  /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/include/private/
GrAuditTrail.h 94 SkString toJson(bool prettyPrint = false) const;
97 SkString toJson(int clientID, bool prettyPrint = false) const;
  /external/skqp/include/private/
GrAuditTrail.h 94 SkString toJson(bool prettyPrint = false) const;
97 SkString toJson(int clientID, bool prettyPrint = false) const;
  /external/skia/src/gpu/
GrAuditTrail.cpp 226 SkString GrAuditTrail::toJson(bool prettyPrint) const {
232 if (prettyPrint) {
239 SkString GrAuditTrail::toJson(int clientID, bool prettyPrint) const {
248 if (prettyPrint) {

Completed in 210 milliseconds

1 2 3 4 5 6 7 8 91011>>