|
void | setExpires (bool enable) |
|
void | setShareable (bool enable) |
|
typedef const QNetworkAuthenticationCredential * | const_iterator |
| The QVector::const_iterator typedef provides an STL-style const iterator for QVector and QStack. More...
|
|
typedef const value_type * | const_pointer |
| Typedef for const T *. More...
|
|
typedef const value_type & | const_reference |
| Typedef for T &. More...
|
|
typedef const_iterator | ConstIterator |
| Qt-style synonym for QVector::const_iterator. More...
|
|
typedef qptrdiff | difference_type |
| Typedef for ptrdiff_t. More...
|
|
typedef QNetworkAuthenticationCredential * | iterator |
| The QVector::iterator typedef provides an STL-style non-const iterator for QVector and QStack. More...
|
|
typedef iterator | Iterator |
| Qt-style synonym for QVector::iterator. More...
|
|
typedef value_type * | pointer |
| Typedef for T *. More...
|
|
typedef value_type & | reference |
| Typedef for T &. More...
|
|
typedef int | size_type |
| Typedef for int. More...
|
|
typedef QNetworkAuthenticationCredential | value_type |
| Typedef for T. More...
|
|
void | append (const QNetworkAuthenticationCredential &t) |
| Inserts value at the end of the vector. More...
|
|
const QNetworkAuthenticationCredential & | at (int i) const |
| Returns the item at index position i in the vector. More...
|
|
reference | back () |
| This function is provided for STL compatibility. More...
|
|
const_reference | back () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
iterator | begin () |
| Returns an STL-style iterator pointing to the first item in the vector. More...
|
|
const_iterator | begin () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
int | capacity () const |
| Returns the maximum number of items that can be stored in the vector without forcing a reallocation. More...
|
|
void | clear () |
| Removes all the elements from the vector and releases the memory used by the vector. More...
|
|
const_iterator | constBegin () const |
| Returns a const STL-style iterator pointing to the first item in the vector. More...
|
|
const QNetworkAuthenticationCredential * | constData () const |
| Returns a const pointer to the data stored in the vector. More...
|
|
const_iterator | constEnd () const |
| Returns a const STL-style iterator pointing to the imaginary item after the last item in the vector. More...
|
|
bool | contains (const QNetworkAuthenticationCredential &t) const |
| Returns true if the vector contains an occurrence of value; otherwise returns false. More...
|
|
int | count (const QNetworkAuthenticationCredential &t) const |
| Returns the number of occurrences of value in the vector. More...
|
|
int | count () const |
| Same as size(). More...
|
|
QNetworkAuthenticationCredential * | data () |
| Returns a pointer to the data stored in the vector. More...
|
|
const QNetworkAuthenticationCredential * | data () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
void | detach () |
|
bool | empty () const |
| This function is provided for STL compatibility. More...
|
|
iterator | end () |
| Returns an STL-style iterator pointing to the imaginary item after the last item in the vector. More...
|
|
const_iterator | end () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
bool | endsWith (const QNetworkAuthenticationCredential &t) const |
| Returns true if this vector is not empty and its last item is equal to value; otherwise returns false. More...
|
|
iterator | erase (iterator begin, iterator end) |
| Removes all the items from begin up to (but not including) end. More...
|
|
iterator | erase (iterator pos) |
| Removes the item pointed to by the iterator pos from the vector, and returns an iterator to the next item in the vector (which may be end()). More...
|
|
QVector< QNetworkAuthenticationCredential > & | fill (const QNetworkAuthenticationCredential &t, int size=-1) |
| Assigns value to all items in the vector. More...
|
|
QNetworkAuthenticationCredential & | first () |
| Returns a reference to the first item in the vector. More...
|
|
const QNetworkAuthenticationCredential & | first () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
QNetworkAuthenticationCredential & | front () |
| This function is provided for STL compatibility. More...
|
|
const_reference | front () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
int | indexOf (const QNetworkAuthenticationCredential &t, int from=0) const |
| Returns the index position of the first occurrence of value in the vector, searching forward from index position from. More...
|
|
void | insert (int i, const QNetworkAuthenticationCredential &t) |
| Inserts value at index position i in the vector. More...
|
|
void | insert (int i, int n, const QNetworkAuthenticationCredential &t) |
| Inserts count copies of value at index position i in the vector. More...
|
|
iterator | insert (iterator before, int n, const QNetworkAuthenticationCredential &x) |
| Inserts count copies of value in front of the item pointed to by the iterator before. More...
|
|
iterator | insert (iterator before, const QNetworkAuthenticationCredential &x) |
| Inserts value in front of the item pointed to by the iterator before. More...
|
|
bool | isDetached () const |
|
bool | isEmpty () const |
| Returns true if the vector has size 0; otherwise returns false. More...
|
|
bool | isSharedWith (const QVector< QNetworkAuthenticationCredential > &other) const |
|
QNetworkAuthenticationCredential & | last () |
| Returns a reference to the last item in the vector. More...
|
|
const QNetworkAuthenticationCredential & | last () const |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
|
|
int | lastIndexOf (const QNetworkAuthenticationCredential &t, int from=-1) const |
| Returns the index position of the last occurrence of the value value in the vector, searching backward from index position from. More...
|
|
QVector< QNetworkAuthenticationCredential > | mid (int pos, int length=-1) const |
| Returns a vector whose elements are copied from this vector, starting at position pos. More...
|
|
bool | operator!= (const QVector< QNetworkAuthenticationCredential > &v) const |
| Returns true if other is not equal to this vector; otherwise returns false. More...
|
|
QVector< QNetworkAuthenticationCredential > | operator+ (const QVector< QNetworkAuthenticationCredential > &l) const |
| Returns a vector that contains all the items in this vector followed by all the items in the other vector. More...
|
|
QVector< QNetworkAuthenticationCredential > & | operator+= (const QVector< QNetworkAuthenticationCredential > &l) |
| Appends the items of the other vector to this vector and returns a reference to this vector. More...
|
|
QVector< QNetworkAuthenticationCredential > & | operator+= (const QNetworkAuthenticationCredential &t) |
| Appends value to the vector. More...
|
|
QVector< QNetworkAuthenticationCredential > & | operator<< (const QVector< QNetworkAuthenticationCredential > &l) |
| Appends other to the vector and returns a reference to the vector. More...
|
|
QVector< QNetworkAuthenticationCredential > & | operator<< (const QNetworkAuthenticationCredential &t) |
| Appends value to the vector and returns a reference to this vector. More...
|
|
QVector< QNetworkAuthenticationCredential > & | operator= (const QVector< QNetworkAuthenticationCredential > &v) |
| Assigns other to this vector and returns a reference to this vector. More...
|
|
bool | operator== (const QVector< QNetworkAuthenticationCredential > &v) const |
| Returns true if other is equal to this vector; otherwise returns false. More...
|
|
QNetworkAuthenticationCredential & | operator[] (int i) |
| Returns the item at index position i as a modifiable reference. More...
|
|
const QNetworkAuthenticationCredential & | operator[] (int i) const |
| Same as at(i). More...
|
|
void | pop_back () |
| This function is provided for STL compatibility. More...
|
|
void | pop_front () |
| This function is provided for STL compatibility. More...
|
|
void | prepend (const QNetworkAuthenticationCredential &t) |
| Inserts value at the beginning of the vector. More...
|
|
void | push_back (const QNetworkAuthenticationCredential &t) |
| This function is provided for STL compatibility. More...
|
|
void | push_front (const QNetworkAuthenticationCredential &t) |
| This function is provided for STL compatibility. More...
|
|
| QVector () |
| Constructs an empty vector. More...
|
|
| QVector (int size) |
| Constructs a vector with an initial size of size elements. More...
|
|
| QVector (int size, const QNetworkAuthenticationCredential &t) |
| Constructs a vector with an initial size of size elements. More...
|
|
| QVector (const QVector< QNetworkAuthenticationCredential > &v) |
| Constructs a copy of other. More...
|
|
void | remove (int i) |
| Removes the element at index position i. More...
|
|
void | remove (int i, int n) |
| Removes count elements from the middle of the vector, starting at index position i. More...
|
|
void | replace (int i, const QNetworkAuthenticationCredential &t) |
| Replaces the item at index position i with value. More...
|
|
void | reserve (int size) |
| Attempts to allocate memory for at least size elements. More...
|
|
void | resize (int size) |
| Sets the size of the vector to size. More...
|
|
void | setSharable (bool sharable) |
|
int | size () const |
| Returns the number of items in the vector. More...
|
|
void | squeeze () |
| Releases any memory not required to store the items. More...
|
|
bool | startsWith (const QNetworkAuthenticationCredential &t) const |
| Returns true if this vector is not empty and its first item is equal to value; otherwise returns false. More...
|
|
void | swap (QVector< QNetworkAuthenticationCredential > &other) |
| Swaps vector other with this vector. More...
|
|
QList< QNetworkAuthenticationCredential > | toList () const |
| Returns a QList object with the data contained in this QVector. More...
|
|
std::vector< QNetworkAuthenticationCredential > | toStdVector () const |
| Returns a std::vector object with the data contained in this QVector. More...
|
|
QNetworkAuthenticationCredential | value (int i) const |
| Returns the value at index position i in the vector. More...
|
|
QNetworkAuthenticationCredential | value (int i, const QNetworkAuthenticationCredential &defaultValue) const |
| If the index i is out of bounds, the function returns defaultValue. More...
|
|
| ~QVector () |
| Destroys the vector. More...
|
|
static QVector< QNetworkAuthenticationCredential > | fromList (const QList< QNetworkAuthenticationCredential > &list) |
| Returns a QVector object with the data contained in list. More...
|
|
static QVector< QNetworkAuthenticationCredential > | fromStdVector (const std::vector< QNetworkAuthenticationCredential > &vector) |
| Returns a QVector object with the data contained in vector. More...
|
|
QVectorData * | d |
|
Data * | p |
|
QDataStream & | operator<< (QDataStream &out, const QVector< QNetworkAuthenticationCredential > &vector) |
| Writes the vector vector to stream out. More...
|
|
QDataStream & | operator>> (QDataStream &in, QVector< QNetworkAuthenticationCredential > &vector) |
| Reads a vector from stream in into vector. More...
|
|