Searched refs:pp (Results 1 – 6 of 6) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
D | GLCompositeProperty.java | 128 public void prettyPrint(StatePrettyPrinter pp) { in prettyPrint() argument 129 pp.prettyPrint(mType, null); in prettyPrint() 130 pp.incrementIndentLevel(); in prettyPrint() 132 p.prettyPrint(pp); in prettyPrint() 134 pp.decrementIndentLevel(); in prettyPrint()
|
D | GLListProperty.java | 172 public void prettyPrint(StatePrettyPrinter pp) { in prettyPrint() argument 173 pp.prettyPrint(mType, null); in prettyPrint() 174 pp.incrementIndentLevel(); in prettyPrint() 176 pp.prettyPrint(String.format(Locale.US, "Index %d:", i)); in prettyPrint() 178 p.prettyPrint(pp); in prettyPrint() 180 pp.decrementIndentLevel(); in prettyPrint()
|
D | GLSparseArrayProperty.java | 155 public void prettyPrint(StatePrettyPrinter pp) { in prettyPrint() argument 156 pp.prettyPrint(mType, null); in prettyPrint() 157 pp.incrementIndentLevel(); in prettyPrint() 160 pp.prettyPrint(String.format(Locale.US, "Index %d:", key)); in prettyPrint() 165 prop.prettyPrint(pp); in prettyPrint() 168 pp.decrementIndentLevel(); in prettyPrint()
|
D | GLAbstractAtomicProperty.java | 62 public void prettyPrint(StatePrettyPrinter pp) { in prettyPrint() argument 63 pp.prettyPrint(mType, getStringValue()); in prettyPrint()
|
D | IGLProperty.java | 62 void prettyPrint(StatePrettyPrinter pp); in prettyPrint() argument
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | StateViewPage.java | 161 StatePrettyPrinter pp = new StatePrettyPrinter(); in saveCurrentState() local 163 mState.prettyPrint(pp); in saveCurrentState() 167 Files.write(pp.toString(), f, Charsets.UTF_8); in saveCurrentState()
|