/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/ |
D | GLMessageFormatterTest.java | 26 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 62 GLMessage msg = constructGLMessage(null, Function.glBindBuffer, in testBindBuffer() 81 Function.glGetString, in testGlGetString() 83 String expected = String.format("%s(name = %s) = (const GLchar*) %s", Function.glGetString, in testGlGetString() 96 Function.eglBindAPI, in testGLEnum0() 107 Function.glTexImage2D, in testMessageWithPointer() 121 Function.glMultMatrixf, in testMessageWithMismatchedPointer() 134 Function.glGetActiveAttrib, in testMessageWithEnumPointer() 175 private GLMessage constructGLMessage(DataType retValue, Function func, DataType...args) { in constructGLMessage()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/ |
D | GLCall.java | 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 65 private final Function mFunction; 86 Function function, boolean hasFb, int contextId, in GLCall() 111 public Function getFunction() { in getFunction()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/ |
D | GlDrawCallDetailProvider.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 42 return (call.getFunction() == Function.glDrawArrays in isApplicable() 43 || call.getFunction() == Function.glDrawElements) && call.hasFb(); in isApplicable()
|
D | VertexAttribPointerDataDetailProvider.java | 21 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 40 return call.getFunction() == Function.glVertexAttribPointerData; in isApplicable()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | GLCallGroups.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 159 if (c.getFunction() == Function.glPushGroupMarkerEXT) { in constructCallHierarchy() 167 } else if (c.getFunction() == Function.glPopGroupMarkerEXT) { in constructCallHierarchy()
|
D | DurationMinimap.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 325 } else if (c.getFunction() == Function.glDrawArrays in drawCallDurations() 326 || c.getFunction() == Function.glDrawElements in drawCallDurations() 327 || c.getFunction() == Function.eglSwapBuffers) { in drawCallDurations()
|
D | GLFunctionTraceViewer.java | 21 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 692 if (c.getFunction() == Function.glDrawArrays in update() 693 || c.getFunction() == Function.glDrawElements) { in update() 707 if (c.getFunction() == Function.glPushGroupMarkerEXT) { in getColumnText()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
D | TraceFileWriter.java | 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 144 if (msg.getFunction() == Function.eglSwapBuffers) { in updateTraceStats()
|
D | TraceFileParserTask.java | 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 233 if (c.getFunction() == Function.eglSwapBuffers) { in createFrames()
|
D | GLProtoBuf.java | 29 public enum Function enum in GLProtoBuf.GLMessage 621 public static final Function glGetnUniformivEXT = glGetnUniformfvEXT; 626 public static Function valueOf(int value) { in valueOf() 1220 public static com.google.protobuf.Internal.EnumLiteMap<Function> 1224 private static com.google.protobuf.Internal.EnumLiteMap<Function> 1226 new com.google.protobuf.Internal.EnumLiteMap<Function>() { 1228 public Function findValueByNumber(int number) { 1229 return Function.valueOf(number) 1235 private Function(int index, int value) { in Function() method in GLProtoBuf.GLMessage.Function 2496 private com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function function_; [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
D | FrameSummaryViewPage.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function; 262 final Map<Function, PerCallStats> cumulativeStats = in updateFrameStats() 263 new EnumMap<Function, PerCallStats>(Function.class); in updateFrameStats() 356 Function f = (Function) ((Map.Entry<?, ?>) element).getKey(); in update()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
D | BufferSubDataTransform.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | FlagManagerTest.java | 21 import com.google.common.base.Function;
|