Searched defs:Storage (Results 1 - 25 of 46) sorted by relevance

12

/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.
/external/libcxx/test/utilities/memory/storage.iterator/
H A Draw_storag_iterator.pass.cpp33 Storage; typedef
34 Storage buffer;
/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(); }
H A DModuleMap.h77 // Adjust the number of bits for KnownHeader::Storage.
86 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; member in class:clang::ModuleMap::KnownHeader
89 KnownHeader() : Storage(nullptr, NormalHeader) { }
90 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { }
93 Module *getModule() const { return Storage.getPointer(); }
96 ModuleHeaderRole getRole() const { return Storage.getInt(); }
106 return Storage.getPointer() != nullptr;
/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...]
/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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DBreakpointManager.js42 this._storage = new WebInspector.BreakpointManager.Storage(this, breakpointStorage);
982 WebInspector.BreakpointManager.Storage = function(breakpointManager, setting)
987 /** @type {!Object.<string, !WebInspector.BreakpointManager.Storage.Item>} */
990 var breakpoint = /** @type {!WebInspector.BreakpointManager.Storage.Item} */ (breakpoints[i]);
996 WebInspector.BreakpointManager.Storage.prototype = {
1009 * @return {!Array.<!WebInspector.BreakpointManager.Storage.Item>}
1030 this._breakpoints[breakpoint._breakpointStorageId()] = new WebInspector.BreakpointManager.Storage.Item(breakpoint);
1058 WebInspector.BreakpointManager.Storage.Item = function(breakpoint)
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dfile_storage.py8 Storage -> N Archives -> 1 Symbol index
26 class Storage(object): class in inherits:object
40 file_path = os.path.join(self._root, Storage._SETTINGS_FILE % name)
49 file_path = os.path.join(self._root, Storage._SETTINGS_FILE % name)
/external/clang/test/SemaCXX/
H A Dflexible-array-test.cpp71 struct Storage : StorageBase { struct in namespace:rdar9065507
/external/libcxx/test/algorithms/alg.modifying.operations/alg.fill/
H A Dfill_n.pass.cpp119 struct Storage struct
130 Storage foo[5];
131 std::fill_n(&foo[0], 5, Storage());
/external/llvm/include/llvm/Analysis/
H A DLoopIterator.h132 LoopBlocksTraversal(LoopBlocksDFS &Storage, LoopInfo *LInfo) : argument
133 DFS(Storage), LI(LInfo) {}
/external/llvm/utils/yaml-bench/
H A DYAMLBench.cpp91 SmallString<32> Storage; local
92 StringRef Val = sn->getValue(Storage);
/external/clang/include/clang/AST/
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...]
H A DDependentDiagnostic.h98 PartialDiagnostic::Storage *Storage)
99 : Diag(PDiag, Storage) {}
97 DependentDiagnostic(const PartialDiagnostic &PDiag, PartialDiagnostic::Storage *Storage) argument
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/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...]
/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/clang/tools/driver/
H A Ddriver.cpp287 StringSetSaver(std::set<std::string> &Storage) : Storage(Storage) {} argument
289 return SaveStringInSet(Storage, Str);
292 std::set<std::string> &Storage; member in class:__anon19497::StringSetSaver
/external/llvm/include/llvm/Support/
H A DErrorOr.h43 T *Storage; member in class:llvm::ReferenceStorage
46 ReferenceStorage(T &Ref) : Storage(&Ref) {}
48 operator T &() const { return *Storage; }
49 T &get() const { return *Storage; }
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp345 std::string Storage; local
346 raw_string_ostream OS(Storage);
/external/chromium_org/remoting/webapp/js_proto/
H A Dchrome_proto.js152 /** @type {chrome.Storage} */
155 /** @type {chrome.Storage} */
159 chrome.Storage = function() {};
166 chrome.Storage.prototype.get = function(items, callback) {};
173 chrome.Storage.prototype.set = function(items, opt_callback) {};
180 chrome.Storage.prototype.remove = function(items, opt_callback) {};
186 chrome.Storage.prototype.clear = function(opt_callback) {};
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp40 llvm::SmallVector<T, InlineCapacity> Storage; member in class:__anon26399::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/eigen/Eigen/src/SparseCore/
H A DSparseVector.h75 typedef internal::CompressedStorage<Scalar,Index> Storage; typedef in class:Eigen::SparseVector
94 inline Storage& data() { return m_data; }
96 inline const Storage& data() const { return m_data; }
327 EIGEN_DEPRECATED Storage& _data() { return m_data; }
329 EIGEN_DEPRECATED const Storage& _data() const { return m_data; }
343 Storage m_data;
/external/llvm/include/llvm/ADT/
H A DSmallVector.h825 /// Storage for the SmallVector elements which aren't contained in
846 /// Storage - Inline space for elements which aren't stored in the base class.
847 SmallVectorStorage<T, N> Storage; member in class:llvm::SmallVector

Completed in 7253 milliseconds

12