Searched refs:startCallIndex (Results 1 – 4 of 4) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/ |
D | GLFrame.java | 34 public GLFrame(int frameIndex, int startCallIndex, int endCallIndex) { in GLFrame() argument 36 mStartCallIndex = startCallIndex; in GLFrame()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
D | TraceFileParserTask.java | 228 int startCallIndex = 0; in createFrames() local 234 glFrames.add(new GLFrame(frameIndex, startCallIndex, i + 1)); in createFrames() 235 startCallIndex = i + 1; in createFrames() 241 if (startCallIndex != mGLCalls.size()) { in createFrames() 242 glFrames.add(new GLFrame(frameIndex, startCallIndex, mGLCalls.size())); in createFrames()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | DurationMinimap.java | 386 public void setCallRangeForCurrentFrame(int startCallIndex, int endCallIndex) { in setCallRangeForCurrentFrame() argument 387 mStartCallIndex = startCallIndex; in setCallRangeForCurrentFrame() 481 public Rectangle getBoundsFramingCalls(int startCallIndex, int endCallIndex) { in getBoundsFramingCalls() argument 482 if (startCallIndex >= 0 && endCallIndex >= startCallIndex in getBoundsFramingCalls() 485 int y = (startCallIndex/mNumCallsPerPixel) + TOP_MARGIN + mHeaderMargin; in getBoundsFramingCalls() 487 int h = (endCallIndex - startCallIndex)/mNumCallsPerPixel; in getBoundsFramingCalls()
|
D | GLFunctionTraceViewer.java | 425 private void refreshTree(int startCallIndex, int endCallIndex, int contextToDisplay) { in refreshTree() argument 427 startCallIndex, endCallIndex, in refreshTree()
|