#include <LinkedList.h>
Public Member Functions | |
LinkedList () | |
~LinkedList () | |
T | insert (T newEntry) |
T | shift () |
bool | empty () |
void | clear () |
void | print () |
uint32_t | size () |
Private Types | |
typedef LinkedList::entry | entry_t |
Private Member Functions | |
void | destroy () |
Private Attributes | |
entry_t * | elements |
uint32_t | elementCount |
|
|
|
Definition at line 27 of file LinkedList.h. |
|
Definition at line 28 of file LinkedList.h. |
|
Definition at line 52 of file LinkedList.h. |
|
Definition at line 15 of file LinkedList.h. Referenced by LinkedList< uint32_t >::clear(), and LinkedList< uint32_t >::~LinkedList(). |
|
Definition at line 48 of file LinkedList.h. Referenced by FlowGraph::buildLoops(), LengauerTarjan::depthFirstSearch(), Function::generateCFG(), and LengauerTarjan::immediateDominators(). |
|
Definition at line 31 of file LinkedList.h. Referenced by FlowGraph::buildLoops(), LengauerTarjan::depthFirstSearch(), and FlowGraph::depthFirstSearch(). |
|
Definition at line 56 of file LinkedList.h. |
|
Definition at line 39 of file LinkedList.h. Referenced by FlowGraph::buildLoops(), LengauerTarjan::depthFirstSearch(), Function::generateCFG(), and LengauerTarjan::immediateDominators(). |
|
Definition at line 65 of file LinkedList.h. Referenced by FlowGraph::buildLoops(). |
|
Definition at line 13 of file LinkedList.h. |
|
Definition at line 12 of file LinkedList.h. |