You can get a NodeList of all a elements from a document using getElementsByTagName, like this:
var list = document.getElementsByTagName("a");
So you'd do that for the main document, and for all frames in the document. To access the frames, you can use the window.frames pseudo-array. Each entry is the window object of that frame, so:
var listInFrame = window.frames[n].document.getElementsByTagName("a");
So create a blank array, add in the elements from the document itself, then loop through the windows adding the links from their documents.
I'm not familiar with FireGestures, so I don't know if the Same Origin Policy applies to the scripts it runs.
Update: From your comment below, it sounds like FireGesture scripts are subject to the SOP. So you won't be able to directly access the content of documents from different origins in a FireGestures script.
You might be able to do something combining FireGestures and GreaseMonkey. GreaseMonkey has an API call, GM_xmlhttpRequest, that bypasses the SOP — but note that it would be another GET, you wouldn't be reading the copy of the page that's already in-memory, which you said you wanted to do. Unfortunately, it's entirely possible that you may not be able to do what you want with FireGestures. You may have to write your own add-on entirely (and have it request relevant permissions).