HomeSort by relevance Sort by last modified time
    Searched full:immutablearray (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/Source/WebKit2/Shared/
ImmutableArray.cpp 27 #include "ImmutableArray.h"
31 ImmutableArray::ImmutableArray()
35 ImmutableArray::ImmutableArray(APIObject** entries, size_t size)
42 ImmutableArray::ImmutableArray(Vector<RefPtr<APIObject> >& entries)
47 ImmutableArray::~ImmutableArray()
ImmutableArray.h 36 // ImmutableArray - An immutable array type suitable for vending to an API.
38 class ImmutableArray : public APIObject {
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...]
ImmutableDictionary.cpp 29 #include "ImmutableArray.h"
47 PassRefPtr<ImmutableArray> ImmutableDictionary::keys() const
50 return ImmutableArray::create();
60 return ImmutableArray::adopt(vector);
WebContextMenuItem.cpp 29 #include "ImmutableArray.h"
39 PassRefPtr<WebContextMenuItem> WebContextMenuItem::create(const String& title, bool enabled, ImmutableArray* submenuItems)
61 PassRefPtr<ImmutableArray> WebContextMenuItem::submenuItemsAsImmutableArray() const
64 return ImmutableArray::create();
75 return ImmutableArray::adopt(result);
WebContextMenuItem.h 34 class ImmutableArray;
44 static PassRefPtr<WebContextMenuItem> create(const String& title, bool enabled, ImmutableArray* submenuItems);
47 PassRefPtr<ImmutableArray> submenuItemsAsImmutableArray() const;
MutableArray.h 29 #include "ImmutableArray.h"
35 class MutableArray : public ImmutableArray {
ImmutableDictionary.h 37 class ImmutableArray;
78 PassRefPtr<ImmutableArray> keys() const;
SecurityOriginData.cpp 30 #include "ImmutableArray.h"
67 callback->performCallbackWithReturnValue(ImmutableArray::adopt(securityOrigins).get());
  /external/webkit/Source/WebKit2/Shared/API/c/
WKArray.cpp 29 #include "ImmutableArray.h"
36 return toAPI(ImmutableArray::APIType);
41 RefPtr<ImmutableArray> array = ImmutableArray::create(reinterpret_cast<APIObject**>(const_cast<void**>(values)), numberOfValues);
WKDictionary.cpp 29 #include "ImmutableArray.h"
52 RefPtr<ImmutableArray> keys = toImpl(dictionaryRef)->keys();
  /external/webkit/Source/WebKit2/UIProcess/win/
WebGrammarDetail.cpp 29 #include "ImmutableArray.h"
35 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(int location, int length, ImmutableArray* guesses, const String& userDescription)
45 WebGrammarDetail::WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription)
58 PassRefPtr<ImmutableArray> WebGrammarDetail::guesses() const
64 return ImmutableArray::adopt(wkGuesses);
WebGrammarDetail.h 36 class ImmutableArray;
41 static PassRefPtr<WebGrammarDetail> create(int location, int length, ImmutableArray* guesses, const String& userDescription);
46 PassRefPtr<ImmutableArray> guesses() const;
52 WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.cpp 29 #include "ImmutableArray.h"
35 PassRefPtr<ImmutableArray> InjectedBundleBackForwardListItem::children() const
42 return ImmutableArray::adopt(vector);
InjectedBundle.h 60 class ImmutableArray;
102 void addUserScript(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserScriptInjectionTime, WebCore::UserContentInjectedFrames);
103 void addUserStyleSheet(WebPageGroupProxy*, InjectedBundleScriptWorld*, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserContentInjectedFrames);
InjectedBundleBackForwardListItem.h 34 class ImmutableArray;
57 PassRefPtr<ImmutableArray> children() const;
InjectedBundlePageContextMenuClient.cpp 29 #include "ImmutableArray.h"
55 RefPtr<ImmutableArray> array = adoptRef(toImpl(newMenuWK));
InjectedBundle.cpp 30 #include "ImmutableArray.h"
197 static PassOwnPtr<Vector<String> > toStringVector(ImmutableArray* patterns)
216 void InjectedBundle::addUserScript(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserScriptInjectionTime injectionTime, WebCore::UserContentInjectedFrames injectedFrames)
222 void InjectedBundle::addUserStyleSheet(WebPageGroupProxy* pageGroup, InjectedBundleScriptWorld* scriptWorld, const String& source, const String& url, ImmutableArray* whitelist, ImmutableArray* blacklist, WebCore::UserContentInjectedFrames injectedFrames)
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 30 #include "ImmutableArray.h"
77 PassRefPtr<ImmutableArray> backListAsImmutableArrayWithLimit(unsigned limit);
78 PassRefPtr<ImmutableArray> forwardListAsImmutableArrayWithLimit(unsigned limit);
WebOpenPanelResultListenerProxy.cpp 29 #include "ImmutableArray.h"
47 void WebOpenPanelResultListenerProxy::chooseFiles(ImmutableArray* fileURLsArray)
WebOpenPanelResultListenerProxy.h 35 class ImmutableArray;
49 void chooseFiles(ImmutableArray*);
WebBackForwardList.cpp 174 PassRefPtr<ImmutableArray> WebBackForwardList::backListAsImmutableArrayWithLimit(unsigned limit)
181 return ImmutableArray::create();
190 return ImmutableArray::adopt(vector);
193 PassRefPtr<ImmutableArray> WebBackForwardList::forwardListAsImmutableArrayWithLimit(unsigned limit)
199 return ImmutableArray::create();
209 return ImmutableArray::adopt(vector);
WebDatabaseManagerProxy.cpp 29 #include "ImmutableArray.h"
160 originAndDatabasesMap.set(databaseDetailsKey(), ImmutableArray::adopt(databases));
165 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(result);
193 callback->performCallbackWithReturnValue(ImmutableArray::adopt(securityOrigins).get());
WebFrameProxy.h 30 #include "ImmutableArray.h"
46 class ImmutableArray;
127 PassRefPtr<ImmutableArray> childFrames();
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
WebPluginSiteDataManager.cpp 29 #include "ImmutableArray.h"
190 RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(sitesWK);
194 void WebPluginSiteDataManager::clearSiteData(ImmutableArray* sites, uint64_t flags, uint64_t maxAgeInSeconds, PassRefPtr<VoidCallback> prpCallback)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.h 30 #include "ImmutableArray.h"
88 PassRefPtr<ImmutableArray> childFrames();

Completed in 489 milliseconds

1 2