Searched refs:Storage (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium/chrome/browser/extensions/
H A Dextension_storage_apitest.cc7 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Storage) {
/external/webkit/Source/WebCore/storage/
H A DStorage.cpp27 #include "Storage.h"
40 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea)
42 return adoptRef(new Storage(frame, storageArea));
45 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea) function in class:WebCore::Storage
53 Storage::~Storage()
57 unsigned Storage::length() const
65 String Storage
[all...]
H A DStorage.h41 class Storage : public RefCounted<Storage> { class in namespace:WebCore
43 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
44 ~Storage();
59 Storage(Frame*, PassRefPtr<StorageArea>);
H A DStorageEvent.h36 class Storage;
41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
48 Storage* storageArea() const { return m_storageArea.get(); }
50 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
53 // void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString urlArg, Storage storageAreaArg);
59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
65 RefPtr<Storage> m_storageArea;
H A DStorageEvent.idl35 readonly attribute Storage storageArea;
36 void initStorageEvent(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in [ConvertNullToNullString] DOMString oldValueArg, in [ConvertNullToNullString] DOMString newValueArg, in DOMString urlArg, in Storage storageAreaArg);
39 // void initStorageEventNS(in DOMString namespaceURI, in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString keyArg, in DOMString oldValueArg, in DOMString newValueArg, in DOMString urlArg, in Storage storageAreaArg);
H A DStorageEvent.cpp31 #include "Storage.h"
48 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
53 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
63 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
H A DStorage.idl34 ] Storage {
H A DStorageEventDispatcher.cpp63 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
80 Storage* storage = frames[i]->domWindow()->localStorage(ec);
/external/clang/include/clang/Lex/
H A DModuleLoader.h33 llvm::PointerIntPair<Module *, 1, bool> Storage; member in class:clang::ModuleLoadResult
36 ModuleLoadResult() : Storage() { }
39 : Storage(module, missingExpected) { }
41 operator Module *() const { return Storage.getPointer(); }
47 bool isMissingExpected() const { return Storage.getInt(); }
H A DModuleMap.h61 llvm::PointerIntPair<Module *, 1, bool> Storage; member in class:clang::ModuleMap::KnownHeader
64 KnownHeader() : Storage(0, false) { }
65 KnownHeader(Module *M, bool Excluded) : Storage(M, Excluded) { }
68 Module *getModule() const { return Storage.getPointer(); }
71 bool isExcluded() const { return Storage.getInt(); }
80 operator bool() const { return Storage.getPointer() != 0; }
/external/clang/include/clang/AST/
H A DASTTypeTraits.h60 return BaseConverter<T>::get(Tag, Storage.buffer);
93 TypeLoc> Storage; member in class:clang::ast_type_traits::DynTypedNode
99 static const T *get(NodeTypeTag Tag, const char Storage[]) { argument
101 return dyn_cast<T>(*reinterpret_cast<Decl*const*>(Storage));
107 new (Result.Storage.buffer) const Decl*(&Node);
113 static const T *get(NodeTypeTag Tag, const char Storage[]) { argument
115 return dyn_cast<T>(*reinterpret_cast<Stmt*const*>(Storage));
121 new (Result.Storage.buffer) const Stmt*(&Node);
127 static const T *get(NodeTypeTag Tag, const char Storage[]) { argument
129 return dyn_cast<T>(*reinterpret_cast<Type*const*>(Storage));
140 get(NodeTypeTag Tag, const char Storage[]) argument
153 get(NodeTypeTag Tag, const char Storage[]) argument
167 get(NodeTypeTag Tag, const char Storage[]) argument
180 get(NodeTypeTag Tag, const char Storage[]) argument
197 get(NodeTypeTag Tag, const char Storage[]) argument
[all...]
H A DTemplateName.h181 StorageType Storage; member in class:clang::TemplateName
184 Storage = StorageType::getFromOpaqueValue(Ptr);
209 TemplateName() : Storage() { }
210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { }
211 explicit TemplateName(OverloadedTemplateStorage *Storage) argument
212 : Storage(Storage) { }
213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage) argument
215 : Storage(Storag
362 TemplateName(SubstTemplateTemplateParmStorage *Storage) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMStorageResource.h45 class Storage;
51 static PassRefPtr<InspectorDOMStorageResource> create(Storage* domStorage, bool isLocalStorage, Frame* frame)
70 Storage* domStorage() const { return m_domStorage.get(); }
74 InspectorDOMStorageResource(Storage*, bool isLocalStorage, Frame*);
76 RefPtr<Storage> m_domStorage;
H A DInspectorDOMStorageAgent.h43 class Storage;
67 int storageId(Storage*);
H A DInspectorDOMStorageAgent.cpp43 #include "Storage.h"
87 Storage* domStorage = storageResource->domStorage();
118 int InspectorDOMStorageAgent::storageId(Storage* storage)
148 RefPtr<Storage> domStorage = Storage::create(frame, storageArea);
H A DInjectedScriptHost.h56 class Storage;
108 int storageIdImpl(Storage*);
H A DInspectorDOMStorageResource.cpp42 #include "Storage.h"
51 InspectorDOMStorageResource::InspectorDOMStorageResource(Storage* domStorage, bool isLocalStorage, Frame* frame)
107 Storage* storage = storageEvent->storageArea();
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp225 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); local
226 assert(Storage.is<ExplodedNode *>());
227 Storage = node;
228 assert(Storage.is<ExplodedNode *>());
234 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); local
235 if (Storage.isNull()) {
236 Storage = N;
237 assert(Storage.is<ExplodedNode *>());
241 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>();
245 ExplodedNode *Old = Storage
264 const GroupStorage &Storage = reinterpret_cast<const GroupStorage &>(P); local
276 const GroupStorage &Storage = reinterpret_cast<const GroupStorage &>(P); local
288 const GroupStorage &Storage = reinterpret_cast<const GroupStorage &>(P); local
[all...]
/external/llvm/lib/IR/
H A DUser.cpp60 void *Storage = ::operator new(s + sizeof(Use) * Us); local
61 Use *Start = static_cast<Use*>(Storage);
76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; local
79 ::operator delete(Storage);
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h34 // here so that the nested Storage class below can access them.
38 struct Storage { struct in class:clang::PartialDiagnostic
39 Storage() : NumDiagArgs(0), NumDiagRanges(0) { } function in struct:clang::PartialDiagnostic::Storage
81 /// \brief An allocator for Storage objects, which uses a small cache to
85 Storage Cached[NumCached];
86 Storage *FreeList[NumCached];
94 Storage *Allocate() {
96 return new Storage;
98 Storage *Result = FreeList[--NumFreeListEntries];
106 void Deallocate(Storage *
[all...]
/external/clang/lib/AST/
H A DTemplateName.cpp55 if (Storage.is<TemplateDecl *>())
57 if (Storage.is<DependentTemplateName *>())
59 if (Storage.is<QualifiedTemplateName *>())
63 = Storage.get<UncommonTemplateNameStorage*>();
72 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>())
130 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>())
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp40 llvm::SmallVector<T, InlineCapacity> Storage; member in class:__anon10022::PriorityQueue
46 bool empty() const { return Storage.empty(); }
50 unsigned Index = Storage.size();
51 Storage.push_back(V);
54 T *data = Storage.data();
67 T tmp = Storage[0];
69 unsigned NewSize = Storage.size() - 1;
73 Storage[0] = Storage[NewSize];
75 std::swap(Storage[
[all...]
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp65 struct Storage : StorageBase { struct in namespace:rdar9065507
/external/v8/src/
H A Dlazy-instance.h168 template <typename Function, typename Storage>
169 static void Init(OnceType* once, Function function, Storage storage) {
177 template <typename Function, typename Storage>
178 static void Init(OnceType* once, Function function, Storage storage) {
/external/llvm/utils/yaml2obj/
H A Dyaml2obj.cpp43 SmallString<4> Storage; local
44 StringRef Value = SN->getValue(Storage);
137 SmallString<32> Storage; local
138 StringRef KeyValue = Key->getValue(Storage);
153 StringRef ValueValue = Value->getValue(Storage);
262 SmallString<32> Storage; local
263 StringRef Char = CharValue->getValue(Storage);
326 SmallString<32> Storage; local
327 StringRef KeyValue = Key->getValue(Storage);
333 StringRef Name = Value->getValue(Storage);
493 SmallString<32> Storage; local
530 SmallString<32> Storage; local
681 SmallString<32> Storage; local
[all...]

Completed in 330 milliseconds

123