Home
last modified time | relevance | path

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

12345

/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.h223 return BaseConverter<T>::get(NodeKind, Storage.buffer);
231 return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
287 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
289 return cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
292 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
294 return *cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
300 new (Result.Storage.buffer) const BaseT * (&Node);
307 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
309 return *reinterpret_cast<T *const *>(Storage);
312 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
[all …]
DDependentDiagnostic.h98 PartialDiagnostic::Storage *Storage) in DependentDiagnostic() argument
99 : Diag(PDiag, Storage) {} in DependentDiagnostic()
/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/llvm/include/llvm/IR/
DDebugInfoMetadata.h149 DebugNode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
151 : MDNode(C, ID, Storage, Ops1, Ops2) { in MDNode() argument
248 GenericDebugNode(LLVMContext &C, StorageType Storage, unsigned Hash,
251 : DebugNode(C, GenericDebugNodeKind, Storage, Tag, Ops1, Ops2) {
262 StorageType Storage,
265 DwarfOps, Storage, ShouldCreate);
271 StorageType Storage,
326 MDSubrange(LLVMContext &C, StorageType Storage, int64_t Count,
328 : DebugNode(C, MDSubrangeKind, Storage, dwarf::DW_TAG_subrange_type,
334 int64_t LowerBound, StorageType Storage,
[all …]
/external/llvm/lib/IR/
DDebugInfoMetadata.cpp22 MDLocation::MDLocation(LLVMContext &C, StorageType Storage, unsigned Line, in MDLocation() argument
24 : MDNode(C, MDLocationKind, Storage, MDs) { in MDLocation()
43 Metadata *InlinedAt, StorageType Storage, in getImpl() argument
49 if (Storage == Uniqued) { in getImpl()
65 MDLocation(Context, Storage, Line, Column, Ops), in getImpl()
66 Storage, Context.pImpl->MDLocations); in getImpl()
174 StorageType Storage, in getImpl() argument
177 if (Storage == Uniqued) { in getImpl()
192 Context, Storage, Hash, Tag, PreOps, DwarfOps), in getImpl()
193 Storage, Context.pImpl->GenericDebugNodes); in getImpl()
[all …]
DUser.cpp57 void *Storage = ::operator new(s + sizeof(Use) * Us); in operator new() local
58 Use *Start = static_cast<Use*>(Storage); in operator new()
73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; in operator delete() local
76 ::operator delete(Storage); in operator delete()
DConstantsContext.h347 SmallVectorImpl<Constant *> &Storage) {
348 assert(Storage.empty() && "Expected empty storage");
350 Storage.push_back(C->getOperand(I));
351 Operands = Storage;
436 SmallVectorImpl<Constant *> &Storage)
441 assert(Storage.empty() && "Expected empty storage");
443 Storage.push_back(CE->getOperand(I));
444 Ops = Storage;
528 SmallVector<Constant *, 8> Storage;
529 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
DMetadataImpl.h30 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument
31 switch (Storage) { in storeImpl()
/external/clang/include/clang/Basic/
DPartialDiagnostic.h38 struct Storage { struct
39 Storage() : NumDiagArgs(0) { } in Storage() argument
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/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/llvm/tools/llvm-diff/
DDifferenceEngine.cpp40 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon6bb4de1d0111::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/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.h88 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable
91 KnownHeader() : Storage(nullptr, NormalHeader) { } in KnownHeader()
92 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader()
95 Module *getModule() const { return Storage.getPointer(); } in getModule()
98 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole()
108 return Storage.getPointer() != nullptr;
/external/llvm/lib/Support/
DYAMLParser.cpp1635 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue()
1643 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue()
1651 Storage.clear(); in getValue()
1652 Storage.reserve(UnquotedValue.size()); in getValue()
1655 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue()
1656 Storage.push_back('\''); in getValue()
1659 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue()
1660 return StringRef(Storage.begin(), Storage.size()); in getValue()
1670 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted()
1673 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/deqp/modules/glshared/
DglsDrawTest.hpp116 enum Storage enum
180 static std::string storageToString (Storage storage);
189 …static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage sto…
194 Storage storage;
225 Storage indexStorage; //!< used only if drawMethod = DrawElements*
DglsVertexArrayTests.hpp124 enum Storage enum in deqp::gls::Array
146 static std::string storageToString (Storage storage);
161 virtual Storage getStorageType (void) const = 0;
171 ContextArray (Storage storage, sglr::Context& context);
184 virtual Array::Storage getStorageType (void) const { return m_storage; } in getStorageType()
198 Storage m_storage;
222 virtual void newArray (Array::Storage storage);
418 …ArraySpec (Array::InputType inputType, Array::OutputType outputType, Array::Storage storage, Array…
422 Array::Storage storage;
/external/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/llvm/lib/Support/Windows/
DTimeValue.inc46 struct tm Storage;
48 int Error = ::_localtime64_s(&Storage, &OurTime);
51 LT = &Storage;
/external/deqp/framework/opengl/
DgluVarType.hpp170 enum Storage enum
182 const char* getStorageName (Storage storage);
258 …VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE…
265 Storage storage;
276 Storage storage;
/external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
DREADME.chromium1 Name: Google Cloud Storage Client Library
6 The Google Cloud Storage client library is a client-side library that is not
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
Dfill_n.pass.cpp122 struct Storage struct
133 Storage foo[5]; in test6() argument
134 std::fill_n(&foo[0], UDI(5), Storage()); in test6()
/external/libcxx/test/std/utilities/memory/storage.iterator/
Draw_storag_iterator.pass.cpp33 Storage; in main() typedef
34 Storage buffer; in main()

12345