I dont use anything like that but there are some short cuts within the Delphi IDE that might help.

1. The Code Explorer that shows the Classes with their poroperties and methods - click on the method and the editor moves to that procedure.

2. Short Cut keys. If you are in the declaration section of a class and put the cursor over the procedure name and press Ctrl-Shift-DownArrow the cursor will move to the first line of the procedure (ie you only need to scroll through the class definition section). Ctrl-Shift-UpArrow will move from the current procedure to its definition above.

Cheers
William