storage          1526 Source/core/frame/DOMWindow.cpp         else if (eventType == EventTypeNames::storage)
storage            46 Source/core/frame/DOMWindowEventHandlers.h DEFINE_STATIC_WINDOW_ATTRIBUTE_EVENT_LISTENER(storage);
storage           146 Source/core/html/HTMLBodyElement.cpp         document().setWindowAttributeEventListener(EventTypeNames::storage, createAttributeEventListener(document().frame(), name, value));
storage           141 Source/core/html/HTMLFrameSetElement.cpp         document().setWindowAttributeEventListener(EventTypeNames::storage, createAttributeEventListener(document().frame(), name, value));
storage            66 Source/core/html/canvas/Canvas2DContextAttributes.cpp void Canvas2DContextAttributes::setStorage(const String& storage)
storage            68 Source/core/html/canvas/Canvas2DContextAttributes.cpp     if (storage == "persistent")
storage            70 Source/core/html/canvas/Canvas2DContextAttributes.cpp     else if (storage == "discardable")
storage            52 Source/core/html/canvas/Canvas2DContextAttributes.h     String storage() const;
storage           149 Source/core/storage/StorageArea.cpp             Storage* storage = frame->domWindow()->optionalLocalStorage();
storage           150 Source/core/storage/StorageArea.cpp             if (storage && frame->document()->securityOrigin()->canAccess(securityOrigin) && !isEventSource(storage, sourceAreaInstance))
storage           151 Source/core/storage/StorageArea.cpp                 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
storage           177 Source/core/storage/StorageArea.cpp         Storage* storage = frame->domWindow()->optionalSessionStorage();
storage           178 Source/core/storage/StorageArea.cpp         if (storage && frame->document()->securityOrigin()->canAccess(securityOrigin) && !isEventSource(storage, sourceAreaInstance))
storage           179 Source/core/storage/StorageArea.cpp             frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
storage           184 Source/core/storage/StorageArea.cpp bool StorageArea::isEventSource(Storage* storage, blink::WebStorageArea* sourceAreaInstance)
storage           186 Source/core/storage/StorageArea.cpp     ASSERT(storage);
storage           187 Source/core/storage/StorageArea.cpp     StorageArea* area = storage->area();
storage            78 Source/platform/audio/AudioBus.cpp void AudioBus::setChannelMemory(unsigned channelIndex, float* storage, size_t length)
storage            81 Source/platform/audio/AudioBus.cpp         channel(channelIndex)->set(storage, length);
storage            72 Source/platform/audio/AudioBus.h     void setChannelMemory(unsigned channelIndex, float* storage, size_t length);
storage            46 Source/platform/audio/AudioChannel.h     AudioChannel(float* storage, size_t length)
storage            48 Source/platform/audio/AudioChannel.h         , m_rawPointer(storage)
storage            72 Source/platform/audio/AudioChannel.h     void set(float* storage, size_t length)
storage            75 Source/platform/audio/AudioChannel.h         m_rawPointer = storage;
storage           113 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp     SkAutoSTMalloc<32, SkPoint> storage(numGlyphs);
storage           114 Source/platform/fonts/harfbuzz/FontHarfBuzz.cpp     SkPoint* pos = storage.get();
storage           124 Source/platform/fonts/mac/FontMac.cpp     SkAutoSTMalloc<32, SkPoint> storage(numGlyphs);
storage           125 Source/platform/fonts/mac/FontMac.cpp     SkPoint* pos = storage.get();
storage           858 Source/platform/heap/Handle.h     static void store(const U& value, WebCore::Member<T>& storage) { storage = value; }
storage           885 Source/platform/heap/Handle.h     static void store(const U& value, WebCore::WeakMember<T>& storage) { storage = value; }
storage           242 Source/platform/heap/Heap.cpp         PageMemory* storage = new PageMemory(MemoryRegion(base, allocationSize), MemoryRegion(payloadBase, payloadSize));
storage           243 Source/platform/heap/Heap.cpp         bool res = storage->commit();
storage           245 Source/platform/heap/Heap.cpp         return storage;
storage           602 Source/platform/heap/Heap.cpp     delete object->storage();
storage           633 Source/platform/heap/Heap.cpp         PageMemory* storage = entry->storage();
storage           636 Source/platform/heap/Heap.cpp         if (storage->commit())
storage           637 Source/platform/heap/Heap.cpp             return storage;
storage           640 Source/platform/heap/Heap.cpp         delete storage;
storage           649 Source/platform/heap/Heap.cpp     PageMemory* storage = unused->storage();
storage           650 Source/platform/heap/Heap.cpp     PagePoolEntry* entry = new PagePoolEntry(storage, m_pagePool);
storage           652 Source/platform/heap/Heap.cpp     storage->decommit();
storage           801 Source/platform/heap/Heap.cpp         PageMemory* storage = dead->storage();
storage           803 Source/platform/heap/Heap.cpp         delete storage;
storage           810 Source/platform/heap/Heap.cpp         PageMemory* storage = dead->storage();
storage           812 Source/platform/heap/Heap.cpp         delete storage;
storage           836 Source/platform/heap/Heap.cpp HeapPage<Header>::HeapPage(PageMemory* storage, ThreadHeap<Header>* heap, const GCInfo* gcInfo)
storage           837 Source/platform/heap/Heap.cpp     : BaseHeapPage(storage, gcInfo, heap->threadState())
storage           125 Source/platform/heap/Heap.h     BaseHeapPage(PageMemory* storage, const GCInfo* gcInfo, ThreadState* state)
storage           126 Source/platform/heap/Heap.h         : m_storage(storage)
storage           147 Source/platform/heap/Heap.h     PageMemory* storage() const { return m_storage; }
storage           176 Source/platform/heap/Heap.h     LargeHeapObject(PageMemory* storage, const GCInfo* gcInfo, ThreadState* state) : BaseHeapPage(storage, gcInfo, state)
storage           704 Source/platform/heap/Heap.h         PagePoolEntry(PageMemory* storage, PagePoolEntry* next)
storage           705 Source/platform/heap/Heap.h             : m_storage(storage)
storage           709 Source/platform/heap/Heap.h         PageMemory* storage() { return m_storage; }
storage            95 Source/wtf/HashTraits.h         static void store(const T& value, T& storage) { storage = value; }
storage           148 Source/wtf/HashTraits.h         static void store(PassOwnPtr<P> value, OwnPtr<P>& storage) { storage = value; }
storage           175 Source/wtf/HashTraits.h         static void store(PassRefPtr<P> value, RefPtr<P>& storage) { storage = value; }
storage           206 Source/wtf/HashTraits.h         static void store(const U& value, RawPtr<T>& storage) { storage = value; }
storage           228 public/platform/WebPrivatePtr.h         storage().assign(ptr);
storage           231 public/platform/WebPrivatePtr.h     void reset() { storage().release(); }
storage           235 public/platform/WebPrivatePtr.h         storage().assign(other.storage());
storage           242 public/platform/WebPrivatePtr.h         storage().assign(ptr);
storage           246 public/platform/WebPrivatePtr.h     T* get() const { return storage().get(); }
storage           263 public/platform/WebPrivatePtr.h     PtrStorage<T>& storage() { return PtrStorage<T>::fromSlot(&m_storage); }
storage           264 public/platform/WebPrivatePtr.h     const PtrStorage<T>& storage() const { return PtrStorage<T>::fromSlot(&m_storage); }