OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mGLCalls
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java
52
private List<GLCall>
mGLCalls
;
69
mGLCalls
= new ArrayList<GLCall>();
102
mGLCalls
.add(c);
183
Collections.sort(
mGLCalls
, new Comparator<GLCall>() {
203
for (int i = 0; i <
mGLCalls
.size(); i++) {
204
mGLCalls
.get(i).setIndex(i);
208
glFrames = createFrames(
mGLCalls
);
222
mTrace = new GLTrace(fileInfo, glFrames,
mGLCalls
, new ArrayList<Integer>(mGLContextIds));
241
if (startCallIndex !=
mGLCalls
.size()) {
242
glFrames.add(new GLFrame(frameIndex, startCallIndex,
mGLCalls
.size()))
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLTrace.java
45
private final List<GLCall>
mGLCalls
;
54
mGLCalls
= glCalls;
67
return
mGLCalls
;
76
return
mGLCalls
.subList(frame.getStartIndex(), frame.getEndIndex());
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java
78
private List<GLCall>
mGLCalls
;
95
mGLCalls
= trace.getGLCalls();
97
mGLCalls
= null;
278
assert fromIndex >= -1 && fromIndex <
mGLCalls
.size();
279
assert toIndex >= 0 && toIndex <
mGLCalls
.size();
295
GLCall call =
mGLCalls
.get(i);
319
List<IStateTransform> transforms =
mGLCalls
.get(i).getStateTransformations();
Completed in 2181 milliseconds