HomeSort by relevance Sort by last modified time
    Searched defs:MutableArray (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit2/Shared/
MutableArray.cpp 27 #include "MutableArray.h"
31 MutableArray::MutableArray()
35 MutableArray::~MutableArray()
39 void MutableArray::append(APIObject* item)
44 void MutableArray::reserveCapacity(unsigned capacity)
49 void MutableArray::removeItemAtIndex(unsigned index)
MutableArray.h 33 // MutableArray - A mutable array type suitable for vending to an API.
35 class MutableArray : public ImmutableArray {
37 static PassRefPtr<MutableArray> create()
39 return adoptRef(new MutableArray);
42 ~MutableArray();
51 MutableArray();

Completed in 1010 milliseconds