Home
last modified time | relevance | path

Searched refs:Storage (Results 1 – 25 of 266) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/core/storage/
DStorage.cpp36 PassRefPtrWillBeRawPtr<Storage> Storage::create(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageAr… in create()
38 return adoptRefWillBeNoop(new Storage(frame, storageArea)); in create()
41 Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea) in Storage() function in blink::Storage
49 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Storage);
51 String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState) in anonymousIndexedGetter()
56 String Storage::anonymousNamedGetter(const AtomicString& name, ExceptionState& exceptionState) in anonymousNamedGetter()
67 bool Storage::anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionSt… in anonymousNamedSetter()
73 bool Storage::anonymousIndexedSetter(unsigned index, const AtomicString& value, ExceptionState& exc… in anonymousIndexedSetter()
78 DeleteResult Storage::anonymousNamedDeleter(const AtomicString& name, ExceptionState& exceptionStat… in anonymousNamedDeleter()
91 DeleteResult Storage::anonymousIndexedDeleter(unsigned index, ExceptionState& exceptionState) in anonymousIndexedDeleter()
[all …]
DStorageEvent.h35 class Storage; variable
44 RefPtrWillBeMember<Storage> storageArea;
51 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
59 Storage* storageArea() const { return m_storageArea.get(); } in storageArea()
61 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
72 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
79 RefPtrWillBeMember<Storage> m_storageArea;
DStorage.h43 class Storage FINAL : public RefCountedWillBeGarbageCollected<Storage>, public ScriptWrappable, pub…
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>);
DStorageEvent.cpp50 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in create()
60 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in StorageEvent()
80 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in initStorageEvent()
/external/clang/include/clang/AST/
DTemplateName.h181 StorageType Storage; variable
184 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
209 TemplateName() : Storage() { } in TemplateName()
210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { } in TemplateName()
211 explicit TemplateName(OverloadedTemplateStorage *Storage) in TemplateName() argument
212 : Storage(Storage) { } in TemplateName()
213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage) in TemplateName() argument
215 : Storage(Storage) { } in TemplateName()
216 explicit TemplateName(QualifiedTemplateName *Qual) : Storage(Qual) { } in TemplateName()
[all …]
DASTTypeTraits.h184 return BaseConverter<T>::get(NodeKind, Storage.buffer); in get()
237 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in get()
239 return dyn_cast<T>(*reinterpret_cast<BaseT *const *>(Storage)); in get()
245 new (Result.Storage.buffer) const BaseT * (&Node); in create()
252 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in get()
254 return *reinterpret_cast<T *const *>(Storage); in get()
260 new (Result.Storage.buffer) const T * (&Node); in create()
267 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in get()
269 return reinterpret_cast<const T *>(Storage); in get()
275 new (Result.Storage.buffer) T(Node); in create()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DExplodedGraph.cpp230 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in replaceNode() local
231 assert(Storage.is<ExplodedNode *>()); in replaceNode()
232 Storage = node; in replaceNode()
233 assert(Storage.is<ExplodedNode *>()); in replaceNode()
239 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in addNode() local
240 if (Storage.isNull()) { in addNode()
241 Storage = N; in addNode()
242 assert(Storage.is<ExplodedNode *>()); in addNode()
246 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>(); in addNode()
250 ExplodedNode *Old = Storage.get<ExplodedNode *>(); in addNode()
[all …]
/external/chromium_org/third_party/libaddressinput/chromium/
Dstorage_test_runner.cc16 using ::i18n::addressinput::Storage;
18 StorageTestRunner::StorageTestRunner(Storage* storage) in StorageTestRunner()
38 scoped_ptr<Storage::Callback> StorageTestRunner::BuildCallback() { in BuildCallback()
39 return scoped_ptr<Storage::Callback>(::i18n::addressinput::BuildCallback( in BuildCallback()
57 scoped_ptr<Storage::Callback> callback(BuildCallback()); in GetWithoutPutReturnsEmptyData()
68 scoped_ptr<Storage::Callback> callback(BuildCallback()); in GetReturnsWhatWasPut()
80 scoped_ptr<Storage::Callback> callback(BuildCallback()); in SecondPutOverwritesData()
Dstorage_test_runner.h21 explicit StorageTestRunner(::i18n::addressinput::Storage* storage);
29 scoped_ptr< ::i18n::addressinput::Storage::Callback> BuildCallback();
37 ::i18n::addressinput::Storage* storage_; // weak
/external/deqp/framework/randomshaders/
DrsgVariable.hpp40 enum Storage enum in rsg::Variable
54 Variable (const VariableType& type, Storage storage, const char* name);
58 Storage getStorage (void) const { return m_storage; } in getStorage()
63 void setStorage (Storage storage) { m_storage = storage; } in setStorage()
72 Storage m_storage;
DrsgVariableManager.hpp66 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name…
208 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* nam…
210 void setStorage (Variable* variable, Variable::Storage storage);
319 template <Variable::Storage Storage>
323 typedef ValueEntryIterator<EntryStorageFilter<Storage> > Iterator;
327 return entry->getVariable()->getStorage() == Storage; in operator ()()
/external/clang/include/clang/Basic/
DPartialDiagnostic.h38 struct Storage { struct
39 Storage() : NumDiagArgs(0) { } in Storage() function
80 Storage Cached[NumCached];
81 Storage *FreeList[NumCached];
89 Storage *Allocate() { in Allocate()
91 return new Storage; in Allocate()
93 Storage *Result = FreeList[--NumFreeListEntries]; in Allocate()
101 void Deallocate(Storage *S) { in Deallocate()
120 mutable Storage *DiagStorage;
126 Storage *getStorage() const { in getStorage()
[all …]
/external/clang/include/clang/Lex/
DModuleLoader.h34 llvm::PointerIntPair<Module *, 1, bool> Storage; variable
37 ModuleLoadResult() : Storage() { } in ModuleLoadResult()
40 : Storage(module, missingExpected) { } in ModuleLoadResult()
42 operator Module *() const { return Storage.getPointer(); }
48 bool isMissingExpected() const { return Storage.getInt(); } in isMissingExpected()
DModuleMap.h86 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable
89 KnownHeader() : Storage(nullptr, NormalHeader) { } in KnownHeader()
90 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader()
93 Module *getModule() const { return Storage.getPointer(); } in getModule()
96 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole()
106 return Storage.getPointer() != nullptr;
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp40 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon61d229b40111::PriorityQueue
46 bool empty() const { return Storage.empty(); } in empty()
50 unsigned Index = Storage.size(); in insert()
51 Storage.push_back(V); in insert()
54 T *data = Storage.data(); in insert()
67 T tmp = Storage[0]; in remove_min()
69 unsigned NewSize = Storage.size() - 1; in remove_min()
73 Storage[0] = Storage[NewSize]; in remove_min()
75 std::swap(Storage[0], Storage[NewSize]); in remove_min()
90 if (Precedes(Storage[L], Storage[Index])) in remove_min()
[all …]
/external/llvm/lib/IR/
DUser.cpp60 void *Storage = ::operator new(s + sizeof(Use) * Us); in operator new() local
61 Use *Start = static_cast<Use*>(Storage); in operator new()
76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; in operator delete() local
79 ::operator delete(Storage); in operator delete()
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
Dvalidating_storage.cc41 const Storage& wrapped_storage) in Helper()
70 const Storage::Callback& data_ready_;
71 const scoped_ptr<const Storage::Callback> wrapped_data_ready_;
78 ValidatingStorage::ValidatingStorage(Storage* storage) in ValidatingStorage()
Dvalidating_storage.h38 class ValidatingStorage : public Storage {
41 explicit ValidatingStorage(Storage* storage);
56 scoped_ptr<Storage> wrapped_storage_;
/external/llvm/lib/Support/
DYAMLParser.cpp1640 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue()
1648 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue()
1656 Storage.clear(); in getValue()
1657 Storage.reserve(UnquotedValue.size()); in getValue()
1660 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue()
1661 Storage.push_back('\''); in getValue()
1664 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue()
1665 return StringRef(Storage.begin(), Storage.size()); in getValue()
1675 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted()
1678 Storage.clear(); in unescapeDoubleQuoted()
[all …]
/external/clang/lib/AST/
DTemplateName.cpp55 if (Storage.is<TemplateDecl *>()) in getKind()
57 if (Storage.is<DependentTemplateName *>()) in getKind()
59 if (Storage.is<QualifiedTemplateName *>()) in getKind()
63 = Storage.get<UncommonTemplateNameStorage*>(); in getKind()
72 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in getAsTemplateDecl()
130 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in print()
/external/chromium_org/chrome/browser/autofill/
Dvalidation_rules_storage_factory.cc18 using ::i18n::addressinput::Storage;
21 scoped_ptr<Storage> ValidationRulesStorageFactory::CreateStorage() { in CreateStorage()
24 return scoped_ptr<Storage>( in CreateStorage()
/external/chromium_org/third_party/google_appengine_cloudstorage/
DREADME.chromium1 Name: Google AppEngine Cloud Storage Python client
11 Python libraries to access Google Cloud Storage buckets from Google AppEngine
13 hosted in Google Cloud Storage.
/external/deqp/modules/glshared/
DglsDrawTest.hpp115 enum Storage enum
179 static std::string storageToString (Storage storage);
188 …static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage sto…
193 Storage storage;
224 Storage indexStorage; //!< used only if drawMethod = DrawElements*
/external/chromium_org/v8/src/base/
Dlazy-instance.h146 template <typename Function, typename Storage>
147 static void Init(OnceType* once, Function function, Storage storage) { in Init()
155 template <typename Function, typename Storage>
156 static void Init(OnceType* once, Function function, Storage storage) { in Init()
/external/chromium_org/third_party/WebKit/Source/wtf/
DStaticConstructors.h35 void* name##Storage[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)]; \
36 const type& name = *reinterpret_cast<type*>(&name##Storage);

1234567891011