Searched refs:GLCallNode (Results 1 – 4 of 4) sorted by relevance
33 public interface GLCallNode { interface in GLCallGroups38 List<GLCallNode> getChildren(); in getChildren()44 GLCallNode getParent(); in getParent()47 void setParent(GLCallNode parent); in setParent()50 private static class GLTreeNode implements GLCallNode {52 private GLCallNode mParent;53 private List<GLCallNode> mGLCallNodes;57 mGLCallNodes = new ArrayList<GLCallNode>(); in GLTreeNode()66 public GLCallNode getParent() { in getParent()71 public void setParent(GLCallNode parent) { in setParent()[all …]
26 import com.android.ide.eclipse.gltrace.editors.GLCallGroups.GLCallNode;121 private List<GLCallNode> mTreeViewerNodes;651 if (!(parentElement instanceof GLCallNode)) { in getChildren()655 GLCallNode parent = (GLCallNode) parentElement; in getChildren()665 if (!(element instanceof GLCallNode)) { in getParent()669 return ((GLCallNode) element).getParent(); in getParent()674 if (!(element instanceof GLCallNode)) { in hasChildren()678 return ((GLCallNode) element).hasChildren(); in hasChildren()686 if (!(element instanceof GLCallNode)) { in update()690 GLCall c = ((GLCallNode) element).getCall(); in update()[all …]
20 import com.android.ide.eclipse.gltrace.editors.GLCallGroups.GLCallNode;205 if (data instanceof GLCallNode) { in selectionChanged()206 selectedCall = ((GLCallNode) data).getCall(); in selectionChanged()
19 import com.android.ide.eclipse.gltrace.editors.GLCallGroups.GLCallNode;208 if (data instanceof GLCallNode) { in getSelectedCall()209 return ((GLCallNode) data).getCall(); in getSelectedCall()