Home
last modified time | relevance | path

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/
DGLCompositeProperty.java128 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()
DGLListProperty.java172 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()
DGLSparseArrayProperty.java155 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()
DGLAbstractAtomicProperty.java62 public void prettyPrint(StatePrettyPrinter pp) { in prettyPrint() argument
63 pp.prettyPrint(mType, getStringValue()); in prettyPrint()
DIGLProperty.java62 void prettyPrint(StatePrettyPrinter pp); in prettyPrint() argument
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DStateViewPage.java161 StatePrettyPrinter pp = new StatePrettyPrinter(); in saveCurrentState() local
163 mState.prettyPrint(pp); in saveCurrentState()
167 Files.write(pp.toString(), f, Charsets.UTF_8); in saveCurrentState()