Lines Matching refs:frame

81   // stack frame.
84 // The GUI tree that will be used to hold stack frame information;
265 ProfileStackFrame frame = new ProfileStackFrame(classNames[pos],
268 ProfileStackFrame existingFrame = rootFrames.get(frame);
271 existingFrame = frame;
359 for (ProfileStackFrame frame : getRootFrames())
361 printFrame(frame, 0);
368 * Prints the provided stack frame and its subordinates using the provided
371 * @param frame The stack frame to be printed, followed by recursive
373 * @param indent The number of tabs to indent the stack frame information.
375 private static void printFrame(ProfileStackFrame frame, int indent)
382 System.out.print(frame.getTotalCount());
384 System.out.print(frame.getClassName());
386 System.out.println(frame.getMethodName());
388 if (frame.hasSubFrames())
390 for (ProfileStackFrame f : frame.getSubordinateFrames())
429 for (ProfileStackFrame frame : getRootFrames())
431 boolean hasChildren = frame.hasSubFrames();
434 new DefaultMutableTreeNode(frame, hasChildren);
435 recurseTreeNodes(frame, frameNode);
465 * @param parentFrame The stack frame whose children are to be added as
562 // frame and display information about it.
563 ProfileStackFrame frame = (ProfileStackFrame) selectedObject;
567 html.append("Information for stack frame <B>");
568 html.append(frame.getClassName());
570 html.append(frame.getHTMLSafeMethodName());
573 HashMap<Integer,Long> lineNumbers = frame.getLineNumbers();
610 String classAndMethod = frame.getClassName() + "." +
611 frame.getMethodName();
646 * should be highlighted in the stack frame.