Home
last modified time | relevance | path

Searched refs:getFunction (Results 1 – 15 of 15) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
DGLMessageFormatter.java42 GLAPISpec apiSpec = mAPISpecs.get(glMessage.getFunction().toString()); in formatGLMessage()
44 return glMessage.getFunction().toString(); in formatGLMessage()
63 return String.format("%s(%s)", apiSpec.getFunction(), //$NON-NLS-1$ in formatCall()
DGLAPISpec.java48 public String getFunction() { in getFunction() method in GLAPISpec
88 specs.put(spec.getFunction(), spec); in parseApiSpecs()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
DTraceFileParserTask.java78 formattedMsg = String.format("%s()", msg.getFunction().toString()); //$NON-NLS-1$ in addMessage()
85 msg.getFunction(), in addMessage()
108 switch (msg.getFunction()) { in addProperties()
233 if (c.getFunction() == Function.eglSwapBuffers) { in createFrames()
DTraceFileWriter.java144 if (msg.getFunction() == Function.eglSwapBuffers) { in updateTraceStats()
DGLProtoBuf.java2498 …public com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function getFunction() { return functi… in getFunction() method in GLProtoBuf.GLMessage
2570 output.writeEnum(4, getFunction().getNumber()); in writeTo()
2607 .computeEnumSize(4, getFunction().getNumber()); in getSerializedSize()
2793 setFunction(other.getFunction()); in mergeFrom()
2940 public com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function getFunction() { in getFunction() method in GLProtoBuf.GLMessage.Builder
2941 return result.getFunction(); in getFunction()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DGlDrawCallDetailProvider.java42 return (call.getFunction() == Function.glDrawArrays in isApplicable()
43 || call.getFunction() == Function.glDrawElements) && call.hasFb(); in isApplicable()
DVertexAttribPointerDataDetailProvider.java40 return call.getFunction() == Function.glVertexAttribPointerData; in isApplicable()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DGLCallGroups.java159 if (c.getFunction() == Function.glPushGroupMarkerEXT) { in constructCallHierarchy()
167 } else if (c.getFunction() == Function.glPopGroupMarkerEXT) { in constructCallHierarchy()
DDurationMinimap.java325 } else if (c.getFunction() == Function.glDrawArrays in drawCallDurations()
326 || c.getFunction() == Function.glDrawElements in drawCallDurations()
327 || c.getFunction() == Function.eglSwapBuffers) { in drawCallDurations()
DGLFunctionTraceViewer.java692 if (c.getFunction() == Function.glDrawArrays in update()
693 || c.getFunction() == Function.glDrawElements) { in update()
707 if (c.getFunction() == Function.glPushGroupMarkerEXT) { in getColumnText()
770 String func = element.getCall().getFunction().toString(); in getTextUnderNode()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
DGLAPISpecTest.java42 assertEquals(funcName, spec.getFunction()); in testParser()
DGLMessageFormatterTest.java51 specs.put(spec.getFunction(), spec); in spec.getFunction()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
DGLCall.java111 public Function getFunction() { in getFunction() method in GLCall
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
DFrameSummaryViewPage.java269 PerCallStats stats = cumulativeStats.get(c.getFunction()); in updateFrameStats()
278 cumulativeStats.put(c.getFunction(), stats); in updateFrameStats()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
DStateTransformFactory.java43 switch (msg.getFunction()) { in getTransformsFor()