Searched defs:ImmutableArray (Results 1 - 2 of 2) sorted by path

/external/webkit/Source/WebKit2/Shared/
H A DImmutableArray.cpp27 #include "ImmutableArray.h"
31 ImmutableArray::ImmutableArray() function in class:WebKit::ImmutableArray
35 ImmutableArray::ImmutableArray(APIObject** entries, size_t size) function in class:WebKit::ImmutableArray
42 ImmutableArray::ImmutableArray(Vector<RefPtr<APIObject> >& entries) function in class:WebKit::ImmutableArray
47 ImmutableArray::~ImmutableArray()
H A DImmutableArray.h36 // ImmutableArray - An immutable array type suitable for vending to an API.
38 class ImmutableArray : public APIObject { class in namespace:WebKit
42 static PassRefPtr<ImmutableArray> create()
44 return adoptRef(new ImmutableArray);
46 static PassRefPtr<ImmutableArray> create(APIObject** entries, size_t size)
48 return adoptRef(new ImmutableArray(entries, size));
50 static PassRefPtr<ImmutableArray> adopt(Vector<RefPtr<APIObject> >& entries)
52 return adoptRef(new ImmutableArray(entries));
55 virtual ~ImmutableArray();
66 ImmutableArray();
[all...]

Completed in 80 milliseconds