/external/clang/include/clang/AST/ |
UsuallyTinyPtrVector.h | 26 /// \brief Storage for the vector. 30 mutable uintptr_t Storage; 35 UsuallyTinyPtrVector() : Storage(0) { } 37 : Storage(reinterpret_cast<uintptr_t>(Element)) { } 39 bool empty() const { return !Storage; } 53 if ((Storage & 0x01) == 0) 54 return reinterpret_cast<iterator>(&Storage); 56 vector_type *Vec = reinterpret_cast<vector_type *>(Storage & ~0x01); 63 if ((Storage & 0x01) == 0) { 64 if (Storage == 0 [all...] |
TemplateName.h | 183 StorageType Storage; 186 Storage = StorageType::getFromOpaqueValue(Ptr); 211 TemplateName() : Storage() { } 212 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { } 213 explicit TemplateName(OverloadedTemplateStorage *Storage) 214 : Storage(Storage) { } 215 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage); 216 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage) 217 : Storage(Storage) { [all...] |
DependentDiagnostic.h | 98 PartialDiagnostic::Storage *Storage) 99 : Diag(PDiag, Storage) {}
|
/external/chromium/chrome/browser/extensions/ |
extension_storage_apitest.cc | 7 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Storage) { 8 ASSERT_TRUE(RunExtensionTest("storage")) << message_;
|
/external/webkit/Source/WebCore/storage/ |
Storage.cpp | 27 #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) 53 Storage::~Storage() 57 unsigned Storage::length() const 65 String Storage::key(unsigned index) cons [all...] |
Storage.h | 41 class Storage : public RefCounted<Storage> { 43 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>); 44 ~Storage(); 59 Storage(Frame*, PassRefPtr<StorageArea>);
|
StorageEvent.h | 36 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;
|
StorageEvent.idl | 26 module storage { 35 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);
|
StorageEvent.cpp | 31 #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)
|
Storage.idl | 26 module storage { 34 ] Storage {
|
StorageEventDispatcher.cpp | 63 Storage* storage = frames[i]->domWindow()->sessionStorage(ec); local 65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage)); 80 Storage* storage = frames[i]->domWindow()->localStorage(ec); local 82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
|
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMStorageResource.h | 45 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;
|
InspectorDOMStorageAgent.h | 43 class Storage; 67 int storageId(Storage*);
|
InspectorDOMStorageAgent.cpp | 43 #include "Storage.h" 87 Storage* domStorage = storageResource->domStorage(); 118 int InspectorDOMStorageAgent::storageId(Storage* storage) 120 ASSERT(storage); 121 Frame* frame = storage->frame(); 123 bool isLocalStorage = (frame->domWindow()->localStorage(ec) == storage && !ec); 148 RefPtr<Storage> domStorage = Storage::create(frame, storageArea);
|
InjectedScriptHost.h | 56 class Storage; 108 int storageIdImpl(Storage*);
|
InspectorDOMStorageResource.cpp | 42 #include "Storage.h" 51 InspectorDOMStorageResource::InspectorDOMStorageResource(Storage* domStorage, bool isLocalStorage, Frame* frame) 107 Storage* storage = storageEvent->storageArea(); local 109 bool isLocalStorage = (storage->frame()->domWindow()->localStorage(ec) == storage && !ec); 110 if (isSameHostAndType(storage->frame(), isLocalStorage))
|
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/ |
LVPSA_QPD_Init.c | 39 pQPD_State->pDelay = pTaps->Storage;
|
LVPSA_QPD.h | 43 LVM_INT32 Storage[1];
|
/external/llvm/lib/VMCore/ |
User.cpp | 57 void *Storage = ::operator new(s + sizeof(Use) * Us); 58 Use *Start = static_cast<Use*>(Storage); 73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; 76 ::operator delete(Storage);
|
/frameworks/base/media/libeffects/lvm/lib/Common/lib/ |
LVM_Timer.h | 47 LVM_INT32 Storage[6];
|
/external/clang/include/clang/Basic/ |
PartialDiagnostic.h | 28 struct Storage { 29 Storage() : NumDiagArgs(0), NumDiagRanges(0), NumFixItHints(0) { } 75 /// \brief An allocator for Storage objects, which uses a small cache to 79 Storage Cached[NumCached]; 80 Storage *FreeList[NumCached]; 87 /// \brief Allocate new storage. 88 Storage *Allocate() { 90 return new Storage; 92 Storage *Result = FreeList[--NumFreeListEntries]; 99 /// \brief Free the given storage object [all...] |
/external/clang/lib/AST/ |
TemplateName.cpp | 55 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/ |
DifferenceEngine.cpp | 42 llvm::SmallVector<T, InlineCapacity> Storage; 48 bool empty() const { return Storage.empty(); } 52 unsigned Index = Storage.size(); 53 Storage.push_back(V); 56 T *data = Storage.data(); 69 T tmp = Storage[0]; 71 unsigned NewSize = Storage.size() - 1; 75 Storage[0] = Storage[NewSize]; 77 std::swap(Storage[0], Storage[NewSize]) [all...] |
/external/clang/test/SemaCXX/ |
flexible-array-test.cpp | 65 struct Storage : StorageBase {
|
/frameworks/media/libvideoeditor/vss/common/inc/ |
SSRC.h | 89 LVM_INT32 Storage [ SSRC_INSTANCE_SIZE/4 ];
|