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

123456789

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStaticConstructors.h35 void* name##Storage[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)]; \
36 const type& name = *reinterpret_cast<type*>(&name##Storage);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_storage_apitest.cc11 #define MAYBE_Storage Storage
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorage.cpp27 #include "core/storage/Storage.h"
36 PassRefPtrWillBeRawPtr<Storage> Storage::create(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea)
38 return adoptRefWillBeNoop(new Storage(frame, storageArea));
41 Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea) function in class:blink::Storage
49 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Storage);
51 String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState)
56 String Storage::anonymousNamedGetter(const AtomicString& name, ExceptionState& exceptionState)
67 bool Storage
[all...]
H A DStorageEvent.h35 class Storage;
44 RefPtrWillBeMember<Storage> storageArea;
51 static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
59 Storage* storageArea() const { return m_storageArea.get(); }
61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
64 // 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);
72 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
79 RefPtrWillBeMember<Storage> m_storageArea;
H A DStorage.h43 class Storage FINAL : public RefCountedWillBeGarbageCollected<Storage>, public ScriptWrappable, public DOMWindowProperty {
45 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Storage);
46 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(Storage);
48 static PassRefPtrWillBeRawPtr<Storage> create(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>);
72 Storage(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>);
H A DStorageEvent.idl33 [InitializedByEventConstructor] readonly attribute Storage? storageArea;
42 [Default=Undefined] optional Storage storageAreaArg);
45 // void initStorageEventNS(DOMString namespaceURI, DOMString typeArg, boolean canBubbleArg, boolean cancelableArg, DOMString keyArg, DOMString oldValueArg, DOMString newValueArg, DOMString urlArg, Storage storageAreaArg);
/external/deqp/framework/randomshaders/
H A DrsgVariable.hpp40 enum Storage enum in class:rsg::Variable
54 Variable (const VariableType& type, Storage storage, const char* name);
58 Storage getStorage (void) const { return m_storage; }
63 void setStorage (Storage storage) { m_storage = storage; }
72 Storage m_storage;
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dstorage_test_runner.h17 // A test sutie for ::i18n::addressinput::Storage.
21 explicit StorageTestRunner(::i18n::addressinput::Storage* storage);
29 scoped_ptr< ::i18n::addressinput::Storage::Callback> BuildCallback();
37 ::i18n::addressinput::Storage* storage_; // weak
H A Dstorage_test_runner.cc16 using ::i18n::addressinput::Storage;
18 StorageTestRunner::StorageTestRunner(Storage* storage)
38 scoped_ptr<Storage::Callback> StorageTestRunner::BuildCallback() {
39 return scoped_ptr<Storage::Callback>(::i18n::addressinput::BuildCallback(
57 scoped_ptr<Storage::Callback> callback(BuildCallback());
68 scoped_ptr<Storage::Callback> callback(BuildCallback());
80 scoped_ptr<Storage::Callback> callback(BuildCallback());
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dvalidating_storage.h15 // A wrapper object for Storage that stores data with a checksum and a
31 // Wraps Storage to add checksum and timestamp to stored data. Sample usage:
32 // scoped_ptr<Storage> file_storage = ...;
38 class ValidatingStorage : public Storage {
41 explicit ValidatingStorage(Storage* storage);
44 // Storage implementation.
47 // Storage implementation.
56 scoped_ptr<Storage> wrapped_storage_;
H A Dretriever.h30 class Storage;
35 // Storage* storage = ...;
46 Retriever(const Source* source, Storage* storage);
H A Dvalidating_storage.cc41 const Storage& wrapped_storage)
70 const Storage::Callback& data_ready_;
71 const scoped_ptr<const Storage::Callback> wrapped_data_ready_;
78 ValidatingStorage::ValidatingStorage(Storage* storage)
/external/chromium_org/chrome/browser/autofill/
H A Dvalidation_rules_storage_factory.h15 class Storage;
24 // Creates Storage objects, all of which are backed by a common pref store.
27 static scoped_ptr< ::i18n::addressinput::Storage> CreateStorage();
H A Dvalidation_rules_storage_factory.cc18 using ::i18n::addressinput::Storage;
21 scoped_ptr<Storage> ValidationRulesStorageFactory::CreateStorage() {
24 return scoped_ptr<Storage>(
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Dstorage.h31 // class MyStorage : public Storage {
45 class Storage { class in namespace:i18n::addressinput
50 virtual ~Storage() {}
53 // which Storage takes ownership of.
H A Dondemand_supplier.h33 class Storage;
50 OndemandSupplier(const Source* source, Storage* storage);
H A Dnull_storage.h17 // the Storage interface therefore doesn't actually store anything.
30 class NullStorage : public Storage {
/external/clang/include/clang/Lex/
H A DModuleLoader.h34 llvm::PointerIntPair<Module *, 1, bool> Storage; member in class:clang::ModuleLoadResult
37 ModuleLoadResult() : Storage() { }
40 : Storage(module, missingExpected) { }
42 operator Module *() const { return Storage.getPointer(); }
48 bool isMissingExpected() const { return Storage.getInt(); }
/external/clang/include/clang/AST/
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...]
H A DASTTypeTraits.h184 return BaseConverter<T>::get(NodeKind, Storage.buffer);
237 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { argument
239 return dyn_cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
245 new (Result.Storage.buffer) const BaseT * (&Node);
252 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { argument
254 return *reinterpret_cast<T *const *>(Storage);
260 new (Result.Storage.buffer) const T * (&Node);
267 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { argument
269 return reinterpret_cast<const T *>(Storage);
275 new (Result.Storage
295 Storage; member in class:clang::ast_type_traits::DynTypedNode
343 get(ASTNodeKind NodeKind, const char Storage[]) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp230 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); local
231 assert(Storage.is<ExplodedNode *>());
232 Storage = node;
233 assert(Storage.is<ExplodedNode *>());
239 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); local
240 if (Storage.isNull()) {
241 Storage = N;
242 assert(Storage.is<ExplodedNode *>());
246 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>();
250 ExplodedNode *Old = Storage
269 const GroupStorage &Storage = reinterpret_cast<const GroupStorage &>(P); local
281 const GroupStorage &Storage = reinterpret_cast<const GroupStorage &>(P); local
293 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/llvm/lib/Support/Unix/
H A DTimeValue.inc26 struct tm Storage;
27 struct tm *LT = ::localtime_r(&OurTime, &Storage);
/external/libcxx/test/utilities/memory/storage.iterator/
H A Draw_storag_iterator.pass.cpp33 Storage; typedef
34 Storage buffer;
/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) { } function in struct:clang::PartialDiagnostic::Storage
76 /// \brief An allocator for Storage objects, which uses a small cache to
80 Storage Cached[NumCached];
81 Storage *FreeList[NumCached];
89 Storage *Allocate() {
91 return new Storage;
93 Storage *Result = FreeList[--NumFreeListEntries];
101 void Deallocate(Storage *
[all...]

Completed in 555 milliseconds

123456789