Dillo v3.1.1-99-gf3103cc4
|
#include <css.hh>
Public Member Functions | |
MatchCache () | |
Public Member Functions inherited from lout::misc::SimpleVector< int > | |
SimpleVector (int initAlloc=1) | |
SimpleVector (const SimpleVector &o) | |
~SimpleVector () | |
int | size () const |
Return the number of elements put into this vector. | |
bool | empty () const |
int * | getArray () const |
int * | detachArray () |
void | increase () |
Increase the vector size by one. | |
void | setSize (int newSize) |
Set the size explicitly. | |
void | setSize (int newSize, int t) |
Set the size explicitly and initialize new values. | |
int * | getRef (int i) const |
Return the reference of one element. | |
int | get (int i) const |
Return the one element, explicitly. | |
int * | getFirstRef () const |
Return the reference of the first element (convenience method). | |
int | getFirst () const |
Return the first element, explicitly. | |
int * | getLastRef () const |
Return the reference of the last element (convenience method). | |
int | getLast () const |
Return the last element, explicitly. | |
void | set (int i, int t) |
Store an object in the vector. | |
void | setLast (int t) |
Store an object at the end of the vector. | |
void | copyTo (SimpleVector< int > *dest, int thisStart=0, int thisLast=-1, int destStart=0) |
Copies some elements into another vector of the same type. | |