HomeSort by relevance Sort by last modified time
    Searched defs:Storage (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
storage.h 31 // class MyStorage : public Storage {
45 class Storage {
50 virtual ~Storage() {}
53 // which Storage takes ownership of.
  /external/libcxx/test/utilities/memory/storage.iterator/
raw_storag_iterator.pass.cpp 33 Storage;
34 Storage buffer;
  /external/clang/include/clang/Lex/
ModuleLoader.h 34 llvm::PointerIntPair<Module *, 1, bool> Storage;
37 ModuleLoadResult() : Storage() { }
40 : Storage(module, missingExpected) { }
42 operator Module *() const { return Storage.getPointer(); }
48 bool isMissingExpected() const { return Storage.getInt(); }
ModuleMap.h 77 // Adjust the number of bits for KnownHeader::Storage.
86 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
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/llvm/lib/IR/
User.cpp 60 void *Storage = ::operator new(s + sizeof(Use) * Us);
61 Use *Start = static_cast<Use*>(Storage);
76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
79 ::operator delete(Storage);
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.cpp 27 #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)
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
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariable.hpp 40 enum Storage
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/libcxx/test/algorithms/alg.modifying.operations/alg.fill/
fill_n.pass.cpp 119 struct Storage
130 Storage foo[5];
131 std::fill_n(&foo[0], 5, Storage());
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 91 SmallString<32> Storage;
92 StringRef Val = sn->getValue(Storage);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
BreakpointManager.js 42 this._storage = new WebInspector.BreakpointManager.Storage(this, breakpointStorage);
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage.py 5 """This module handles file-backed storage of the core classes.
7 The storage is logically organized as follows:
8 Storage -> N Archives -> 1 Symbol index
26 class Storage(object):
31 """Creates a file-backed storage. Files will be placed in |root_path|."""
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/
flexible-array-test.cpp 71 struct Storage : StorageBase {
  /external/llvm/include/llvm/Support/
ErrorOr.h 43 T *Storage;
46 ReferenceStorage(T &Ref) : Storage(&Ref) {}
48 operator T &() const { return *Storage; }
49 T &get() const { return *Storage; }
  /external/clang/include/clang/AST/
ASTTypeTraits.h 11 // that can be used to store an AST base node at runtime in the same storage in
180 /// the storage inside DynTypedNode. For those nodes, do not
184 return BaseConverter<T>::get(NodeKind, Storage.buffer);
237 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
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[]) {
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[]) {
    [all...]
TemplateName.h 181 StorageType Storage;
184 Storage = StorageType::getFromOpaqueValue(Ptr);
209 TemplateName() : Storage() { }
210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { }
211 explicit TemplateName(OverloadedTemplateStorage *Storage)
212 : Storage(Storage) { }
213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage)
215 : Storage(Storage) {
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 34 // here so that the nested Storage class below can access them.
38 struct Storage {
39 Storage() : NumDiagArgs(0) { }
76 /// \brief An allocator for Storage objects, which uses a small cache to
80 Storage Cached[NumCached];
81 Storage *FreeList[NumCached];
88 /// \brief Allocate new storage.
89 Storage *Allocate() {
91 return new Storage;
93 Storage *Result = FreeList[--NumFreeListEntries]
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 205 // An NodeGroup's storage type is actually very much like a TinyPtrVector:
212 // 2. The group is empty, in which case the storage value is null.
230 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P);
231 assert(Storage.is<ExplodedNode *>());
232 Storage = node;
233 assert(Storage.is<ExplodedNode *>());
239 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P);
240 if (Storage.isNull()) {
241 Storage = N;
242 assert(Storage.is<ExplodedNode *>())
    [all...]
  /external/clang/tools/driver/
driver.cpp 287 StringSetSaver(std::set<std::string> &Storage) : Storage(Storage) {}
289 return SaveStringInSet(Storage, Str);
292 std::set<std::string> &Storage;
  /external/llvm/unittests/ADT/
StringRefTest.cpp 345 std::string Storage;
346 raw_string_ostream OS(Storage);
  /external/chromium_org/remoting/webapp/js_proto/
chrome_proto.js 150 chrome.storage = {};
152 /** @type {chrome.Storage} */
153 chrome.storage.local;
155 /** @type {chrome.Storage} */
156 chrome.storage.sync;
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) {}
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 22 * See http://www.netlib.org/linalg/html_templates/node91.html for details on the storage scheme.
75 typedef internal::CompressedStorage<Scalar,Index> Storage;
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/tools/bugpoint/
ToolRunner.cpp 259 SmallString<128> Storage = Result;
260 sys::path::append(Storage, ExeName);
261 sys::path::replace_extension(Storage, EXESuffix);
262 return Storage.str();
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 40 llvm::SmallVector<T, InlineCapacity> Storage;
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[0], Storage[NewSize])
    [all...]
  /external/deqp/framework/opengl/
gluVarType.hpp 41 * Variable type represents data type. No storage qualifiers are supported
170 enum Storage
180 const char* getStorageName (Storage storage);
256 VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE_LAST, Interpolation interpolation_ = INTERPOLATION_LAST, const Layout& layout_ = Layout(), deUint32 memoryAccessQualifierBits_ = 0);
263 Storage storage; member in struct:glu::VariableDeclaration
274 Storage storage; member in struct:glu::InterfaceBlock
  /external/llvm/include/llvm/ADT/
SmallVector.h 825 /// Storage for the SmallVector elements which aren't contained in
828 /// to avoid allocating unnecessary storage.
846 /// Storage - Inline space for elements which aren't stored in the base class.
847 SmallVectorStorage<T, N> Storage;

Completed in 2745 milliseconds

1 2