Lines Matching refs:frame

83    * stack frame.
87 /** The GUI tree that will be used to hold stack frame information;. */
258 ProfileStackFrame frame = new ProfileStackFrame(classNames[pos],
261 ProfileStackFrame existingFrame = rootFrames.get(frame);
264 existingFrame = frame;
349 for (ProfileStackFrame frame : getRootFrames())
351 printFrame(frame, 0);
358 * Prints the provided stack frame and its subordinates using the provided
361 * @param frame The stack frame to be printed, followed by recursive
363 * @param indent The number of tabs to indent the stack frame information.
365 private static void printFrame(ProfileStackFrame frame, int indent)
372 System.out.print(frame.getTotalCount());
374 System.out.print(frame.getClassName());
376 System.out.println(frame.getMethodName());
378 if (frame.hasSubFrames())
380 for (ProfileStackFrame f : frame.getSubordinateFrames())
419 for (ProfileStackFrame frame : getRootFrames())
421 boolean hasChildren = frame.hasSubFrames();
424 new DefaultMutableTreeNode(frame, hasChildren);
425 recurseTreeNodes(frame, frameNode);
455 * @param parentFrame The stack frame whose children are to be added as
552 // frame and display information about it.
553 ProfileStackFrame frame = (ProfileStackFrame) selectedObject;
557 html.append("Information for stack frame <B>");
558 html.append(frame.getClassName());
560 html.append(frame.getHTMLSafeMethodName());
563 HashMap<Integer,Long> lineNumbers = frame.getLineNumbers();
600 String classAndMethod = frame.getClassName() + "." +
601 frame.getMethodName();
636 * should be highlighted in the stack frame.